Commit 13aa8956 authored by Pali Rohár's avatar Pali Rohár Committed by Manish Pandey
Browse files

plat: marvell: armada: a3k: Do not modify $(WTMI_MULTI_IMG)



Rather create a temporary copy in $(BUILD_PLAT) and modify only copy.
Signed-off-by: default avatarPali Rohár <pali@kernel.org>
Change-Id: I256c029106ea6f69faa086fc4e5bee9f68cd257f
parent bdcd1bd0
...@@ -156,8 +156,9 @@ ifeq ($(MARVELL_SECURE_BOOT),1) ...@@ -156,8 +156,9 @@ ifeq ($(MARVELL_SECURE_BOOT),1)
@echo -e "\n\t=======================================================\n"; @echo -e "\n\t=======================================================\n";
@echo -e "\t Secure boot. Encrypting wtmi and boot-image \n"; @echo -e "\t Secure boot. Encrypting wtmi and boot-image \n";
@echo -e "\t=======================================================\n"; @echo -e "\t=======================================================\n";
@truncate -s %16 $(WTMI_MULTI_IMG) @cp $(WTMI_MULTI_IMG) $(BUILD_PLAT)/wtmi-align.bin
@openssl enc -aes-256-cbc -e -in $(WTMI_MULTI_IMG) \ @truncate -s %16 $(BUILD_PLAT)/wtmi-align.bin
@openssl enc -aes-256-cbc -e -in $(BUILD_PLAT)/wtmi-align.bin \
-out $(WTMI_ENC_IMG) \ -out $(WTMI_ENC_IMG) \
-K `cat $(IMAGESPATH)/aes-256.txt` -nosalt \ -K `cat $(IMAGESPATH)/aes-256.txt` -nosalt \
-iv `cat $(IMAGESPATH)/iv.txt` -p -iv `cat $(IMAGESPATH)/iv.txt` -p
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment