1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
From: Benjamin Drung <benjamin.drung@canonical.com>
Date: Tue, 7 Oct 2025 23:30:41 +0200
Subject: test: skip using kernel-install due to bug #1117563
The Dracut 12-uefi and 43-kernel-install test cases fail. dracut-core
ships /usr/lib/kernel/install.d/50-dracut.install which generates an
initrd in KERNEL_INSTALL_STAGING_AREA.
/usr/lib/kernel/install.d/55-initrd.install (coming from
debian/extra/kernel-install.d/55-initrd.install) then links to the
initrd in /boot. This results in two initrd being included in the UKI
and the content of later one overwrites the former one.
Forwarded: not-needed
---
test/TEST-12-UEFI/test.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/TEST-12-UEFI/test.sh b/test/TEST-12-UEFI/test.sh
index 7107dee..c9aab56 100755
--- a/test/TEST-12-UEFI/test.sh
+++ b/test/TEST-12-UEFI/test.sh
@@ -58,7 +58,8 @@ test_setup() {
mkdir -p "$TESTDIR"/ESP/EFI/BOOT "$TESTDIR"/dracut.conf.d
# This is the preferred way to build uki with dracut on a systemd based system
- if command -v kernel-install &> /dev/null \
+ # Skip using kernel-install due to https://bugs.debian.org/1117563
+ if false && command -v kernel-install &> /dev/null \
&& command -v systemctl &> /dev/null \
&& command -v ukify &> /dev/null; then
|