1#-------------------------------------------------------------------------------
2# Copyright (c) 2018-2021, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
8{
9  "description": "TF-M secure partition manifests",
10  "type": "manifest_list",
11  "version_major": 0,
12  "version_minor": 1,
13  "pid": 1000,
14  "manifest_list": [
15    {
16      "description": "Dummy Partition",
17      "short_name": "TFM_DP",
18      "manifest": "${APPLICATION_SOURCE_DIR}/dummy_partition/tfm_dummy_partition.yaml",
19      "output_path": "${TFM_BINARY_DIR}/dummy_partition",
20      "tfm_partition_ipc": true,
21      "version_major": 0,
22      "version_minor": 1,
23      "linker_pattern": {
24        "library_list": [
25           "*tfm_*partition_dp.*"
26         ],
27      }
28    },
29  ]
30}
31