diff options
author | Bin Meng <bmeng@tinylab.org> | 2023-07-23 12:40:40 +0800 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2023-08-02 16:32:41 +0800 |
commit | 124308e67b6e1b6597ef34899211abac9bf7fd60 (patch) | |
tree | ece12247495733d43d26113d2511ef44ae1b042e /include | |
parent | 608b80b5b855d0c55a5fa7de11c1338bf2541855 (diff) | |
download | u-boot-124308e67b6e1b6597ef34899211abac9bf7fd60.zip u-boot-124308e67b6e1b6597ef34899211abac9bf7fd60.tar.gz u-boot-124308e67b6e1b6597ef34899211abac9bf7fd60.tar.bz2 |
riscv: qemu: Remove out-of-date "riscv, kernel-start" handling
Commit 66ffe57 ("riscv: qemu: detect and boot the kernel passed by QEMU")
added some logic to handle "riscv,kernel-start" in DT and stored the
address to an environment variable kernel_start.
However this "riscv,kernel-start" has never been an upstream DT binding.
The upstream QEMU never generates such a DT either. Presumably U-Boot
development was based on a downstream QEMU fork.
Now we drop all codes in commit 66ffe57, except that BOARD_LATE_INIT
is kept for later use.
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Rick Chen <rick@andestech.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/qemu-riscv.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/configs/qemu-riscv.h b/include/configs/qemu-riscv.h index 7ec3d12..d5146e7 100644 --- a/include/configs/qemu-riscv.h +++ b/include/configs/qemu-riscv.h @@ -22,22 +22,12 @@ "stderr=serial,vidconsole\0" #define BOOT_TARGET_DEVICES(func) \ - func(QEMU, qemu, na) \ func(VIRTIO, virtio, 0) \ func(SCSI, scsi, 0) \ func(DHCP, dhcp, na) #include <config_distro_bootcmd.h> -#define BOOTENV_DEV_QEMU(devtypeu, devtypel, instance) \ - "bootcmd_qemu=" \ - "if env exists kernel_start; then " \ - "bootm ${kernel_start} - ${fdtcontroladdr};" \ - "fi;\0" - -#define BOOTENV_DEV_NAME_QEMU(devtypeu, devtypel, instance) \ - "qemu " - #define CFG_EXTRA_ENV_SETTINGS \ CFG_STD_DEVICES_SETTINGS \ "fdt_high=0xffffffffffffffff\0" \ |