From 5f5b1f7cbefd0bc14352e86a9c33260266f98d9b Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sun, 12 Mar 2017 13:55:49 -0500 Subject: [PATCH] init.d/sysfs.in: efivarfs tweaks Since we check for /sys/firmware/efi/efivars, we do not need to check for /sys/firmware/efi Since Failing to mount efivarfs is not critical, we silence the error message from mount. --- init.d/sysfs.in | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/init.d/sysfs.in b/init.d/sysfs.in index 8030ea84..e493f584 100644 --- a/init.d/sysfs.in +++ b/init.d/sysfs.in @@ -98,16 +98,12 @@ mount_misc() fi # set up kernel support for efivarfs - # The presence of /sys/firmware/efi indicates that the system was - # booted in efi mode. - if [ -d /sys/firmware/efi ]; then - if [ -d /sys/firmware/efi/efivars ] && - ! mountinfo -q /sys/firmware/efi/efivars; then - ebegin "Mounting efivarfs filesystem" - mount -n -t efivarfs -o ${sysfs_opts} \ - efivarfs /sys/firmware/efi/efivars - eend $? - fi + if [ -d /sys/firmware/efi/efivars ] && + ! mountinfo -q /sys/firmware/efi/efivars; then + ebegin "Mounting efivarfs filesystem" + mount -n -t efivarfs -o ${sysfs_opts} \ + efivarfs /sys/firmware/efi/efivars 2> /dev/null + eend 0 fi }