Skip to content

Commit

Permalink
Rename target with 'nosign' to be consistent with Applet repo Makefil…
Browse files Browse the repository at this point in the history
…e target.
  • Loading branch information
jiggoha committed Sep 14, 2023
1 parent a1bd511 commit 98eac19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ all: trusted_os_embedded_applet witnessctl

# This target is only used for dev builds, since the proto definitions may
# change in development and require re-compilation of protos.
elf_and_proto: proto $(APP).elf
trusted_os_nosign_dev: proto $(APP).elf

trusted_os_signed: APP=trusted_os
trusted_os_signed: DIR=$(CURDIR)/trusted_os
trusted_os_signed: create_dummy_applet elf_and_proto
trusted_os_signed: create_dummy_applet trusted_os_nosign_dev
echo "signing Trusted OS"
@if [ "${SIGN_PWD}" != "" ]; then \
echo -e "${SIGN_PWD}\n" | ${SIGN} -S -s ${OS_PRIVATE_KEY1} -m ${CURDIR}/bin/trusted_os.elf -x ${CURDIR}/bin/trusted_os.sig1; \
Expand All @@ -76,7 +76,7 @@ trusted_os_signed: create_dummy_applet elf_and_proto

trusted_os_embedded_applet: APP=trusted_os
trusted_os_embedded_applet: DIR=$(CURDIR)/trusted_os
trusted_os_embedded_applet: check_os_env copy_applet elf_and_proto imx
trusted_os_embedded_applet: check_os_env copy_applet trusted_os_nosign_dev imx
trusted_os_embedded_applet:
echo "signing Trusted OS"
@if [ "${SIGN_PWD}" != "" ]; then \
Expand Down

0 comments on commit 98eac19

Please sign in to comment.