board/common: enable unicode support with c.utf-8 locale

Set LANG=C.UTF-8 in finit.conf for system-wide coverage, in profile.d
for login shells, and in bash.bashrc for interactive shells to ensure
comprehensive Unicode support across all user interactions.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg
2025-11-20 12:00:04 +01:00
parent 442b572478
commit e110bd0743
3 changed files with 5 additions and 1 deletions
+2
View File
@@ -31,6 +31,8 @@ bind "set completion-ignore-case on"
# show all completions immediately instead of ringing bell
bind "set show-all-if-ambiguous on"
export LANG=C.UTF-8
log()
{
local fn="/var/log/syslog"
+2 -1
View File
@@ -1,2 +1,3 @@
set COLORTERM=yes
rlimit soft core infinity
set LANG=C.UTF-8
rlimit soft core infinity
@@ -3,6 +3,7 @@ alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
export LANG=C.UTF-8
export EDITOR=/usr/bin/edit
export VISUAL=/usr/bin/edit
export LESS="-P %f (press h for help or q to quit)"