summaryrefslogtreecommitdiffstats
path: root/drivers/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:17 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:17 +0200
commitc03bd6446cdaa66cc513a04e19fc986def5e0752 (patch)
tree593d4489eb4a7429dcdef4974d48cc2da5fee48e /drivers/Kconfig
parent5618da1521d8ef96a8b0c0f278fc509d6cd53ebb (diff)
downloadbarebox-c03bd6446cdaa66cc513a04e19fc986def5e0752.tar.gz
barebox-c03bd6446cdaa66cc513a04e19fc986def5e0752.tar.xz
svn_rev_049
Kconfig WIP
Diffstat (limited to 'drivers/Kconfig')
-rw-r--r--drivers/Kconfig31
1 files changed, 31 insertions, 0 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig
new file mode 100644
index 0000000000..f414e51136
--- /dev/null
+++ b/drivers/Kconfig
@@ -0,0 +1,31 @@
+menuconfig DRIVERS
+ bool "drivers"
+
+if DRIVERS
+
+config HAS_CS8900
+ bool
+
+config HAS_AT91_ETHER
+ bool
+
+config HAS_CFI
+ bool
+
+comment "Network drivers"
+
+config DRIVER_NET_CS8900
+ bool "cs8900 ethernet driver"
+ depends on HAS_CS8900
+
+config DRIVER_NET_AT91_ETHER
+ bool "at91 ethernet driver"
+ depends on HAS_AT91_ETHER
+
+comment "Flash drivers"
+
+config DRIVER_CFI
+ bool "cfi flash driver"
+ depends on HAS_CFI
+
+endif