diff options
author | Tom Rini <trini@konsulko.com> | 2019-08-26 09:50:46 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-26 09:50:46 -0400 |
commit | 7a4b0bc5fe70225ae3595ba81d1473c06fd6b83b (patch) | |
tree | 08de46c2eb44560654871f78380d4363efdce5ec /configs | |
parent | 6f9656d726235b4cbb4f469a82c30e5006a75b53 (diff) | |
parent | 44016bc59870c8816fe2cd4721dc5ff11038dd98 (diff) | |
download | u-boot-7a4b0bc5fe70225ae3595ba81d1473c06fd6b83b.tar.gz |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-riscvWIP/26Aug2019
- Support SPL and OpenSBI (FW_DYNAMIC firmware) boot.
- Fix qemu kconfig build warning.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/qemu-riscv32_spl_defconfig | 11 | ||||
-rw-r--r-- | configs/qemu-riscv64_spl_defconfig | 12 |
2 files changed, 23 insertions, 0 deletions
diff --git a/configs/qemu-riscv32_spl_defconfig b/configs/qemu-riscv32_spl_defconfig new file mode 100644 index 0000000000..78e755b36a --- /dev/null +++ b/configs/qemu-riscv32_spl_defconfig @@ -0,0 +1,11 @@ +CONFIG_RISCV=y +CONFIG_NR_DRAM_BANKS=1 +CONFIG_SPL=y +CONFIG_TARGET_QEMU_VIRT=y +CONFIG_RISCV_SMODE=y +CONFIG_DISTRO_DEFAULTS=y +CONFIG_FIT=y +CONFIG_DISPLAY_CPUINFO=y +CONFIG_DISPLAY_BOARDINFO=y +# CONFIG_CMD_MII is not set +CONFIG_OF_PRIOR_STAGE=y diff --git a/configs/qemu-riscv64_spl_defconfig b/configs/qemu-riscv64_spl_defconfig new file mode 100644 index 0000000000..a3f5e29d58 --- /dev/null +++ b/configs/qemu-riscv64_spl_defconfig @@ -0,0 +1,12 @@ +CONFIG_RISCV=y +CONFIG_NR_DRAM_BANKS=1 +CONFIG_SPL=y +CONFIG_TARGET_QEMU_VIRT=y +CONFIG_ARCH_RV64I=y +CONFIG_RISCV_SMODE=y +CONFIG_DISTRO_DEFAULTS=y +CONFIG_FIT=y +CONFIG_DISPLAY_CPUINFO=y +CONFIG_DISPLAY_BOARDINFO=y +# CONFIG_CMD_MII is not set +CONFIG_OF_PRIOR_STAGE=y |