upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.6 KiB
91 lines
1.6 KiB
10 years ago
|
if RMOBILE
|
||
|
|
||
|
choice
|
||
|
prompt "Renesus ARM SoCs board select"
|
||
10 years ago
|
optional
|
||
10 years ago
|
|
||
|
config TARGET_ARMADILLO_800EVA
|
||
|
bool "armadillo 800 eva board"
|
||
|
|
||
10 years ago
|
config TARGET_GOSE
|
||
|
bool "Gose board"
|
||
10 years ago
|
select DM
|
||
|
select DM_SERIAL
|
||
10 years ago
|
|
||
10 years ago
|
config TARGET_KOELSCH
|
||
|
bool "Koelsch board"
|
||
10 years ago
|
select DM
|
||
|
select DM_SERIAL
|
||
10 years ago
|
|
||
|
config TARGET_LAGER
|
||
|
bool "Lager board"
|
||
10 years ago
|
select DM
|
||
|
select DM_SERIAL
|
||
10 years ago
|
|
||
|
config TARGET_KZM9G
|
||
|
bool "KZM9D board"
|
||
|
|
||
|
config TARGET_ALT
|
||
|
bool "Alt board"
|
||
10 years ago
|
select DM
|
||
|
select DM_SERIAL
|
||
10 years ago
|
|
||
10 years ago
|
config TARGET_SILK
|
||
|
bool "Silk board"
|
||
10 years ago
|
select DM
|
||
|
select DM_SERIAL
|
||
10 years ago
|
|
||
10 years ago
|
config TARGET_PORTER
|
||
|
bool "Porter board"
|
||
10 years ago
|
select DM
|
||
|
select DM_SERIAL
|
||
10 years ago
|
|
||
10 years ago
|
config TARGET_STOUT
|
||
|
bool "Stout board"
|
||
|
select DM
|
||
|
select DM_SERIAL
|
||
|
|
||
10 years ago
|
endchoice
|
||
|
|
||
|
config SYS_SOC
|
||
|
default "rmobile"
|
||
|
|
||
10 years ago
|
config RMOBILE_EXTRAM_BOOT
|
||
|
bool "Enable boot from RAM"
|
||
10 years ago
|
depends on TARGET_ALT || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
|
||
10 years ago
|
default n
|
||
|
|
||
10 years ago
|
choice
|
||
|
prompt "Qos setting primary"
|
||
10 years ago
|
depends on TARGET_ALT || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
|
||
10 years ago
|
default QOS_PRI_NORMAL
|
||
|
|
||
|
config QOS_PRI_NORMAL
|
||
|
bool "Non primary"
|
||
|
help
|
||
|
Select normal mode for QoS setting.
|
||
|
|
||
|
config QOS_PRI_MEDIA
|
||
|
bool "Media primary"
|
||
|
help
|
||
|
Select multimedia primary mode for QoS setting.
|
||
|
|
||
|
config QOS_PRI_GFX
|
||
|
bool "GFX primary"
|
||
|
help
|
||
|
Select GFX(graphics) primary mode for QoS setting.
|
||
|
|
||
|
endchoice
|
||
|
|
||
10 years ago
|
source "board/atmark-techno/armadillo-800eva/Kconfig"
|
||
10 years ago
|
source "board/renesas/gose/Kconfig"
|
||
10 years ago
|
source "board/renesas/koelsch/Kconfig"
|
||
|
source "board/renesas/lager/Kconfig"
|
||
|
source "board/kmc/kzm9g/Kconfig"
|
||
|
source "board/renesas/alt/Kconfig"
|
||
10 years ago
|
source "board/renesas/silk/Kconfig"
|
||
10 years ago
|
source "board/renesas/porter/Kconfig"
|
||
10 years ago
|
source "board/renesas/stout/Kconfig"
|
||
10 years ago
|
|
||
|
endif
|