mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 22:03:15 +00:00
51f6c4280f
This is the first patch to remove the CONFIG_SYS_EXTRA_OPTIONS. This patch implements CPU type selection from Kconfig. Further Kconfig stuff is added later. Signed-off-by: Markus Niebel <Markus.Niebel@tq-group.com>
36 lines
538 B
Text
36 lines
538 B
Text
if TARGET_TQMA6
|
|
|
|
config SYS_BOARD
|
|
default "tqma6"
|
|
|
|
config SYS_VENDOR
|
|
default "tqc"
|
|
|
|
config SYS_SOC
|
|
default "mx6"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "tqma6"
|
|
|
|
choice
|
|
prompt "TQMa6 SoC variant"
|
|
default TQMA6Q
|
|
help
|
|
select the TQMa6 module variant. The variants differing in the used
|
|
i.MX6 CPU type and DRAM
|
|
|
|
config TQMA6Q
|
|
bool "TQMa6Q / TQMa6D"
|
|
select MX6Q
|
|
help
|
|
select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM
|
|
|
|
config TQMA6S
|
|
bool "TQMa6S"
|
|
select MX6S
|
|
help
|
|
select TQMa6S with i.MX6S and 512 MiB DRAM
|
|
|
|
endchoice
|
|
|
|
endif
|