From 6bd4949a87287327e443074e973c64e91bab2724 Mon Sep 17 00:00:00 2001 From: m2 <69128853+m2Giles@users.noreply.github.com> Date: Tue, 12 Mar 2024 21:09:56 -0400 Subject: [PATCH] fix: make sure custom initramfs args are set --- system_files/desktop/shared/usr/libexec/bazzite-hardware-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_files/desktop/shared/usr/libexec/bazzite-hardware-setup b/system_files/desktop/shared/usr/libexec/bazzite-hardware-setup index ed42e70819..a06859af27 100755 --- a/system_files/desktop/shared/usr/libexec/bazzite-hardware-setup +++ b/system_files/desktop/shared/usr/libexec/bazzite-hardware-setup @@ -53,7 +53,7 @@ else # Rebuild current initramfs (this will add any new configs added to /etc/dracut.conf.d/) then reboot echo "Initramfs rebuild triggered, using: $INITRAMFS_BAZZITE_ARGS $INITRAMFS_CUSTOM_ARGS" plymouth display-message --text="Updating initramfs - Please wait, this may take a while" || true - rpm-ostree initramfs --enable "$INITRAMFS_BAZZITE_ARGS" "$INITRAMFS_CUSTOM_ARGS" --reboot + rpm-ostree initramfs --enable "${INITRAMFS_BAZZITE_ARGS} ${INITRAMFS_CUSTOM_ARGS}" --reboot exit 0 fi