Patchwork kconfig: Add EXPERT option

login
register
about
Submitter Uwe Hermann
Date 2009-10-18 13:45:54
Message ID <20091018134553.GF22827@greenwood>
Download mbox | patch
Permalink /patch/435/
State Accepted
Commit r4808
Headers show

Comments

Uwe Hermann - 2009-10-18 13:45:54
See patch.


Uwe.
Peter Stuge - 2009-10-18 17:12:33
Uwe Hermann wrote:
> Add EXPERT kconfig option so we can hide more advanced options
> from beginners who should rather not touch them unless they know what
> they do.
> 
> Also, add a random Kconfig help comment.
> 
> Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>

Acked-by: Peter Stuge <peter@stuge.se>
Uwe Hermann - 2009-10-18 18:36:17
On Sun, Oct 18, 2009 at 07:12:33PM +0200, Peter Stuge wrote:
> Uwe Hermann wrote:
> > Add EXPERT kconfig option so we can hide more advanced options
> > from beginners who should rather not touch them unless they know what
> > they do.
> > 
> > Also, add a random Kconfig help comment.
> > 
> > Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
> 
> Acked-by: Peter Stuge <peter@stuge.se>

Thanks, r4808.


Uwe.

Patch

Add EXPERT kconfig option so we can hide more advanced options
from beginners who should rather not touch them unless they know what
they do.

Also, add a random Kconfig help comment.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>

Index: src/Kconfig
===================================================================
--- src/Kconfig	(Revision 4803)
+++ src/Kconfig	(Arbeitskopie)
@@ -29,6 +29,14 @@ 
 
 menu "General setup"
 
+config EXPERT
+	bool "Expert mode"
+	help
+	  This allows you to select certain advanced configuration options.
+
+	  Warning: Only enable this option if you really know what you are
+	  doing! You have been warned!
+
 config LOCALVERSION
 	string "Local version string"
 	help
Index: src/cpu/Kconfig
===================================================================
--- src/cpu/Kconfig	(Revision 4803)
+++ src/cpu/Kconfig	(Arbeitskopie)
@@ -29,6 +29,9 @@ 
 	bool
 	default y if MAX_CPUS != 1
 	default n
+	help
+	  This option is used to enable certain functions to make coreboot
+	  work correctly on symmetric multi processor (SMP) systems.
 
 # Set MMX and SSE in socket or model if the CPU has them.
 # If all CPUs for the socket have MMX or SSE, set them there.