Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Randy Dunlap and committed by
Sam Ravnborg
a9eb5223 8b8b76c0

+8 -8
+8 -8
init/Kconfig
··· 808 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 811 config HOTPLUG 820 812 bool "Support for hot-pluggable devices" if EMBEDDED 821 813 default y ··· 952 960 result in significant savings in code size. This also disables 953 961 SLUB sysfs support. /sys/slab will not exist and there will be 954 962 no support for cache validation etc. 963 + 964 + config STRIP_ASM_SYMS 965 + bool "Strip assembler-generated symbols during link" 966 + default n 967 + help 968 + Strip internal assembler-generated symbols during a link (symbols 969 + that look like '.Lxxx') so they don't pollute the output of 970 + get_wchan() and suchlike. 955 971 956 972 config COMPAT_BRK 957 973 bool "Disable heap randomization"