1
0
mirror of https://xff.cz/git/u-boot/ synced 2026-01-07 01:49:18 +01:00

arm: qemu: Switch to a text environment

Use the new environment format so we can drop most of the config.h file.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2023-01-28 15:00:27 -07:00
committed by Tom Rini
parent c2488a81b8
commit ece763de2f
2 changed files with 12 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* environment for qemu-arm and qemu-arm64 */
fdt_high=0xffffffff
initrd_high=0xffffffff
fdt_addr=0x40000000
scriptaddr=0x40200000
pxefile_addr_r=0x40300000
kernel_addr_r=0x40400000
ramdisk_addr_r=0x44000000
boot_targets=qfw usb scsi virtio nvme dhcp

View File

@@ -23,17 +23,4 @@
/* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
/* Environment options */
#define BOOT_TARGETS "qfw usb scsi virtio nvme dhcp"
#define CFG_EXTRA_ENV_SETTINGS \
"fdt_high=0xffffffff\0" \
"initrd_high=0xffffffff\0" \
"fdt_addr=0x40000000\0" \
"scriptaddr=0x40200000\0" \
"pxefile_addr_r=0x40300000\0" \
"kernel_addr_r=0x40400000\0" \
"ramdisk_addr_r=0x44000000\0" \
"boot_targets=" BOOT_TARGETS "\0"
#endif /* __CONFIG_H */