hc
2024-11-01 a01b5c9f91adaee088a817861603a5dbe14775c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
################################################################################
#
# Build the btrfs root filesystem image
#
################################################################################
 
BTRFS_SIZE = $(call qstrip,$(BR2_TARGET_ROOTFS_BTRFS_SIZE))
ifeq ($(BR2_TARGET_ROOTFS_BTRFS)-$(BTRFS_SIZE),y-)
$(error BR2_TARGET_ROOTFS_BTRFS_SIZE cannot be empty)
endif
 
BTRFS_SIZE_NODE = $(call qstrip,$(BR2_TARGET_ROOTFS_BTRFS_SIZE_NODE))
BTRFS_SIZE_SECTOR = $(call qstrip,$(BR2_TARGET_ROOTFS_BTRFS_SIZE_SECTOR))
BTRFS_FEATURES = $(call qstrip,$(BR2_TARGET_ROOTFS_BTRFS_FEATURES))
# qstrip results in stripping consecutive spaces into a single one. So the
# variable is not qstrip-ed to preserve the integrity of the string value.
BTRFS_LABEL = $(subst ",,$(BR2_TARGET_ROOTFS_BTRFS_LABEL))
# ")
 
BTRFS_OPTS = \
   -f \
   -r '$(TARGET_DIR)' \
   -L '$(BTRFS_LABEL)' \
   --byte-count '$(BTRFS_SIZE)' \
   $(if $(BTRFS_SIZE_NODE),--nodesize '$(BTRFS_SIZE_NODE)') \
   $(if $(BTRFS_SIZE_SECTOR),--sectorsize '$(BTRFS_SIZE_SECTOR)') \
   $(if $(BTRFS_FEATURES),--features '$(BTRFS_FEATURES)')
 
ROOTFS_BTRFS_DEPENDENCIES = host-btrfs-progs
 
define ROOTFS_BTRFS_CMD
   $(RM) -f $@
   $(HOST_DIR)/bin/mkfs.btrfs $(BTRFS_OPTS) $@
endef
 
$(eval $(rootfs))