Skip to content

Commit

Permalink
Place the DTB between the OpenSBI and the kernel (#1)
Browse files Browse the repository at this point in the history
This removes the minimum RAM size and maximum kernel size restriction.
See also riscv-software-src#169
  • Loading branch information
arichardson committed Jun 17, 2020
1 parent 51e9662 commit 62ec2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/generic/config.mk
Expand Up @@ -28,7 +28,7 @@ else
# This needs to be 2MB aligned for 64-bit system
FW_JUMP_ADDR=$(shell printf "0x%X" $$(($(FW_TEXT_START) + 0x200000)))
endif
FW_JUMP_FDT_ADDR=$(shell printf "0x%X" $$(($(FW_TEXT_START) + 0x2200000)))
FW_JUMP_FDT_ADDR=$(shell printf "0x%X" $$(($(FW_TEXT_START) + 0x100000)))
FW_PAYLOAD=y
ifeq ($(PLATFORM_RISCV_XLEN), 32)
# This needs to be 4MB aligned for 32-bit system
Expand Down

0 comments on commit 62ec2ee

Please sign in to comment.