From d819c67150dfb8b79a862852bf0107c544cb9845 Mon Sep 17 00:00:00 2001 From: Shoudi Li Date: Wed, 21 Jan 2026 11:08:56 +0800 Subject: [PATCH] build-ubuntu-rootfs: remove efi=noruntime in cmdline The RTC driver probe is failing on the Hamoa EVK device due to the kernel parameter efi=noruntime which disabled access to UEFI Runtime Services, RTC driver requires to read a mandatory time offset variable. Signed-off-by: Shoudi Li --- rootfs/scripts/build-ubuntu-rootfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/scripts/build-ubuntu-rootfs.sh b/rootfs/scripts/build-ubuntu-rootfs.sh index 6acda3d..cd8562a 100755 --- a/rootfs/scripts/build-ubuntu-rootfs.sh +++ b/rootfs/scripts/build-ubuntu-rootfs.sh @@ -508,7 +508,7 @@ set timeout=5 menuentry \"Ubuntu ${CODENAME}\" { search --no-floppy --label system --set=root - linux /boot/vmlinuz-\$kernel_ver earlycon console=ttyMSM0,115200n8 root=LABEL=system cma=128M rw clk_ignore_unused pd_ignore_unused efi=noruntime rootwait ignore_loglevel + linux /boot/vmlinuz-\$kernel_ver earlycon console=ttyMSM0,115200n8 root=LABEL=system cma=128M rw clk_ignore_unused pd_ignore_unused rootwait ignore_loglevel initrd /boot/initrd.img-\$kernel_ver } GRUBCFG