From a5575a28f966b3eee1de9b01eb1a573a023881e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= Date: Wed, 1 May 2024 18:23:24 +0200 Subject: [PATCH] pmb: install: add options for default charset in vfat /boot partitions (MR 2304) linux-lts and linux-edge in alpine use "utf-8", that might change, but add the options regardless, so we can be safe (people can always edit them!) Fixes https://gitlab.com/postmarketOS/pmaports/-/issues/2782 [ci:skip-build]: already built successfully in CI --- pmb/install/_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index e500ac67..b6498bbd 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -784,7 +784,7 @@ def create_fstab(args, layout, suffix): boot_filesystem = args.deviceinfo["boot_filesystem"] or "ext2" if boot_filesystem in ("fat16", "fat32"): boot_filesystem = "vfat" - boot_options += ",umask=0077,nosymfollow" + boot_options += ",umask=0077,nosymfollow,codepage=437,iocharset=ascii" root_filesystem = pmb.install.get_root_filesystem(args) if root_filesystem == "btrfs":