Skip to content
Snippets Groups Projects
Verified Commit d989aefe authored by Andreas Gnau's avatar Andreas Gnau :speech_balloon:
Browse files

common: Increase static padding to 8 KiB


In cases, where multible DTBss are included, the kernel FIT image FIT
metadata can grow beyond 4 KiB. Running mkimage with a static external
position of image data of 4 KiB will this cause an error. Increase the
limit to 8 KiB to give enough space for more FIT metadata.

Signed-off-by: default avatarAndreas Gnau <andreas.gnau@iopsys.eu>
parent 90590987
Branches
No related tags found
1 merge request!1413common: Increase static padding to 8 KiB
......@@ -275,7 +275,7 @@ endef
define iowrt-kernel-fit-mkimage
PATH=$(LINUX_DIR)/scripts/dtc:$(PATH) mkimage \
$(if $(findstring external,$(word 2,$(1))), -E -B 0x1000 $(if $(findstring static,$(word 2,$(1))),-p 0x1000)) \
$(if $(findstring external,$(word 2,$(1))), -E -B 0x1000 $(if $(findstring static,$(word 2,$(1))),-p 0x2000)) \
-r \
-f $@.its \
$@.new
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment