Fix boot delay

This commit is contained in:
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"