Handle drivers/ equally to any other sub directory.

Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6503 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2011-04-15 03:30:03 +00:00 committed by Stefan Reinauer
parent 8345a194ba
commit d85400d805
34 changed files with 80 additions and 25 deletions

View File

@ -157,9 +157,6 @@ config MMCONF_SUPPORT
bool bool
default n default n
config ATI_RAGE_XL
bool
source src/console/Kconfig source src/console/Kconfig
config HAVE_ACPI_RESUME config HAVE_ACPI_RESUME

View File

@ -17,13 +17,11 @@
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
## ##
config DRIVERS_SIL_3114 source src/drivers/ati/Kconfig
bool "Silicon Image SIL3114"
default n
help
It sets PCI class to IDE compatible native mode, allowing
SeaBIOS, FILO etc... to boot from it.
source src/drivers/dec/Kconfig source src/drivers/dec/Kconfig
source src/drivers/emulation/Kconfig
source src/drivers/generic/Kconfig
source src/drivers/i2c/Kconfig
source src/drivers/sil/Kconfig
source src/drivers/trident/Kconfig

View File

@ -17,19 +17,11 @@
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
## ##
subdirs-y += ati
subdirs-y += dec subdirs-y += dec
subdirs-y += emulation
# should these be cleaned up to behave like all other subdirectories? subdirs-y += generic
subdirs-y += i2c
subdirs-y += ati/ragexl subdirs-y += sil
subdirs-y += emulation/qemu subdirs-y += trident
subdirs-y += generic/debug
subdirs-y += i2c/adm1026
subdirs-y += i2c/adm1027
subdirs-y += i2c/adt7463
subdirs-y += i2c/i2cmux
subdirs-y += i2c/i2cmux2
subdirs-y += i2c/lm63
subdirs-y += sil/3114
subdirs-y += trident/blade3d

1
src/drivers/ati/Kconfig Normal file
View File

@ -0,0 +1 @@
source src/drivers/ati/ragexl/Kconfig

View File

@ -0,0 +1 @@
subdirs-y += ragexl

View File

@ -0,0 +1,2 @@
config ATI_RAGE_XL
bool

View File

@ -0,0 +1,2 @@
source src/drivers/emulation/qemu/Kconfig

View File

@ -0,0 +1 @@
subdirs-y += qemu

View File

@ -0,0 +1,2 @@
config DRIVERS_EMULATION_QEMU
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_EMULATION_QEMU) += init.c

View File

@ -0,0 +1,2 @@
source src/drivers/generic/debug/Kconfig

View File

@ -0,0 +1 @@
subdirs-y += debug

View File

@ -0,0 +1,2 @@
config DRIVERS_GENERIC_DEBUG
bool

6
src/drivers/i2c/Kconfig Normal file
View File

@ -0,0 +1,6 @@
source src/drivers/i2c/adm1026/Kconfig
source src/drivers/i2c/adm1027/Kconfig
source src/drivers/i2c/adt7463/Kconfig
source src/drivers/i2c/i2cmux/Kconfig
source src/drivers/i2c/i2cmux2/Kconfig
source src/drivers/i2c/lm63/Kconfig

View File

@ -0,0 +1,6 @@
subdirs-y += adm1026
subdirs-y += adm1027
subdirs-y += adt7463
subdirs-y += i2cmux
subdirs-y += i2cmux2
subdirs-y += lm63

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_ADM1026
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_ADM1026) += adm1026.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_ADM1027
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_ADM1027) += adm1027.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_ADT7463
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_ADT7463) += adt7463.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_I2CMUX
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_I2CMUX) += i2cmux.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_I2CMUX2
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_I2CMUX2) += i2cmux2.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_LM63
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_LM63) += lm63.c

View File

@ -0,0 +1,8 @@
config DRIVERS_SIL_3114
bool "Silicon Image SIL3114"
default n
help
It sets PCI class to IDE compatible native mode, allowing
SeaBIOS, FILO etc... to boot from it.

8
src/drivers/sil/Kconfig Normal file
View File

@ -0,0 +1,8 @@
config DRIVERS_SIL_3114
bool "Silicon Image SIL3114"
default n
help
It sets PCI class to IDE compatible native mode, allowing
SeaBIOS, FILO etc... to boot from it.

View File

@ -0,0 +1 @@
subdirs-y += 3114

View File

@ -0,0 +1,2 @@
source src/drivers/trident/blade3d/Kconfig

View File

@ -0,0 +1 @@
subdirs-y += blade3d

View File

@ -0,0 +1,2 @@
config DRIVERS_TRIDENT_BLADE3D
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_TRIDENT_BLADE3D) += blade3d.c