blob: 1f9ed2831c740cdd5c388a404f3297fc7adc3ae7 [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"
22)
23
24#-------------------------------------------------------------------------------
25# This infrastructure depends on platform specific drivers
26#
27#-------------------------------------------------------------------------------
28add_platform(TARGET "block-storage")