Skip to content

Commit 58e2b85

Browse files
committed
Update rootfs and data partitions size.
This is needed as the full image with Node-RED would consume 100% data and would make the update command fail. Unfortunately this means that it is not possible to upgrade from 3.4.0 to 3.5.0 without re-flashing the SD Card as the partition-layout has changed.
1 parent d359110 commit 58e2b85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

meta/wic/chirpstack-gateway-os.wks

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# boot
22
part --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4096 --fixed-size 40
33
# rootfs a
4-
part --source rootfs --ondisk mmcblk0 --fstype=ext4 --label rootfs-a --align 4096 --fixed-size 512
4+
part --source rootfs --ondisk mmcblk0 --fstype=ext4 --label rootfs-a --align 4096 --fixed-size 1024
55
# rootfs b
6-
part --source rootfs --ondisk mmcblk0 --fstype=ext4 --label rootfs-b --align 4096 --fixed-size 512
6+
part --source rootfs --ondisk mmcblk0 --fstype=ext4 --label rootfs-b --align 4096 --fixed-size 1024
77
# data
8-
part --ondisk mmcblk0 --fstype=ext4 --label data --align 4096 --fixed-size 512
8+
part --ondisk mmcblk0 --fstype=ext4 --label data --align 4096 --fixed-size 1024

0 commit comments

Comments
 (0)