mirror of
git://soft.sys114.com/odroid-stamper
synced 2025-12-19 01:48:42 +09:00
Signed-off-by: Dongjin Kim <tobetter@gmail.com> Change-Id: I10c9bb920051918293423e40ce3c2bd920d419ed
8 lines
103 B
Bash
Executable File
8 lines
103 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f /usr/sbin/locale-gen ]; then
|
|
apt update && apt install -y locales
|
|
fi
|
|
|
|
locale-gen
|