Julian Hall | 82ce62a | 2022-09-13 09:00:45 +0100 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
Julian Hall | 4a658ac | 2022-10-20 10:44:49 +0100 | [diff] [blame] | 2 | # Copyright (c) 2022-2023, Arm Limited and Contributors. All rights reserved. |
Julian Hall | 82ce62a | 2022-09-13 09:00:45 +0100 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | # A block-storage infrastructure for use on virtual platforms where storage |
| 7 | # is provided by file residing in the host's filesystem. If the file contains |
| 8 | # a GPT, it will be used to configure storage partitions. |
| 9 | #------------------------------------------------------------------------------- |
| 10 | |
| 11 | #------------------------------------------------------------------------------- |
| 12 | # Infrastructure components |
| 13 | # |
| 14 | #------------------------------------------------------------------------------- |
| 15 | add_components(TARGET "block-storage" |
| 16 | BASE_DIR ${TS_ROOT} |
| 17 | COMPONENTS |
| 18 | "components/service/block_storage/block_store/device" |
| 19 | "components/service/block_storage/block_store/device/semihosting" |
| 20 | "components/service/block_storage/block_store/partitioned" |
| 21 | "components/service/block_storage/factory/semihosting" |
Julian Hall | fa2c86d | 2022-09-30 12:17:14 +0100 | [diff] [blame] | 22 | "components/service/block_storage/config/gpt" |
| 23 | "components/media/disk" |
Julian Hall | 4a658ac | 2022-10-20 10:44:49 +0100 | [diff] [blame] | 24 | "components/media/volume" |
Julian Hall | fa2c86d | 2022-09-30 12:17:14 +0100 | [diff] [blame] | 25 | "components/media/volume/index" |
| 26 | "components/media/volume/base_io_dev" |
Julian Hall | 4a658ac | 2022-10-20 10:44:49 +0100 | [diff] [blame] | 27 | "components/media/volume/block_volume" |
Julian Hall | 82ce62a | 2022-09-13 09:00:45 +0100 | [diff] [blame] | 28 | ) |
| 29 | |
| 30 | #------------------------------------------------------------------------------- |
| 31 | # This infrastructure depends on platform specific drivers |
| 32 | # |
| 33 | #------------------------------------------------------------------------------- |
Balint Dobszay | 550ce87 | 2022-12-15 15:28:40 +0100 | [diff] [blame] | 34 | add_platform(TARGET "block-storage") |