init.sh: much more thorough locale initialisation

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-09-10 19:35:17 +01:00
parent 8c927b535d
commit 6050cdd1db
+17 -3
View File
@@ -5,9 +5,23 @@
# Copyright (c) 2020-2026 Leah Rowe <leah@libreboot.org>
# Copyright (c) 2025 Alper Nebi Yasak <alpernebiyasak@gmail.com>
export LANG=C.UTF-8
export LC_COLLATE=C.UTF-8
export LC_ALL=C.UTF-8
utf_8="C.UTF-8"
export LANG="$utf_8"
export LANGUAGE="$utf_8"
export LC_CTYPE="$utf_8"
export LC_NUMERIC="$utf_8"
export LC_TIME="$utf_8"
export LC_COLLATE="$utf_8"
export LC_MONETARY="$utf_8"
export LC_MESSAGES="$utf_8"
export LC_PAPER="$utf_8"
export LC_NAME="$utf_8"
export LC_ADDRESS="$utf_8"
export LC_TELEPHONE="$utf_8"
export LC_MEASUREMENT="$utf_8"
export LC_IDENTIFICATION="$utf_8"
export LC_ALL="$utf_8"
projectname="libreboot"
projectsite="https://libreboot.org/"