From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH 2/3] installer: Setup efivarfs when possible Date: Wed, 17 Nov 2021 20:09:55 +0000 Message-ID: <45fef2fb-1538-7107-a905-dff32849ed71@ipfire.org> In-Reply-To: <20211104090554.6510-2-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0104388929010892145==" List-Id: --===============0104388929010892145== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Peter M=C3=BCller > 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(+) >=20 > diff --git a/src/installer/dracut-module/module-setup.sh b/src/installer/dr= acut-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/d= racut-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 --===============0104388929010892145==--