From 07799f47b3906a6edb605225b5b45e173fd9dfc2 Mon Sep 17 00:00:00 2001 From: oddlama Date: Sun, 5 Jun 2022 13:20:14 +0200 Subject: [PATCH] fix: temporary workaround for dracut issue: Dracut changed parameter interpretation in a new version, causing this script to error out. To properly fix this, we require a resolution of dracutdevs/dracut#1835. Meanwhile, this is tracked internally by #41. --- scripts/main.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/main.sh b/scripts/main.sh index 5458ec4..a2301e2 100644 --- a/scripts/main.sh +++ b/scripts/main.sh @@ -135,9 +135,9 @@ function generate_initramfs() { kver="${kver#linux-}" # Generate initramfs + #--conf "/dev/null" \ + #--confdir "/dev/null" \ try dracut \ - --conf "/dev/null" \ - --confdir "/dev/null" \ --kver "$kver" \ --no-compress \ --no-hostonly \