From 40e9c49fcdd6bcf171a9c0666a52b03342df9eee Mon Sep 17 00:00:00 2001 From: Tommy Date: Sun, 19 May 2024 18:26:54 -0700 Subject: [PATCH] Check for /usr/lib/systemd/boot/efi Signed-off-by: Tommy --- Fedora-Server-40.sh | 2 +- Fedora-Workstation-40.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Fedora-Server-40.sh b/Fedora-Server-40.sh index 3c0e506..64810a7 100644 --- a/Fedora-Server-40.sh +++ b/Fedora-Server-40.sh @@ -76,7 +76,7 @@ sudo chmod 644 /etc/sysctl.d/30_security-misc_kexec-disable.conf sudo dracut -f sudo sysctl -p -if [ -d /boot/loader ]; then +if [ -d /usr/lib/systemd/boot/efi ]; then sudo sed -i 's/quiet root/quiet mitigations=auto,nosmt spectre_v2=on spec_store_bypass_disable=on tsx=off kvm.nx_huge_pages=force nosmt=force l1d_flush=on spec_rstack_overflow=safe-ret random.trust_bootloader=off random.trust_cpu=off intel_iommu=on amd_iommu=force_isolation efi=disable_early_pci_dma iommu=force iommu.passthrough=0 iommu.strict=1 slab_nomerge init_on_alloc=1 init_on_free=1 pti=on vsyscall=none ia32_emulation=0 page_alloc.shuffle=1 randomize_kstack_offset=on debugfs=off lockdown=confidentiality module.sig_enforce=1 console=tty0 console=ttyS0,115200 root/g' /etc/kernel/cmdline sudo dnf -y reinstall kernel-core else diff --git a/Fedora-Workstation-40.sh b/Fedora-Workstation-40.sh index 1371bc3..3eac6b9 100644 --- a/Fedora-Workstation-40.sh +++ b/Fedora-Workstation-40.sh @@ -88,7 +88,7 @@ sudo chmod 644 /etc/sysctl.d/30_security-misc_kexec-disable.conf sudo dracut -f sudo sysctl -p -if [ -d /boot/loader ]; then +if [ -d /usr/lib/systemd/boot/efi ]; then if [ "${parallels}" = "1" ]; then sudo sed -i 's/quiet root/quiet mitigations=auto,nosmt spectre_v2=on spec_store_bypass_disable=on tsx=off kvm.nx_huge_pages=force nosmt=force l1d_flush=on spec_rstack_overflow=safe-ret random.trust_bootloader=off random.trust_cpu=off intel_iommu=on amd_iommu=force_isolation efi=disable_early_pci_dma iommu=force iommu.passthrough=0 iommu.strict=1 slab_nomerge init_on_alloc=1 init_on_free=1 pti=on vsyscall=none ia32_emulation=0 page_alloc.shuffle=1 randomize_kstack_offset=on debugfs=off root/g' /etc/kernel/cmdline else