diff options
author | Khang Nguyen <khang.nguyen.xw@renesas.com> | 2018-09-30 22:36:38 -0400 |
---|---|---|
committer | Khang Nguyen <khang.nguyen.xv@renesas.com> | 2018-10-29 13:41:32 +0700 |
commit | 8819c067a2b063267beb3efc98a7027e311206f2 (patch) | |
tree | 84cef59644087023eacd59f1b3adf70907c6fda4 /meta-rcar-gen3/conf/machine/ebisu.conf | |
parent | 4c216d7d2d29af6cbc231f772e90f23ab619f109 (diff) |
rcar-gen3: machine: Update configurations according to u-boot v2018.09
This commit updates machine configurations for the following items:
- Upgraded u-boot to v2018.09.
- Added supporting Ebisu 4D 2GiB board.
- Enabled building multiple u-boot configurations for H3 Salvator-XS,
Ebisu and H3ULCB.
Signed-off-by: Khang Nguyen <khang.nguyen.xw@renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/conf/machine/ebisu.conf')
-rw-r--r-- | meta-rcar-gen3/conf/machine/ebisu.conf | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/meta-rcar-gen3/conf/machine/ebisu.conf b/meta-rcar-gen3/conf/machine/ebisu.conf index 23ba24b..eb83d95 100644 --- a/meta-rcar-gen3/conf/machine/ebisu.conf +++ b/meta-rcar-gen3/conf/machine/ebisu.conf @@ -24,16 +24,21 @@ SERIAL_CONSOLE = "115200 ttySC0" # Configuration for kernel PREFERRED_PROVIDER_virtual/kernel = "linux-renesas" # Device tree for E3 -KERNEL_DEVICETREE = "renesas/r8a77990-ebisu.dtb" +KERNEL_DEVICETREE = " \ + renesas/r8a77990-ebisu.dtb \ + renesas/r8a77990-ebisu-4d.dtb \ +" # Configuration for ARM Trusted Firmware EXTRA_IMAGEDEPENDS += " arm-trusted-firmware optee-os" # u-boot -PREFERRED_VERSION_u-boot = "v2015.04%" +PREFERRED_VERSION_u-boot = "v2018.09%" EXTRA_IMAGEDEPENDS += " u-boot" # E3 u-boot configure -UBOOT_MACHINE = "r8a77990_ebisu_defconfig" +UBOOT_CONFIG ??= "ebisu ebisu-4d" +UBOOT_CONFIG[ebisu] = "r8a77990_ebisu_defconfig" +UBOOT_CONFIG[ebisu-4d] = "r8a77990_ebisu-4d_defconfig" # libdrm PREFERRED_VERSION_libdrm = "2.4.85" |