From c3394d87b44619e4d98625e343b9cda12efa4ea3 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 17 Sep 2013 12:29:47 +0200 Subject: [PATCH] remove blacklisting efivars, efivarfs code, standard kernel includes efivarfs in kernel --- usr/share/archboot/installer/setup | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/usr/share/archboot/installer/setup b/usr/share/archboot/installer/setup index 30b394931..2f96fdec5 100755 --- a/usr/share/archboot/installer/setup +++ b/usr/share/archboot/installer/setup @@ -3298,23 +3298,6 @@ detect_uefi_boot() { fi detect_uefi_secure_boot - - if [[ "${_DETECTED_UEFI_BOOT}" == "1" ]]; then - if [[ "${_DETECTED_EFIVARFS}" == "1" ]]; then - if [[ ! "$(grep 'blacklist efivars' "${DESTDIR}/etc/modprobe.d/modprobe.conf")" ]]; then - echo 'blacklist efivars' >> "${DESTDIR}/etc/modprobe.d/modprobe.conf" - fi - fi - - if [[ ! "$(grep 'blacklist efi_pstore' "${DESTDIR}/etc/modprobe.d/modprobe.conf")" ]]; then - echo 'blacklist efi_pstore' >> "${DESTDIR}/etc/modprobe.d/modprobe.conf" - fi - - if [[ ! "$(grep 'options efi_pstore pstore_disable=1' "${DESTDIR}/etc/modprobe.d/modprobe.conf")" ]]; then - echo 'options efi_pstore pstore_disable=1' >> "${DESTDIR}/etc/modprobe.d/modprobe.conf" - fi - fi - } detect_uefi_secure_boot() {