mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
fe4a967575
Future gdsys boards will switch from the legacy drivers in board/gdsys/common to DM-based drivers. Define a Kconfig option that disables the legacy drivers. Signed-off-by: Mario Six <mario.six@gdsys.cc>
22 lines
399 B
Text
22 lines
399 B
Text
config GDSYS_LEGACY_DRIVERS
|
|
bool
|
|
help
|
|
Enable the gdsys legacy drivers under board/gdsys/common. If this
|
|
option is not set, all relevant DM drivers must be configured for the
|
|
device in question.
|
|
|
|
if TARGET_CONTROLCENTERD
|
|
|
|
config SYS_BOARD
|
|
default "p1022"
|
|
|
|
config SYS_VENDOR
|
|
default "gdsys"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "controlcenterd"
|
|
|
|
config GDSYS_LEGACY_DRIVERS
|
|
default y
|
|
|
|
endif
|