Files
tangara-fw/tools/collate/mkcollator.sh
T
jacqueline 964da15a0b Add the collation partition to the build
Includes a small linux-only bash script to generate locale partitions
2024-05-03 12:37:23 +10:00

17 lines
369 B
Bash
Executable File

#!/bin/bash
set -eu
if [ -z "${2:-}" ]; then
name="Generic"
locale="iso14651_t1"
else
name="$1"
locale="$2"
fi
working_dir=$(mktemp -d)
echo -n "$name" | dd iflag=fullblock bs=8 count=1 conv=sync of="$working_dir/name"
localedef -f UTF-8 -i "$locale" --no-archive "$working_dir" || true
cat "$working_dir/name" "$working_dir/LC_COLLATE" > "$name.LC_COLLATE"