From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 2/3] installer: Setup efivarfs when possible Date: Thu, 04 Nov 2021 09:05:53 +0000 Message-ID: <20211104090554.6510-2-michael.tremer@ipfire.org> In-Reply-To: <20211104090554.6510-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5477423489522156273==" List-Id: --===============5477423489522156273== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- src/installer/dracut-module/module-setup.sh | 1 + src/installer/dracut-module/run-installer.sh | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/src/installer/dracut-module/module-setup.sh b/src/installer/drac= ut-module/module-setup.sh index 29ec4c0d7..9c3a5d03e 100755 --- a/src/installer/dracut-module/module-setup.sh +++ b/src/installer/dracut-module/module-setup.sh @@ -23,6 +23,7 @@ install() { =20 # Kernel drivers instmods =3Ddrivers/hid + instmods efivarfs =20 # Network drivers instmods =3Ddrivers/net/ethernet =3Ddrivers/net/usb diff --git a/src/installer/dracut-module/run-installer.sh b/src/installer/dra= cut-module/run-installer.sh index 33c8c4b10..755de1d3a 100644 --- a/src/installer/dracut-module/run-installer.sh +++ b/src/installer/dracut-module/run-installer.sh @@ -8,6 +8,11 @@ if grep -q "installer.unattended" /proc/cmdline; then unattended=3D1 fi =20 +# Mount efivarfs on EFI systems +if [ -d "/sys/firmware/efi" ]; then + mount -t efivarfs efivarfs /sys/firmware/efi/efivars +fi + # Enable Unicode echo -en '\033%G' && kbd_mode -u =20 --=20 2.20.1 --===============5477423489522156273==--