* [PATCH] drivers: use "menuconfig" consistently for all selections.
@ 2009-12-22 14:25 Robert P. J. Day
2009-12-22 14:47 ` Marc Kleine-Budde
0 siblings, 1 reply; 3+ messages in thread
From: Robert P. J. Day @ 2009-12-22 14:25 UTC (permalink / raw)
To: U-Boot Version 2 (barebox)
Use the "menuconfig" directive to make all top-level driver choices
1-touch selectable, and standardize the menuconfig names.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
as you can see, this is just a cleanup to use "menuconfig" for all
of the drivers submenus. feel free to test this to make sure i didn't
break anything, or suggest different defaults for any of those
choices.
this takes care of just the "drivers" submenu. if there are no
objections, i'd like to do this elsewhere where it makes sense.
diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig
index 46723ed..87c3445 100644
--- a/drivers/i2c/Kconfig
+++ b/drivers/i2c/Kconfig
@@ -1,7 +1,7 @@
-menuconfig I2C
+menuconfig I2C_DRIVERS
bool "I2C drivers "
-if I2C
+if I2C_DRIVERS
config DRIVER_I2C_IMX
bool "i.MX I2C Master driver"
diff --git a/drivers/nand/Kconfig b/drivers/nand/Kconfig
index 031b94d..2059558 100644
--- a/drivers/nand/Kconfig
+++ b/drivers/nand/Kconfig
@@ -1,4 +1,4 @@
-menuconfig NAND
+menuconfig NAND_DRIVERS
bool "NAND support "
select MTD_NAND_IDS
help
@@ -6,7 +6,7 @@ menuconfig NAND
devices. For further information see
<http://www.linux-mtd.infradead.org/doc/nand.html>.
-if NAND
+if NAND_DRIVERS
config NAND_IMX
bool
diff --git a/drivers/nor/Kconfig b/drivers/nor/Kconfig
index 7d9497e..1e487c9 100644
--- a/drivers/nor/Kconfig
+++ b/drivers/nor/Kconfig
@@ -1,8 +1,11 @@
-menu "flash drivers "
-
config HAS_CFI
bool
+menuconfig FLASH_DRIVERS
+ bool "flash drivers "
+
+if FLASH_DRIVERS
+
config DRIVER_CFI
bool "cfi flash driver"
help
@@ -71,4 +74,4 @@ config CFI_BUFFER_WRITE
bool "use cfi driver with buffer write"
depends on DRIVER_CFI || DRIVER_CFI_NEW
-endmenu
+endif
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index b0ff5fa..0f9aa7f 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -1,4 +1,7 @@
-menu "serial drivers "
+menuconfig SERIAL_DRIVERS
+ bool "Serial drivers "
+
+if SERIAL_DRIVERS
config DRIVER_SERIAL_ARM_DCC
depends on ARM
@@ -61,4 +64,4 @@ config DRIVER_SERIAL_S3C24X0_AUTOSYNC
Say Y here if you want to use the auto flow feature of this
UART. RTS and CTS will be handled by the hardware when enabled.
-endmenu
+endif
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
index 3eebd08..93e9000 100644
--- a/drivers/spi/Kconfig
+++ b/drivers/spi/Kconfig
@@ -1,16 +1,14 @@
-menu "SPI drivers "
-
-config SPI
- bool "Enable SPI driver support"
+menuconfig SPI_DRIVERS
+ bool "SPI drivers "
default y
+if SPI_DRIVERS
+
config DRIVER_SPI_IMX
bool "i.MX SPI Master driver"
depends on ARCH_IMX
- depends on SPI
config DRIVER_SPI_MC13783
bool "MC13783 a.k.a. PMIC driver"
- depends on SPI
-endmenu
+endif
diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
index 839efeb..f025170 100644
--- a/drivers/usb/Kconfig
+++ b/drivers/usb/Kconfig
@@ -1,7 +1,7 @@
-menuconfig USB
+menuconfig USB_DRIVERS
bool "USB support "
-if USB
+if USB_DRIVERS
config USB_EHCI
bool "EHCI driver"
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index dbdc7e2..345e449 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -1,9 +1,9 @@
-menuconfig VIDEO
+menuconfig VIDEO_DRIVERS
bool "Video drivers "
help
Add support for framebuffer and splash screens
-if VIDEO
+if VIDEO_DRIVERS
config DRIVER_VIDEO_IMX
bool "i.MX framebuffer driver"
rday
--
========================================================================
Robert P. J. Day Waterloo, Ontario, CANADA
Linux Consulting, Training and Kernel Pedantry.
Web page: http://crashcourse.ca
Twitter: http://twitter.com/rpjday
========================================================================
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drivers: use "menuconfig" consistently for all selections.
2009-12-22 14:25 [PATCH] drivers: use "menuconfig" consistently for all selections Robert P. J. Day
@ 2009-12-22 14:47 ` Marc Kleine-Budde
2009-12-22 14:52 ` Robert P. J. Day
0 siblings, 1 reply; 3+ messages in thread
From: Marc Kleine-Budde @ 2009-12-22 14:47 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: U-Boot Version 2 (barebox)
[-- Attachment #1.1: Type: text/plain, Size: 611 bytes --]
Robert P. J. Day wrote:
> Use the "menuconfig" directive to make all top-level driver choices
> 1-touch selectable, and standardize the menuconfig names.
If you change the symbol names you have to change the Makefiles, too.
Have a look at drivers/Makefile and drivers/*/Makefile
cheers, Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Linux Solutions for Science and Industry | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 260 bytes --]
[-- Attachment #2: Type: text/plain, Size: 149 bytes --]
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drivers: use "menuconfig" consistently for all selections.
2009-12-22 14:47 ` Marc Kleine-Budde
@ 2009-12-22 14:52 ` Robert P. J. Day
0 siblings, 0 replies; 3+ messages in thread
From: Robert P. J. Day @ 2009-12-22 14:52 UTC (permalink / raw)
To: Marc Kleine-Budde; +Cc: U-Boot Version 2 (barebox)
On Tue, 22 Dec 2009, Marc Kleine-Budde wrote:
> Robert P. J. Day wrote:
> > Use the "menuconfig" directive to make all top-level driver choices
> > 1-touch selectable, and standardize the menuconfig names.
>
> If you change the symbol names you have to change the Makefiles, too.
>
> Have a look at drivers/Makefile and drivers/*/Makefile
oh, cr*p, of course, i missed that totally. my bad.
rday
--
========================================================================
Robert P. J. Day Waterloo, Ontario, CANADA
Linux Consulting, Training and Kernel Pedantry.
Web page: http://crashcourse.ca
Twitter: http://twitter.com/rpjday
========================================================================
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-12-22 14:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-22 14:25 [PATCH] drivers: use "menuconfig" consistently for all selections Robert P. J. Day
2009-12-22 14:47 ` Marc Kleine-Budde
2009-12-22 14:52 ` Robert P. J. Day
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox