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:
parent
8345a194ba
commit
d85400d805
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
source src/drivers/ati/ragexl/Kconfig
|
|
@ -0,0 +1 @@
|
||||||
|
subdirs-y += ragexl
|
|
@ -0,0 +1,2 @@
|
||||||
|
config ATI_RAGE_XL
|
||||||
|
bool
|
|
@ -0,0 +1,2 @@
|
||||||
|
source src/drivers/emulation/qemu/Kconfig
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
subdirs-y += qemu
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_EMULATION_QEMU
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_EMULATION_QEMU) += init.c
|
|
@ -0,0 +1,2 @@
|
||||||
|
source src/drivers/generic/debug/Kconfig
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
subdirs-y += debug
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_GENERIC_DEBUG
|
||||||
|
bool
|
|
@ -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
|
|
@ -0,0 +1,6 @@
|
||||||
|
subdirs-y += adm1026
|
||||||
|
subdirs-y += adm1027
|
||||||
|
subdirs-y += adt7463
|
||||||
|
subdirs-y += i2cmux
|
||||||
|
subdirs-y += i2cmux2
|
||||||
|
subdirs-y += lm63
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_I2C_ADM1026
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_I2C_ADM1026) += adm1026.c
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_I2C_ADM1027
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_I2C_ADM1027) += adm1027.c
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_I2C_ADT7463
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_I2C_ADT7463) += adt7463.c
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_I2C_I2CMUX
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_I2C_I2CMUX) += i2cmux.c
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_I2C_I2CMUX2
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_I2C_I2CMUX2) += i2cmux2.c
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_I2C_LM63
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_I2C_LM63) += lm63.c
|
|
@ -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.
|
||||||
|
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
subdirs-y += 3114
|
|
@ -0,0 +1,2 @@
|
||||||
|
source src/drivers/trident/blade3d/Kconfig
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
subdirs-y += blade3d
|
|
@ -0,0 +1,2 @@
|
||||||
|
config DRIVERS_TRIDENT_BLADE3D
|
||||||
|
bool
|
|
@ -0,0 +1 @@
|
||||||
|
driver-$(CONFIG_DRIVERS_TRIDENT_BLADE3D) += blade3d.c
|
Loading…
Reference in New Issue