Skip to content

Commit 870503f

Browse files
committed
Larger block size on data partition
Fixes #76
1 parent 19a2477 commit 870503f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

tree/export-image/prerun.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ fi
7676
mkdosfs -n bootfs -F "$FAT_SIZE" -s 4 -v "$BOOT_DEV" > /dev/null
7777
mkfs.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

8181
mount -v "$ROOT_DEV" "${ROOTFS_DIR}" -t ext4
8282
mkdir -p "${ROOTFS_DIR}/boot/firmware"

0 commit comments

Comments
 (0)