Skip to content

Commit

Permalink
Fix UEFI
Browse files Browse the repository at this point in the history
  • Loading branch information
Ysurac committed Jan 7, 2019
1 parent f80f33d commit 68926d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patches/uefi.patch
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 68926d8

Please sign in to comment.