diff options
author | Alexandre Oliva <lxoliva@fsfla.org> | 2015-04-28 16:10:23 +0000 |
---|---|---|
committer | Alexandre Oliva <lxoliva@fsfla.org> | 2015-04-28 16:10:23 +0000 |
commit | 743daf8ed83730dd90e7c91d2eeb08e4377f98eb (patch) | |
tree | ee0e1819ef53a0d725e051bf58a5759bf6be67d1 /freed-ora/current/master/Add-option-to-automatically-enforce-module-signature.patch | |
parent | a651757b0bf2249aaff9d0f480955d1bb9b08519 (diff) | |
download | linux-libre-raptor-743daf8ed83730dd90e7c91d2eeb08e4377f98eb.tar.gz linux-libre-raptor-743daf8ed83730dd90e7c91d2eeb08e4377f98eb.zip |
4.0.0-1.fc23.gnu
Diffstat (limited to 'freed-ora/current/master/Add-option-to-automatically-enforce-module-signature.patch')
-rw-r--r-- | freed-ora/current/master/Add-option-to-automatically-enforce-module-signature.patch | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/freed-ora/current/master/Add-option-to-automatically-enforce-module-signature.patch b/freed-ora/current/master/Add-option-to-automatically-enforce-module-signature.patch index 4b3671743..97faf1a7e 100644 --- a/freed-ora/current/master/Add-option-to-automatically-enforce-module-signature.patch +++ b/freed-ora/current/master/Add-option-to-automatically-enforce-module-signature.patch @@ -20,7 +20,7 @@ Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com> 7 files changed, 69 insertions(+), 1 deletion(-) diff --git a/Documentation/x86/zero-page.txt b/Documentation/x86/zero-page.txt -index 199f453cb4de..ec38acf00b40 100644 +index 82fbdbc1e0b0..a811210ad486 100644 --- a/Documentation/x86/zero-page.txt +++ b/Documentation/x86/zero-page.txt @@ -30,6 +30,8 @@ Offset Proto Name Meaning @@ -33,10 +33,10 @@ index 199f453cb4de..ec38acf00b40 100644 290/040 ALL edd_mbr_sig_buffer EDD MBR signatures 2D0/A00 ALL e820_map E820 memory map table diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig -index 0dc9d0144a27..58273956750d 100644 +index b7d31ca55187..ab403a636357 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig -@@ -1660,6 +1660,16 @@ config EFI_MIXED +@@ -1695,6 +1695,16 @@ config EFI_MIXED If unsure, say N. @@ -54,7 +54,7 @@ index 0dc9d0144a27..58273956750d 100644 def_bool y prompt "Enable seccomp to safely compute untrusted bytecode" diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c -index 92b9a5f2aed6..2192da755e34 100644 +index ef17683484e9..105e7360d747 100644 --- a/arch/x86/boot/compressed/eboot.c +++ b/arch/x86/boot/compressed/eboot.c @@ -12,6 +12,7 @@ @@ -63,9 +63,9 @@ index 92b9a5f2aed6..2192da755e34 100644 #include <asm/desc.h> +#include <asm/bootparam_utils.h> - #undef memcpy /* Use memcpy from misc.c */ - -@@ -828,6 +829,37 @@ out: + #include "../string.h" + #include "eboot.h" +@@ -827,6 +828,37 @@ out: return status; } @@ -103,7 +103,7 @@ index 92b9a5f2aed6..2192da755e34 100644 /* * See if we have Graphics Output Protocol */ -@@ -1407,6 +1439,10 @@ struct boot_params *efi_main(struct efi_config *c, +@@ -1406,6 +1438,10 @@ struct boot_params *efi_main(struct efi_config *c, else setup_boot_services32(efi_early); @@ -129,10 +129,10 @@ index 225b0988043a..90dbfb73e11f 100644 * The sentinel is set to a nonzero value (0xff) in header.S. * diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c -index ab4734e5411d..5d52d67d5097 100644 +index 0a2421cca01f..a3d8174dedf9 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c -@@ -1152,6 +1152,12 @@ void __init setup_arch(char **cmdline_p) +@@ -1151,6 +1151,12 @@ void __init setup_arch(char **cmdline_p) io_delay_init(); @@ -146,7 +146,7 @@ index ab4734e5411d..5d52d67d5097 100644 * Parse the ACPI tables for possible boot-time SMP configuration. */ diff --git a/include/linux/module.h b/include/linux/module.h -index d4b96d6c926a..c47f75720dbd 100644 +index b033dab5c8bf..f526b6e02f59 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -188,6 +188,12 @@ const struct exception_table_entry *search_exception_tables(unsigned long add); @@ -163,10 +163,10 @@ index d4b96d6c926a..c47f75720dbd 100644 extern int modules_disabled; /* for sysctl */ diff --git a/kernel/module.c b/kernel/module.c -index 98c3d7955a51..6244f24abe27 100644 +index 0372c3961016..55dacebb687b 100644 --- a/kernel/module.c +++ b/kernel/module.c -@@ -3896,6 +3896,13 @@ void module_layout(struct module *mod, +@@ -3909,6 +3909,13 @@ void module_layout(struct module *mod, EXPORT_SYMBOL(module_layout); #endif |