https://github.com/redhat-plumbers/dracut-rhel10/pull/30 And additonal fixes; respective commits: - fix(systemd-ask-password): do not half-install systemd-ask-password-wall - fix(pcsc): add libpcsclite_real.so.* Additional simple fixes. - revert: "fix(rescue): make rescue always no-hostonly" Do not use "add-confdir", as we do not package those configs. - fix(dracut-install): initize fts pointer Fix for compiler warning; https://github.com/dracut-ng/dracut-ng/pull/1229 - feat: add openssl module Needed for eDNS and fips. - build: make erofs the default requirement for squash subpackage Needed for squashfs removal. Resolves: RHEL-65204,RHEL-68935,RHEL-76323 From-source-git-commit: 9e216f2126a772e4b91b234c90d1debef797dced
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From ad4549b5e8fb66ee33126ba01bbb24f4801a3936 Mon Sep 17 00:00:00 2001
|
|
From: Pavel Valena <pvalena@redhat.com>
|
|
Date: Wed, 29 Jan 2025 20:25:03 +0100
|
|
Subject: [PATCH 11/13] revert: "fix(rescue): make rescue always no-hostonly"
|
|
|
|
This partly reverts commit 224c00914bfb4ba1dee48e094ebb137facfd5947.
|
|
|
|
Related: RHEL-65204
|
|
---
|
|
install.d/51-dracut-rescue.install | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/install.d/51-dracut-rescue.install b/install.d/51-dracut-rescue.install
|
|
index decee283..1be9b882 100755
|
|
--- a/install.d/51-dracut-rescue.install
|
|
+++ b/install.d/51-dracut-rescue.install
|
|
@@ -119,8 +119,8 @@ case "$COMMAND" in
|
|
|
|
if [[ ! -f "$BOOT_DIR_ABS/$INITRD" ]]; then
|
|
# shellcheck disable=SC2046
|
|
- dracut -f \
|
|
- --add-confdir rescue \
|
|
+ dracut -f --no-hostonly --no-uefi \
|
|
+ -a "rescue" \
|
|
$([[ $KERNEL_INSTALL_VERBOSE == 1 ]] && echo --verbose) \
|
|
--kver "$KERNEL_VERSION" \
|
|
"$BOOT_DIR_ABS/$INITRD"
|
|
--
|
|
2.47.1
|
|
|