Skip to content

Commit

Permalink
Use optee-enabled ACRN binary for optee-enabled build
Browse files Browse the repository at this point in the history
Tracked-On: OAM-113418
Signed-off-by: Jiaqing Zhao <[email protected]>
  • Loading branch information
jiaqingz-intel committed Nov 16, 2023
1 parent 83256d0 commit f503ffd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/definitions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,18 @@ KF4SBL_SYMBOLS_ZIP := $(PRODUCT_OUT)/kf4sbl_symbols.zip
FB4SBL_SYMBOLS_ZIP := $(PRODUCT_OUT)/fb4sbl_symbols.zip

ifeq ($(TARGET_BUILD_VARIANT),user)
ifeq ($(TARGET_USE_OPTEE),true)
ACRN_BIN := $(TOP)/vendor/intel/acrn/sample_a/acrn.32.out.tee.release
else
ACRN_BIN := $(TOP)/vendor/intel/acrn/sample_a/acrn.32.out.release
endif
else
ifeq ($(TARGET_USE_OPTEE),true)
ACRN_BIN := $(TOP)/vendor/intel/acrn/sample_a/acrn.32.out.tee
else
ACRN_BIN := $(TOP)/vendor/intel/acrn/sample_a/acrn.32.out
endif
endif

ifeq ($(TARGET_BUILD_VARIANT),user)
OPTEE_BIN := $(TOP)/vendor/intel/optee/optee_release_binaries/release/tee.elf
Expand Down

0 comments on commit f503ffd

Please sign in to comment.