Skip to content

Commit

Permalink
menu: fix embedded menu presentation
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Sam Ravnborg <[email protected]>
  • Loading branch information
rddunlap authored and sravnborg committed Jun 9, 2009
1 parent 8b8b76c commit a9eb522
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions init/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -808,14 +808,6 @@ config KALLSYMS_EXTRA_PASS
you wait for kallsyms to be fixed.


config STRIP_ASM_SYMS
bool "Strip assembler-generated symbols during link"
default n
help
Strip internal assembler-generated symbols during a link (symbols
that look like '.Lxxx') so they don't pollute the output of
get_wchan() and suchlike.

config HOTPLUG
bool "Support for hot-pluggable devices" if EMBEDDED
default y
Expand Down Expand Up @@ -961,6 +953,14 @@ config SLUB_DEBUG
SLUB sysfs support. /sys/slab will not exist and there will be
no support for cache validation etc.

config STRIP_ASM_SYMS
bool "Strip assembler-generated symbols during link"
default n
help
Strip internal assembler-generated symbols during a link (symbols
that look like '.Lxxx') so they don't pollute the output of
get_wchan() and suchlike.

config COMPAT_BRK
bool "Disable heap randomization"
default y
Expand Down

0 comments on commit a9eb522

Please sign in to comment.