Skip to content

Commit 6befe5f

Browse files
rddunlaptorvalds
authored andcommitted
init/Kconfig: fix EXPERT menu list
The EXPERT menu list was recently broken by the insertion of a kconfig symbol (EMBEDDED) at the beginning of the EXPERT list of kconfig items. Broken by: commit 6a108a1 Author: David Rientjes <[email protected]> Date: Thu Jan 20 14:44:16 2011 -0800 kconfig: rename CONFIG_EMBEDDED to CONFIG_EXPERT Restore the EXPERT menu list -- don't inject a symbol (EMBEDDED) that does not depend on EXPERT into the list. Signed-off-by: Randy Dunlap <[email protected]> Cc: David Rientjes <[email protected]> Cc: Peter Foley <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 4175242 commit 6befe5f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

init/Kconfig

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -924,14 +924,6 @@ menuconfig EXPERT
924924
environments which can tolerate a "non-standard" kernel.
925925
Only use this if you really know what you are doing.
926926

927-
config EMBEDDED
928-
bool "Embedded system"
929-
select EXPERT
930-
help
931-
This option should be enabled if compiling the kernel for
932-
an embedded system so certain expert options are available
933-
for configuration.
934-
935927
config UID16
936928
bool "Enable 16-bit UID system calls" if EXPERT
937929
depends on ARM || BLACKFIN || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && COMPAT) || UML || (X86_64 && IA32_EMULATION)
@@ -1104,6 +1096,14 @@ config AIO
11041096
by some high performance threaded applications. Disabling
11051097
this option saves about 7k.
11061098

1099+
config EMBEDDED
1100+
bool "Embedded system"
1101+
select EXPERT
1102+
help
1103+
This option should be enabled if compiling the kernel for
1104+
an embedded system so certain expert options are available
1105+
for configuration.
1106+
11071107
config HAVE_PERF_EVENTS
11081108
bool
11091109
help

0 commit comments

Comments
 (0)