diff --git a/configs/machines/09.02.00.010.toml b/configs/machines/09.02.00.010.toml index afa7da4..d6e44b0 100644 --- a/configs/machines/09.02.00.010.toml +++ b/configs/machines/09.02.00.010.toml @@ -4,7 +4,7 @@ # u-boot config atf_target_board = "lite" atf_make_args="K3_PM_SYSTEM_SUSPEND=1" - optee_platform = "k3-am62x" + optee_platform = "k3-am62px" optee_make_args = "CFG_WITH_SOFTWARE_PRNG=y CFG_TEE_CORE_LOG_LEVEL=1" uboot_r5_defconfig = "am62px_evm_r5_defconfig" uboot_a53_defconfig = "am62px_evm_a53_defconfig" diff --git a/configs/machines/10.01.08.02.toml b/configs/machines/10.01.08.02.toml index af38811..e744e58 100644 --- a/configs/machines/10.01.08.02.toml +++ b/configs/machines/10.01.08.02.toml @@ -4,7 +4,7 @@ # u-boot config atf_target_board = "lite" atf_make_args="K3_PM_SYSTEM_SUSPEND=1" - optee_platform = "k3-am62x" + optee_platform = "k3-am62px" optee_make_args = "CFG_WITH_SOFTWARE_PRNG=y CFG_TEE_CORE_LOG_LEVEL=1" uboot_r5_defconfig = "am62px_evm_r5_defconfig" uboot_a53_defconfig = "am62px_evm_a53_defconfig" diff --git a/scripts/build_bsp.sh b/scripts/build_bsp.sh index 1d420a3..cf6c0c9 100755 --- a/scripts/build_bsp.sh +++ b/scripts/build_bsp.sh @@ -122,7 +122,7 @@ bsp_version=$2 fi log "> optee: building .." - make -j`nproc` CROSS_COMPILE64=${cross_compile} CROSS_COMPILE=arm-none-linux-gnueabihf- PLATFORM=${platform} CFG_ARM64_core=y ${make_args} &>>"${LOG_FILE}" + make -j`nproc` CROSS_COMPILE64=${cross_compile} CROSS_COMPILE=arm-none-linux-gnueabihf- PLATFORM=${platform} CFG_ARM64_core=y ${make_args[*]} &>>"${LOG_FILE}" } function build_uboot() { diff --git a/scripts/common.sh b/scripts/common.sh index c45d253..36ec811 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -12,7 +12,7 @@ function read_config() { value=($(toml get common.${param} --toml-path ${config_file})) fi - echo "${value}" + echo "${value[*]}" } function read_machine_config() {