Skip to content

Commit

Permalink
Merge pull request wolfSSL#457 from danielinux/otp-regressions
Browse files Browse the repository at this point in the history
Fix build OTP options
  • Loading branch information
rizlik authored Jun 26, 2024
2 parents 1967cc2 + 391e8d0 commit 0f8f30d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ $(PRIVATE_KEY):
$(Q)$(MAKE) keytools_check
$(Q)(test $(SIGN) = NONE) || ("$(KEYGEN_TOOL)" $(KEYGEN_OPTIONS) -g $(PRIVATE_KEY)) || true
$(Q)(test $(SIGN) = NONE) && (echo "// SIGN=NONE" > src/keystore.c) || true
$(Q)(test $(FLASH_OTP_KEYSTORE) = 0) || (make -C tools/keytools/otp) || true
$(Q)(test "$(FLASH_OTP_KEYSTORE)" = "1") && (make -C tools/keytools/otp) || true

keytools: include/target.h
@echo "Building key tools"
Expand Down
2 changes: 1 addition & 1 deletion include/image.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ int wolfBot_get_dts_size(void *dts_addr);



#if defined(WOLFBOOT_ARMORED)
#if (defined(WOLFBOOT_ARMORED) && defined(__WOLFBOOT))

#if !defined(ARCH_ARM) || !defined(__GNUC__)
# error WOLFBOOT_ARMORED only available with arm-gcc compiler
Expand Down

0 comments on commit 0f8f30d

Please sign in to comment.