File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ Unreleased]
9+
10+ ### Changed
11+
12+ - Data partition block-size now ~ 1Mib instead of 1KiB
13+ - Data partition reserved blocks for root to 1% instead of 5%
14+
815## [ 1.3.1] - 2025-03-25
916
1017### Changed
Original file line number Diff line number Diff line change 7676mkdosfs -n bootfs -F " $FAT_SIZE " -s 4 -v " $BOOT_DEV " > /dev/null
7777mkfs.ext4 -L rootfs -O " $ROOT_FEATURES " " $ROOT_DEV " > /dev/null
7878# not using ROOT_FEATURES to allow fs above 2TiB (huge_file) and 4TiB (64b)
79- mkfs.ext4 -L data " $DATA_DEV " > /dev/null
79+ mkfs.ext4 -T largefile -m 1 - L data " $DATA_DEV " > /dev/null
8080
8181mount -v " $ROOT_DEV " " ${ROOTFS_DIR} " -t ext4
8282mkdir -p " ${ROOTFS_DIR} /boot/firmware"
You can’t perform that action at this time.
0 commit comments