bump version to 2022.02.9

add miyoo_defconfig
This commit is contained in:
tiopex
2023-01-31 13:11:45 +01:00
parent 1fa746c353
commit dcdaa3599c
8423 changed files with 184305 additions and 91107 deletions

View File

@@ -11,4 +11,14 @@ config BR2_TARGET_ROOTFS_EROFS_LZ4HC
help
Use lz4 high-compression to compress data in the filesystem.
config BR2_TARGET_ROOTFS_EROFS_PCLUSTERSIZE
int "pcluster size"
default 0
help
Specify the maximum size of physical cluster in bytes, as a
multiple of 4KiB, for the big pcluster feature in order to
get much better compression ratios (thus better sequential
read performance for common storage devices), which has been
introduced since Linux 5.13.
endif # BR2_TARGET_ROOTFS_EROFS

View File

@@ -10,6 +10,16 @@ ifeq ($(BR2_TARGET_ROOTFS_EROFS_LZ4HC),y)
ROOTFS_EROFS_ARGS += -zlz4hc
endif
ifeq ($(BR2_REPRODUCIBLE),y)
ROOTFS_EROFS_ARGS += \
-T $(SOURCE_DATE_EPOCH) \
-U 00000000-0000-0000-0000-000000000000
endif
ifneq ($(BR2_TARGET_ROOTFS_EROFS_PCLUSTERSIZE),0)
ROOTFS_EROFS_ARGS += -C$(strip $(BR2_TARGET_ROOTFS_EROFS_PCLUSTERSIZE))
endif
define ROOTFS_EROFS_CMD
$(HOST_DIR)/bin/mkfs.erofs $(ROOTFS_EROFS_ARGS) $@ $(TARGET_DIR)
endef