Julian Hall | f31da8e | 2023-01-17 10:10:29 +0000 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | # Includes components needed for deploying the fwu service provider |
| 7 | # within a secure partition. |
| 8 | #------------------------------------------------------------------------------- |
| 9 | |
| 10 | #------------------------------------------------------------------------------- |
| 11 | # Common components for fwu sp deployments |
| 12 | # |
| 13 | #------------------------------------------------------------------------------- |
| 14 | add_components(TARGET "fwu" |
| 15 | BASE_DIR ${TS_ROOT} |
| 16 | COMPONENTS |
| 17 | "components/common/fdt" |
| 18 | "components/common/trace" |
| 19 | "components/common/utils" |
Balint Dobszay | 550ce87 | 2022-12-15 15:28:40 +0100 | [diff] [blame] | 20 | "components/common/crc32" |
Julian Hall | f31da8e | 2023-01-17 10:10:29 +0000 | [diff] [blame] | 21 | "components/config/ramstore" |
| 22 | "components/config/loader/sp" |
| 23 | "components/messaging/ffa/libsp" |
| 24 | "components/rpc/common/interface" |
Imre Kis | 2a0d0e6 | 2023-07-04 18:00:53 +0200 | [diff] [blame] | 25 | "components/rpc/common/endpoint" |
| 26 | "components/rpc/ts_rpc/common" |
| 27 | "components/rpc/ts_rpc/endpoint/sp" |
Julian Hall | f31da8e | 2023-01-17 10:10:29 +0000 | [diff] [blame] | 28 | "components/service/common/provider" |
| 29 | "components/service/fwu/provider" |
Imre Kis | 86b1d67 | 2024-07-15 13:15:58 +0200 | [diff] [blame] | 30 | "components/service/fwu/provider/serializer" |
Julian Hall | f31da8e | 2023-01-17 10:10:29 +0000 | [diff] [blame] | 31 | ) |
| 32 | |
| 33 | target_sources(fwu PRIVATE |
| 34 | ${CMAKE_CURRENT_LIST_DIR}/fwu_sp.c |
| 35 | ) |