diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2017-03-12 13:55:49 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-03-12 13:55:49 -0500 |
commit | 5f5b1f7cbefd0bc14352e86a9c33260266f98d9b (patch) | |
tree | 11e03620a8f4dd162a83d81a85b8aeaefd46eb63 /init.d/sysfs.in | |
parent | cfdf56475e600f79a433cd721cadf39114c6c58d (diff) |
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.
Diffstat (limited to 'init.d/sysfs.in')
-rw-r--r-- | init.d/sysfs.in | 16 |
1 files 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 } |