Tool/software:
I have a CCS bootloader project for a AM243x MCU that we need to build with and without a custom devconfig.mak so that we can build using custom HS-SE keys
Is there a way to have two different binaries from the same make file that uses two different devconfig.mak files
I need to build my bootloader with the default devconfig.mak and with one the makes the following changes:
- Modified devconfig.mak
- Line 2: DEVICE_TYPE?=HS
- Line 22: CUST_MPK=devMpk_am64x_am243x.pem
- Line 23: CUST_MEK=devMek_am64x_am243x.txt
- Line 30: ENC_SBL_ENABLED?=no
- Custom devMek_am64x_am243x.txt file
- Custom devMpk_am64x_am243x.pem file
I could build two different projects, but I would rather generate both images from the same project.