Fix boot delay

This commit is contained in:
geens 2025-07-07 18:43:48 +02:00
parent fa0cd762ca
commit 4420a323db
4 changed files with 12 additions and 1 deletions

View File

@ -24,6 +24,9 @@ IMAGE_ROOTFS_SIZE ?= "1048576"
IMAGE_OVERHEAD_FACTOR = "1.1"
# Image formats
IMAGE_FSTYPES += "ext4 tar.bz2"
IMAGE_FSTYPES += "ext4 tar.bz2 wic"
# Custom WIC file without swap
WKS_FILE = "fcb-looper-noswap.wks"
LICENSE = "MIT"

View File

@ -0,0 +1,6 @@
# short-description: Create an EFI disk image for genericx86* without swap
# long-description: Creates a partitioned EFI disk image for genericx86* machines without swap partition
part /boot --source bootimg-efi --sourceparams="loader=grub-efi" --ondisk sda --label msdos --active --align 1024
part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid
bootloader --ptable gpt --timeout=5 --append="rootfstype=ext4 console=ttyS0,115200 console=tty0"

@ -0,0 +1 @@
Subproject commit 727811eaf256b88fd135be99559f2cbf14c82fce

@ -0,0 +1 @@
Subproject commit f84f64a5bd2fcab13292a54521bec6e12da94094