1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
#!/bin/bash
# called by dracut
check() {
[[ "$mount_needs" ]] && return 1
require_binaries loadkeys setfont || return 1
return 0
}
# called by dracut
install() {
declare -A KEYMAPS
if dracut_module_included "systemd"; then
unset FONT
unset KEYMAP
# shellcheck disable=SC1090
[[ -f "${dracutsysrootdir-}"/etc/vconsole.conf ]] && . "${dracutsysrootdir-}"/etc/vconsole.conf
fi
KBDSUBDIRS=(consolefonts consoletrans keymaps unimaps)
DEFAULT_FONT="${i18n_default_font:-eurlatgr}"
I18N_CONF="/etc/locale.conf"
VCONFIG_CONF="/etc/vconsole.conf"
findkeymap() {
local -a MAPS
local MAPNAME
local INCLUDES
local MAP
local CMD
local FN
if [[ -f $1 ]]; then
MAPS=("$1")
else
MAPNAME=${1%.map*}
mapfile -t -d '' MAPS < <(
find "${dracutsysrootdir-}${kbddir}"/keymaps/ -type f,l \( -name "${MAPNAME}" -o -name "${MAPNAME}.map*" \) -print0
)
fi
for MAP in "${MAPS[@]}"; do
[[ -f $MAP ]] || continue
[[ -v KEYMAPS["$MAP"] ]] && continue
KEYMAPS["$MAP"]=1
case "$MAP" in
*.gz) CMD="zgrep" ;;
*.bz2) CMD="bzgrep" ;;
*) CMD="grep" ;;
esac
readarray -t INCLUDES < <("$CMD" '^include ' "$MAP" | while read -r _ a _ || [ -n "$a" ]; do echo "${a//\"/}"; done)
for INCL in "${INCLUDES[@]}"; do
local -a FNS
mapfile -t -d '' FNS < <(find "${dracutsysrootdir-}${kbddir}"/keymaps/ -type f -name "${INCL}*" -print0)
for FN in "${FNS[@]}"; do
[[ -f $FN ]] || continue
[[ -v KEYMAPS["$FN"] ]] || findkeymap "$FN"
done
done
done
}
# Function gathers variables from distributed files among the tree, maps to
# specified names and prints the result in format "new-name=value".
#
# $@ = list in format specified below (BNF notation)
#
# <list> ::= <element> | <element> " " <list>
# <element> ::= <conf-file-name> ":" <map-list>
# <map-list> ::= <mapping> | <mapping> "," <map-list>
# <mapping> ::= <src-var> "-" <dst-var> | <src-var>
#
# We assume no whitespace are allowed between symbols.
# <conf-file-name> is a file holding <src-var> in your system.
# <src-var> is a variable holding value of meaning the same as <dst-var>.
# <dst-var> is a variable which will be set up inside initramfs.
# If <dst-var> has the same name as <src-var> we can omit <dst-var>.
#
# Example:
# /etc/conf.d/keymaps:KEYMAP,extended_keymaps-EXT_KEYMAPS
# <list> = /etc/conf.d/keymaps:KEYMAP,extended_keymaps-EXT_KEYMAPS
# <element> = /etc/conf.d/keymaps:KEYMAP,extended_keymaps-EXT_KEYMAPS
# <conf-file-name> = /etc/conf.d/keymaps
# <map-list> = KEYMAP,extended_keymaps-EXT_KEYMAPS
# <mapping> = KEYMAP
# <src-var> = KEYMAP
# <mapping> = extended_keymaps-EXT_KEYMAPS
# <src-var> = extended_keymaps
# <dst-var> = EXT_KEYMAPS
gather_vars() {
local item map value
# FIXME: double check
# shellcheck disable=SC2068
for item in "$@"; do
read -r -a item <<< "${item/:/ }"
for map in ${item[1]//,/ }; do
read -r -a map <<< "${map//-/ }"
if [[ -f "${dracutsysrootdir-}${item[0]}" ]]; then
value=$(grep "^${map[0]}=" "${dracutsysrootdir-}${item[0]}")
value=${value#*=}
echo "${map[1]:-${map[0]}}=${value}"
fi
unset map
done
done
}
install_base() {
inst_multiple \
loadkeys \
setfont
inst_multiple -o \
kbd_mode \
stty
if [[ ${kbddir} != "/usr/share" ]]; then
inst_dir /usr/share
for _src in "${KBDSUBDIRS[@]}"; do
[ ! -e "${initdir}/usr/share/${_src}" ] && ln -s "${kbddir}/${_src}" "${initdir}/usr/share/${_src}"
done
fi
if dracut_module_included "systemd"; then
# https://github.com/dracutdevs/dracut/issues/796
[[ -f ${dracutsysrootdir-}${VCONFIG_CONF} ]] && inst_simple ${VCONFIG_CONF}
inst_rules 90-vconsole.rules
if [[ -e "${dracutsysrootdir-}$systemdsystemunitdir"/systemd-vconsole-setup.service ]]; then
inst_multiple -o \
"$systemdutildir"/systemd-vconsole-setup \
"$systemdsystemunitdir"/systemd-vconsole-setup.service \
"$systemdsystemunitdir"/sysinit.target.wants/systemd-vconsole-setup.service
fi
else
inst "${moddir}"/console_init.sh /lib/udev/console_init
inst_rules "${moddir}"/10-console.rules
inst_hook cmdline 20 "${moddir}/parse-i18n.sh"
fi
}
install_all_kbd() {
local _src _line
for _src in "${KBDSUBDIRS[@]}"; do
inst_dir "${kbddir}/$_src"
$DRACUT_CP -L -t "${initdir}/${kbddir}/$_src" "${dracutsysrootdir-}${kbddir}/$_src"/*
done
# remove unnecessary files
rm -f -- "${initdir}${kbddir}/consoletrans/utflist"
find "${initdir}${kbddir}/" -name README\* -delete
find "${initdir}${kbddir}/" -name '*.gz' -print -quit \
| while read -r _line || [ -n "$_line" ]; do
inst_multiple gzip
done
find "${initdir}${kbddir}/" -name '*.bz2' -print -quit \
| while read -r _line || [ -n "$_line" ]; do
inst_multiple bzip2
done
}
# get a command to decompress the given file
get_decompress_cmd() {
case "$1" in
*.gz) echo 'gzip -f -d' ;;
*.bz2) echo 'bzip2 -d' ;;
*.xz) echo 'xz -f -d' ;;
*.zst) echo 'zstd -f -d ' ;;
esac
}
# install function decompressing the target and handling symlinks
# $@ = list of compressed (gz or bz2) files or symlinks pointing to such files
#
# Function install targets in the same paths inside overlay but decompressed
# and without extensions (.gz, .bz2).
inst_decompress() {
local _src _cmd
for _src in "$@"; do
_cmd=$(get_decompress_cmd "${_src}")
[[ -z ${_cmd} ]] && return 1
inst_simple "${_src}"
# Decompress with chosen tool. We assume that tool changes name e.g.
# from 'name.gz' to 'name'.
${_cmd} "${initdir}${_src#"${dracutsysrootdir-}"}"
done
}
# It's similar to above, but if file is not compressed, performs standard
# install.
# $@ = list of files
inst_opt_decompress() {
local _src
for _src in "$@"; do
inst_decompress "${_src}" || inst "${_src}"
done
}
install_local_i18n() {
local map
local maplink
# shellcheck disable=SC2086
eval "$(gather_vars ${i18n_vars})"
# shellcheck disable=SC1090
[ -f "${dracutsysrootdir-}"$I18N_CONF ] && . "${dracutsysrootdir-}"$I18N_CONF
# shellcheck disable=SC1090
[ -f "${dracutsysrootdir-}"$VCONFIG_CONF ] && . "${dracutsysrootdir-}"$VCONFIG_CONF
if dracut_module_included "systemd" && [[ -f ${dracutsysrootdir-}${I18N_CONF} ]]; then
inst_simple ${I18N_CONF}
else
mksubdirs "${initdir}"${I18N_CONF}
print_vars LC_ALL LANG >> "${initdir}"${I18N_CONF}
fi
shopt -q -s nocasematch
if [[ ${UNICODE} ]]; then
if [[ ${UNICODE} == YES || ${UNICODE} == 1 ]]; then
UNICODE=1
elif [[ ${UNICODE} == NO || ${UNICODE} == 0 ]]; then
UNICODE=0
else
UNICODE=''
fi
fi
if [[ ! ${UNICODE} && ${LANG} =~ .*\.UTF-?8 ]]; then
UNICODE=1
fi
shopt -q -u nocasematch
# openSUSE user may have KEYMAP set to something like ".gz"
KEYMAP=${KEYMAP/.gz/}
# KEYTABLE is a bit special - it defines base keymap name and UNICODE
# determines whether non-UNICODE or UNICODE version is used
if [[ ${KEYTABLE} ]]; then
if [[ ${UNICODE} == 1 ]]; then
[[ ${KEYTABLE} =~ .*\.uni.* ]] || KEYTABLE=${KEYTABLE%.map*}.uni
fi
KEYMAP=${KEYTABLE}
fi
# I'm not sure of the purpose of UNIKEYMAP and GRP_TOGGLE. They were in
# original redhat-i18n module. Anyway it won't hurt.
EXT_KEYMAPS+=\ ${UNIKEYMAP}\ ${GRP_TOGGLE}
[[ ${KEYMAP} ]] || {
dinfo 'No KEYMAP configured.'
return 1
}
findkeymap "${KEYMAP}"
for map in ${EXT_KEYMAPS}; do
ddebug "Adding extra map: ${map}"
findkeymap "${map}"
done
for keymap in "${!KEYMAPS[@]}"; do
if [[ -L ${keymap} ]]; then
maplink=$(readlink -f "${keymap}")
# skip symlinked directories
[[ -d ${maplink} ]] && continue
inst_opt_decompress "${maplink}"
# create new symlink to decompressed keymap
maplink=${maplink%.gz}
keymap=${keymap%.gz}
ln -srn "${initdir}${maplink#"${dracutsysrootdir-}"}" "${initdir}${keymap#"${dracutsysrootdir-}"}"
else
inst_opt_decompress "${keymap}"
fi
done
inst_opt_decompress "${kbddir}"/consolefonts/"${DEFAULT_FONT}".*
if [[ ${FONT} ]] && [[ ${FONT} != "${DEFAULT_FONT}" ]]; then
if [[ -f "${kbddir}"/consolefonts/"${FONT}" ]]; then
inst_opt_decompress "${kbddir}"/consolefonts/"${FONT}"
else
FONT=${FONT%.psf*}
inst_opt_decompress "${kbddir}"/consolefonts/"${FONT}".*
fi
fi
if [[ ${FONT_MAP} ]]; then
FONT_MAP=${FONT_MAP%.trans}
# There are three different formats that setfont supports
inst_simple "${kbddir}"/consoletrans/"${FONT_MAP}" \
|| inst_simple "${kbddir}"/consoletrans/"${FONT_MAP}".trans \
|| inst_simple "${kbddir}"/consoletrans/"${FONT_MAP}"_to_uni.trans \
|| dwarn "Could not find FONT_MAP ${FONT_MAP}!"
fi
if [[ ${FONT_UNIMAP} ]]; then
FONT_UNIMAP=${FONT_UNIMAP%.uni}
inst_simple "${kbddir}"/unimaps/"${FONT_UNIMAP}".uni
fi
if ! dracut_module_included "systemd"; then
mksubdirs "${initdir}"${VCONFIG_CONF}
print_vars KEYMAP EXT_KEYMAPS UNICODE FONT FONT_MAP FONT_UNIMAP >> "${initdir}"${VCONFIG_CONF}
fi
return 0
}
checks() {
for kbddir in ${kbddir} /usr/lib/kbd /lib/kbd /usr/share /usr/share/kbd; do
if [[ -d "${dracutsysrootdir-}${kbddir}" ]]; then
for dir in "${KBDSUBDIRS[@]}"; do
[[ -d "${dracutsysrootdir-}${kbddir}/${dir}" ]] && continue
false
done && break
fi
kbddir=''
done
[[ "$kbddir" ]] || return 1
[[ -f ${dracutsysrootdir-}$I18N_CONF ]] \
|| [[ ! $hostonly || ${i18n_vars-} ]] || {
derror 'i18n_vars not set! Please set up i18n_vars in ' \
'configuration file.'
}
return 0
}
if checks; then
install_base
if [[ $hostonly ]] && ! [[ ${i18n_install_all} == "yes" ]]; then
install_local_i18n || install_all_kbd
else
install_all_kbd
fi
fi
}
|