Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into origin/release/1.8.x
Browse files Browse the repository at this point in the history
Create a merge commit so that the RC1 tag appears correctly in release/1.8.x

Signed-off-by: Antonio de Angelis <antonio.deangelis@arm.com>
Change-Id: I1a7d6cd9adbc010a866812e0e3871a7032cdc4f5
  • Loading branch information
adeaarm committed Apr 7, 2023
2 parents 8a7ce5c + 174f836 commit 92fd3a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
5 changes: 1 addition & 4 deletions cmake/install.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,4 @@ endif()
include(${CMAKE_SOURCE_DIR}/lib/ext/tf-m-tests/install.cmake)

##################### Platform-specific installation ###########################

if (EXISTS ${TARGET_PLATFORM_PATH}/install.cmake)
include(${TARGET_PLATFORM_PATH}/install.cmake)
endif()
include(${TARGET_PLATFORM_PATH}/install.cmake OPTIONAL)
4 changes: 1 addition & 3 deletions config/check_config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,4 @@ include(config/cp_check.cmake)

###################### Platform-specific checks ################################

if (EXISTS ${TARGET_PLATFORM_PATH}/check_config.cmake)
include(${TARGET_PLATFORM_PATH}/check_config.cmake)
endif()
include(${TARGET_PLATFORM_PATH}/check_config.cmake OPTIONAL)
4 changes: 1 addition & 3 deletions config/post_config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
include(config/config_base.cmake)

# Load regression configs overrided by platform
if(EXISTS ${TARGET_PLATFORM_PATH}/reg_config_override.cmake)
include(${TARGET_PLATFORM_PATH}/reg_config_override.cmake)
endif()
include(${TARGET_PLATFORM_PATH}/reg_config_override.cmake OPTIONAL)

# Fetch tf-m-tests repo during config, if NS or regression test is required.
# Therefore tf-m-tests configs can be set with TF-M configs since their configs
Expand Down
8 changes: 2 additions & 6 deletions config/set_config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,10 @@ endif()

# Load build type config, setting options not already set
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWERCASE)
if(EXISTS ${CMAKE_SOURCE_DIR}/config/build_type/${CMAKE_BUILD_TYPE_LOWERCASE}.cmake)
include(${CMAKE_SOURCE_DIR}/config/build_type/${CMAKE_BUILD_TYPE_LOWERCASE}.cmake)
endif()
include(${CMAKE_SOURCE_DIR}/config/build_type/${CMAKE_BUILD_TYPE_LOWERCASE}.cmake OPTIONAL)

# Load platform config, setting options not already set
if(EXISTS ${TARGET_PLATFORM_PATH}/config.cmake)
include(${TARGET_PLATFORM_PATH}/config.cmake)
endif()
include(${TARGET_PLATFORM_PATH}/config.cmake OPTIONAL)

# Parse tf-m-tests config prior to platform specific config.cmake
# Some platforms select different configuration according when regression tests
Expand Down

0 comments on commit 92fd3a4

Please sign in to comment.