Skip to content
Snippets Groups Projects
Commit 54cc4dcf authored by Pantelis Antoniou's avatar Pantelis Antoniou Committed by Tom Rini
Browse files

arm: Always keep the dtb section on objcopy


The dtb blob section must always be present in the resulting image.
Either if OF_EMBEDED is used or if unit tests include dtb blobs.

Signed-off-by: default avatarPantelis Antoniou <pantelis.antoniou@konsulko.com>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent b12550eb
No related branches found
No related tags found
No related merge requests found
...@@ -142,9 +142,11 @@ OBJCOPYFLAGS += -j .text -j .secure_text -j .secure_data -j .rodata -j .hash \ ...@@ -142,9 +142,11 @@ OBJCOPYFLAGS += -j .text -j .secure_text -j .secure_data -j .rodata -j .hash \
-j .data -j .got -j .got.plt -j .u_boot_list -j .rel.dyn -j .data -j .got -j .got.plt -j .u_boot_list -j .rel.dyn
endif endif
ifdef CONFIG_OF_EMBED # if a dtb section exists we always have to include it
# there are only two cases where it is generated
# 1) OF_EMBEDED is turned on
# 2) unit tests include device tree blobs
OBJCOPYFLAGS += -j .dtb.init.rodata OBJCOPYFLAGS += -j .dtb.init.rodata
endif
ifdef CONFIG_EFI_LOADER ifdef CONFIG_EFI_LOADER
OBJCOPYFLAGS += -j .efi_runtime -j .efi_runtime_rel OBJCOPYFLAGS += -j .efi_runtime -j .efi_runtime_rel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment