mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
66582cf6da
Enable extended MMC commands and GPT partition table support. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> --- V2: Rebase on u-boot/master
27 lines
478 B
Text
27 lines
478 B
Text
if ARCH_RMOBILE
|
|
|
|
choice
|
|
prompt "Target Renesas SoC select"
|
|
default RCAR_32
|
|
|
|
config RCAR_32
|
|
bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
|
|
select CPU_V7A
|
|
|
|
config RCAR_GEN3
|
|
bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
|
|
select ARM64
|
|
select PHY
|
|
select CMD_CACHE
|
|
imply CMD_FS_UUID
|
|
imply CMD_GPT
|
|
imply CMD_UUID
|
|
imply CMD_MMC_SWRITE if MMC
|
|
imply SUPPORT_EMMC_RPMB if MMC
|
|
|
|
endchoice
|
|
|
|
source "arch/arm/mach-rmobile/Kconfig.32"
|
|
source "arch/arm/mach-rmobile/Kconfig.64"
|
|
|
|
endif
|