Skip to content

Commit a13a1a8

Browse files
change sd to 8GB
1 parent fefcf67 commit a13a1a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
- name: Cross-compile kernel
2929
run: cd linux && make KERNEL=kernel8 ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- V=1 bcm2711_defconfig && make KERNEL=kernel8 ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- V=1 -j2 && make KERNEL=kernel8 ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- V=1 -j2 dtbs
3030
- name: Create installer.bin
31-
run: truncate -s 30768M installer.bin
31+
run: truncate -s 7946M installer.bin
3232
- name: Create loopback device
3333
run: sudo mknod -m 0660 /dev/loop254 b 7 254
3434
- name: Mount installer.bin as loopback device
3535
run: sudo losetup -P /dev/loop254 installer.bin
3636
- name: Create GPT disk label
3737
run: sudo parted /dev/loop254 mklabel msdos
3838
- name: Create BOOT partition
39-
run: sudo parted /dev/loop254 mkpart primary fat32 1 2048
39+
run: sudo parted /dev/loop254 mkpart primary fat32 1 1024
4040
- name: Create SYSTEM partition
41-
run: sudo parted /dev/loop254 mkpart primary ext2 2048 30768
41+
run: sudo parted /dev/loop254 mkpart primary ext2 1024 7946
4242
- name: Toogle boot flag on boot partition
4343
run: sudo parted /dev/loop254 set 1 boot on
4444
- name: Create BOOT filesystem

0 commit comments

Comments
 (0)