From 68926d81beabd1596b762029ec0832f00f6dcb7b Mon Sep 17 00:00:00 2001 From: Ycarus Date: Mon, 7 Jan 2019 17:59:43 +0100 Subject: [PATCH] Fix UEFI --- patches/uefi.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/uefi.patch b/patches/uefi.patch index 6e270d66..8a7ae6ae 100644 --- a/patches/uefi.patch +++ b/patches/uefi.patch @@ -27,7 +27,7 @@ index 143ca5147b..83171b3ba9 100644 if export_bootdevice && export_partdevice partdev 1; then mkdir -p /boot - mount -t ext4 -o rw,noatime "/dev/$partdev" /boot -+ mount -t vfat -o rw,noatime "/dev/$partdev" /boot ++ mount -o rw,noatime "/dev/$partdev" /boot if [ -f /boot/sysupgrade.tgz ]; then mv -f /boot/sysupgrade.tgz / fi @@ -40,7 +40,7 @@ index d3e9f360aa..b475fd5435 100644 if export_partdevice partdev 1; then - mount -t ext4 -o rw,noatime "/dev/$partdev" /mnt -+ mount -t vfat -o rw,noatime "/dev/$partdev" /mnt ++ mount -o rw,noatime "/dev/$partdev" /mnt cp -af "$CONF_TAR" /mnt/ umount /mnt fi