blob: c58e7e5eb84623dc4902842ef9d20985c9a1f6c7 [file] [log] [blame]
Julian Hall82ce62a2022-09-13 09:00:45 +01001#-------------------------------------------------------------------------------
2# Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
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#-------------------------------------------------------------------------------
15add_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 Hallfa2c86d2022-09-30 12:17:14 +010022 "components/service/block_storage/config/gpt"
23 "components/media/disk"
24 "components/media/volume/index"
25 "components/media/volume/base_io_dev"
26 "components/media/volume/block_io_dev"
27 "components/common/crc32/native"
Julian Hall82ce62a2022-09-13 09:00:45 +010028)
29
30#-------------------------------------------------------------------------------
31# This infrastructure depends on platform specific drivers
32#
33#-------------------------------------------------------------------------------
34add_platform(TARGET "block-storage")