diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-11-27 16:24:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-11-27 16:24:25 +0000 |
commit | a03b522bd68734098574b8585e4d45a1b470f26d (patch) | |
tree | bd9fb149214d31b4456bd5d5cf9f044494f4c310 /target/linux/generic/patches-3.18 | |
parent | 1f5987c5d3c12695edd1f8dec83534fae10e459f (diff) | |
download | upstream-a03b522bd68734098574b8585e4d45a1b470f26d.tar.gz upstream-a03b522bd68734098574b8585e4d45a1b470f26d.tar.bz2 upstream-a03b522bd68734098574b8585e4d45a1b470f26d.zip |
kernel: add missing KEEP() statements for gc-sections patch in 3.18
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 43405
Diffstat (limited to 'target/linux/generic/patches-3.18')
-rw-r--r-- | target/linux/generic/patches-3.18/220-gc_sections.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.18/220-gc_sections.patch b/target/linux/generic/patches-3.18/220-gc_sections.patch index 105d1e7691..db6dc18e55 100644 --- a/target/linux/generic/patches-3.18/220-gc_sections.patch +++ b/target/linux/generic/patches-3.18/220-gc_sections.patch @@ -77,6 +77,15 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org> VMLINUX_SYMBOL(__stop_branch_profile) = .; #else #define BRANCH_PROFILE() +@@ -114,7 +114,7 @@ + #ifdef CONFIG_KPROBES + #define KPROBE_BLACKLIST() . = ALIGN(8); \ + VMLINUX_SYMBOL(__start_kprobe_blacklist) = .; \ +- *(_kprobe_blacklist) \ ++ KEEP(*(_kprobe_blacklist)) \ + VMLINUX_SYMBOL(__stop_kprobe_blacklist) = .; + #else + #define KPROBE_BLACKLIST() @@ -123,7 +123,7 @@ #ifdef CONFIG_EVENT_TRACING #define FTRACE_EVENTS() . = ALIGN(8); \ @@ -328,6 +337,15 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org> *(COMMON) \ } +@@ -592,7 +593,7 @@ + . = ALIGN(8); \ + __bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) { \ + VMLINUX_SYMBOL(__start___bug_table) = .; \ +- *(__bug_table) \ ++ KEEP(*(__bug_table)) \ + VMLINUX_SYMBOL(__stop___bug_table) = .; \ + } + #else @@ -604,7 +605,7 @@ . = ALIGN(4); \ .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) { \ |