From 43d19e3227679d1945f7b9740120828d878254c9 Mon Sep 17 00:00:00 2001 From: Davide Cavalca Date: Sat, 5 Nov 2022 15:39:06 +0000 Subject: [PATCH] Set ESP mount options to match what Fedora does Also see https://github.com/OSInside/kiwi/issues/2201 --- root/etc/fstab.script | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 root/etc/fstab.script diff --git a/root/etc/fstab.script b/root/etc/fstab.script new file mode 100755 index 0000000..adf95ab --- /dev/null +++ b/root/etc/fstab.script @@ -0,0 +1,3 @@ +#!/bin/sh + +gawk -i inplace '$2 == "/boot/efi" { $4 = $4",umask=0077,shortname=winnt" } { print $0 }' /etc/fstab