diff options
| author | Xiang W <[email protected]> | 2024-04-08 23:27:42 +0800 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2024-04-10 09:50:24 +0530 |
| commit | d4d2582eef7aac442076f955e4024403f8ff3d96 (patch) | |
| tree | 3623c416199df750595d3a5147027ee41a51d5b8 /platform/generic/objects.mk | |
| parent | 73344d4724d89ab5591311b9badfad875dddbb92 (diff) | |
firmware: remove FW_TEXT_START
Now opensbi can run at any address via dynamic relocation. We can
remove FW_TEXT_START.
Signed-off-by: Xiang W <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Tested-by: Anup Patel <[email protected]>
Diffstat (limited to 'platform/generic/objects.mk')
| -rw-r--r-- | platform/generic/objects.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/generic/objects.mk b/platform/generic/objects.mk index 85aa723a..c215935e 100644 --- a/platform/generic/objects.mk +++ b/platform/generic/objects.mk @@ -15,14 +15,13 @@ platform-ldflags-y = # Command for platform specific "make run" platform-runcmd = qemu-system-riscv$(PLATFORM_RISCV_XLEN) -M virt -m 256M \ - -nographic -bios $(build_dir)/platform/generic/firmware/fw_payload.elf + -nographic -bios $(build_dir)/platform/generic/firmware/fw_payload.bin # Objects to build platform-objs-y += platform.o platform-objs-y += platform_override_modules.o # Blobs to build -FW_TEXT_START=0x80000000 FW_DYNAMIC=y FW_JUMP=y ifeq ($(PLATFORM_RISCV_XLEN), 32) |
