diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-11-27 15:02:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-11-27 15:02:11 +0000 |
commit | 1f5987c5d3c12695edd1f8dec83534fae10e459f (patch) | |
tree | f42659a9796be68ac26790f751666ea6ff58366a /target | |
parent | d57b64dfb0ba45e5da17cf145c54bd8ad85caf52 (diff) | |
download | upstream-1f5987c5d3c12695edd1f8dec83534fae10e459f.tar.gz upstream-1f5987c5d3c12695edd1f8dec83534fae10e459f.tar.bz2 upstream-1f5987c5d3c12695edd1f8dec83534fae10e459f.zip |
kernel: keep __bug_table with gc-sections
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 43404
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-3.14/220-gc_sections.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.14/220-gc_sections.patch b/target/linux/generic/patches-3.14/220-gc_sections.patch index c105c40b80..1beafaaa30 100644 --- a/target/linux/generic/patches-3.14/220-gc_sections.patch +++ b/target/linux/generic/patches-3.14/220-gc_sections.patch @@ -346,6 +346,15 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org> *(COMMON) \ } +@@ -584,7 +585,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 @@ -596,7 +597,7 @@ . = ALIGN(4); \ .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) { \ |