- dracut-initrd-restore.patch: dracut-shutdown.service invokes dracut-initramfs-restore script which will never work in openSUSE because initrd images are named initrd not initramfs. Patch is from: Cristian Rodríguez <crrodriguez@opensuse.org> * Add 0164-Fix-initramfs-ver.img-vs-initrd-ver-in-dracut-initra.patch OBS-URL: https://build.opensuse.org/request/show/256764 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=196
29 lines
1017 B
Diff
29 lines
1017 B
Diff
From 76396977ee19d97697226bda13de007030433854 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
|
|
Date: Wed, 15 Oct 2014 17:50:36 +0200
|
|
Subject: Fix initramfs-$ver.img vs initrd-$ver in dracut-initramfs-restore.sh
|
|
|
|
dracut-shutdown.service invokes dracut-initramfs-restore script which
|
|
will never work in openSUSE because initrd images are named initrd not
|
|
initramfs.
|
|
---
|
|
dracut-initramfs-restore.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/dracut-initramfs-restore.sh b/dracut-initramfs-restore.sh
|
|
index 0dd1938..a3b7b1b 100644
|
|
--- a/dracut-initramfs-restore.sh
|
|
+++ b/dracut-initramfs-restore.sh
|
|
@@ -15,7 +15,7 @@ SKIP="$dracutbasedir/skipcpio"
|
|
if [[ $MACHINE_ID ]] && [[ -d /boot/${MACHINE_ID} || -L /boot/${MACHINE_ID} ]] ; then
|
|
IMG="/boot/${MACHINE_ID}/${KERNEL_VERSION}/initrd"
|
|
fi
|
|
-[[ -f $IMG ]] || IMG="/boot/initramfs-${KERNEL_VERSION}.img"
|
|
+[[ -f $IMG ]] || IMG="/boot/initrd-${KERNEL_VERSION}"
|
|
|
|
cd /run/initramfs
|
|
|
|
--
|
|
1.8.4.5
|
|
|