blob: 656cefa197a2594e275514449c6c782b37417e06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
From 6658bee44645724c17f6b41ab0cf146e5e0c0248 Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Wed, 1 Feb 2017 04:18:53 +0000
Subject: [PATCH 6/7] mount efivars read-only
unintentional writes to efivars may result in bricked hardware. mount it
read-only to play safe.
---
init.d/sysfs.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init.d/sysfs.in b/init.d/sysfs.in
index 6d6ec62c..235aebc3 100644
--- a/init.d/sysfs.in
+++ b/init.d/sysfs.in
@@ -111,7 +111,7 @@ mount_misc()
! mountinfo -q /sys/firmware/efi/efivars; then
if grep -qs efivarfs /proc/filesystems; then
ebegin "Mounting efivarfs filesystem"
- mount -n -t efivarfs -o ${sysfs_opts} \
+ mount -n -t efivarfs -o ro,${sysfs_opts} \
efivarfs /sys/firmware/efi/efivars
eend $?
fi
--
2.11.0
|