mirror of https://github.com/wolfSSL/wolfBoot.git
40 lines
939 B
Plaintext
40 lines
939 B
Plaintext
ARCH=sim
|
|
TARGET=sim
|
|
SIGN?=ECC256
|
|
HASH?=SHA256
|
|
WOLFBOOT_SMALL_STACK?=0
|
|
SPI_FLASH=0
|
|
DEBUG=1
|
|
|
|
# Cert chain options
|
|
CERT_CHAIN_VERIFY=1
|
|
CERT_CHAIN_GEN=1
|
|
|
|
# Ensure header is large enough to hold the cert chain (check sign tool output)
|
|
# for actual length
|
|
IMAGE_HEADER_SIZE=2048
|
|
|
|
# If SIGN=RSA4096, use the below options
|
|
#WOLFBOOT_HUGE_STACK=1
|
|
#IMAGE_HEADER_SIZE=4096
|
|
|
|
# wolfHSM options
|
|
WOLFHSM_CLIENT=1
|
|
|
|
# sizes should be multiple of system page size
|
|
#WOLFBOOT_PARTITION_SIZE=0x40000
|
|
WOLFBOOT_PARTITION_SIZE=0x100000
|
|
WOLFBOOT_SECTOR_SIZE=0x1000
|
|
WOLFBOOT_PARTITION_BOOT_ADDRESS=0x80000
|
|
# if on external flash, it should be multiple of system page size
|
|
#WOLFBOOT_PARTITION_UPDATE_ADDRESS=0x100000
|
|
#WOLFBOOT_PARTITION_SWAP_ADDRESS=0x180000
|
|
WOLFBOOT_PARTITION_UPDATE_ADDRESS=0x180000
|
|
WOLFBOOT_PARTITION_SWAP_ADDRESS=0x280000
|
|
|
|
# required for keytools
|
|
WOLFBOOT_FIXED_PARTITIONS=1
|
|
|
|
# For debugging XMALLOC/XFREE
|
|
#CFLAGS_EXTRA+=-DWOLFBOOT_DEBUG_MALLOC
|