diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-06-05 18:02:47 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2009-06-09 16:37:54 -0400 |
commit | a9eb522375abc79c2bf23940a067bc0046276236 (patch) | |
tree | 762b32bcae450844b0c91295a74e520aa626e0b1 /init | |
parent | 8b8b76c045beb85c1c2b28e07eff6599a1e95cf1 (diff) |
menu: fix embedded menu presentation
The STRIP_ASM_SYMS kconfig symbol mucks up the embedded menu because
STRIP_ASM_SYMS is in the middle of the embedded menu items but it does not
depend on EMBEDDED. Move it to beyond the end of the embedded menu so
that the menu is presented correctly.
Or if STRIP_ASM_SYMS should depend on EMBEDDED, that can also be fixed.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/init/Kconfig b/init/Kconfig index 7be4d3836745..4389cee99db0 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -808,14 +808,6 @@ config KALLSYMS_EXTRA_PASS | |||
808 | you wait for kallsyms to be fixed. | 808 | you wait for kallsyms to be fixed. |
809 | 809 | ||
810 | 810 | ||
811 | config STRIP_ASM_SYMS | ||
812 | bool "Strip assembler-generated symbols during link" | ||
813 | default n | ||
814 | help | ||
815 | Strip internal assembler-generated symbols during a link (symbols | ||
816 | that look like '.Lxxx') so they don't pollute the output of | ||
817 | get_wchan() and suchlike. | ||
818 | |||
819 | config HOTPLUG | 811 | config HOTPLUG |
820 | bool "Support for hot-pluggable devices" if EMBEDDED | 812 | bool "Support for hot-pluggable devices" if EMBEDDED |
821 | default y | 813 | default y |
@@ -961,6 +953,14 @@ config SLUB_DEBUG | |||
961 | SLUB sysfs support. /sys/slab will not exist and there will be | 953 | SLUB sysfs support. /sys/slab will not exist and there will be |
962 | no support for cache validation etc. | 954 | no support for cache validation etc. |
963 | 955 | ||
956 | config STRIP_ASM_SYMS | ||
957 | bool "Strip assembler-generated symbols during link" | ||
958 | default n | ||
959 | help | ||
960 | Strip internal assembler-generated symbols during a link (symbols | ||
961 | that look like '.Lxxx') so they don't pollute the output of | ||
962 | get_wchan() and suchlike. | ||
963 | |||
964 | config COMPAT_BRK | 964 | config COMPAT_BRK |
965 | bool "Disable heap randomization" | 965 | bool "Disable heap randomization" |
966 | default y | 966 | default y |