Commit 122c11d9 authored by Anton Midyukov's avatar Anton Midyukov

l10n: drop variable XKB_LED, XKB_VARIANTS

Not sure if they will work in config 00-keyboard.conf It looks like no one has ever used them in mimage-profiles. Therefore, their loss should not be noticed.
parent 123cf5bb
...@@ -14,19 +14,14 @@ use/l10n: ...@@ -14,19 +14,14 @@ use/l10n:
@$(call xport,LOCALE) @$(call xport,LOCALE)
@$(call xport,LOCALES) @$(call xport,LOCALES)
@$(call xport,XKB_KEYMAPS) @$(call xport,XKB_KEYMAPS)
@$(call xport,XKB_VARIANTS)
@$(call xport,XKB_SWITCH) @$(call xport,XKB_SWITCH)
@$(call xport,XKB_LED)
# see also alterator-sysconfig backend # see also alterator-sysconfig backend
use/l10n/xkb/switch/ctrl_shift: use/l10n use/l10n/xkb/switch/ctrl_shift: use/l10n
@$(call set,XKB_SWITCH,grp:ctrl_shift_toggle) @$(call set,XKB_SWITCH,grp:ctrl_shift_toggle)
use/l10n/xkb/led/scroll: use/l10n
@$(call set,XKB_LED,grp_led:scroll)
# FIXME: derive from locale by default if possible # FIXME: derive from locale by default if possible
use/l10n/ru_RU: use/l10n/xkb/switch/ctrl_shift use/l10n/xkb/led/scroll use/l10n/ru_RU: use/l10n/xkb/switch/ctrl_shift
@$(call add,LOCALES,ru_RU) @$(call add,LOCALES,ru_RU)
@$(call set,LOCALE,ru_RU) @$(call set,LOCALE,ru_RU)
@$(call add,XKB_KEYMAPS,ru) @$(call add,XKB_KEYMAPS,ru)
......
...@@ -9,8 +9,8 @@ if [ ! -d "$PREFIX" ]; then ...@@ -9,8 +9,8 @@ if [ ! -d "$PREFIX" ]; then
exit 0 exit 0
fi fi
if [ -z "$GLOBAL_XKB_VARIANTS" -o -z "$GLOBAL_XKB_KEYMAPS" ]; then if [ -z "$GLOBAL_XKB_KEYMAPS" ]; then
echo "** l10n-xkb: empty GLOBAL_XKB_VARIANTS/GLOBAL_XKB_KEYMAPS" >&2 echo "** l10n-xkb: empty GLOBAL_XKB_KEYMAPS" >&2
exit 0 exit 0
fi fi
...@@ -19,7 +19,6 @@ Section "InputClass" ...@@ -19,7 +19,6 @@ Section "InputClass"
Identifier "system-keyboard" Identifier "system-keyboard"
MatchIsKeyboard "on" MatchIsKeyboard "on"
Option "XkbLayout" "$GLOBAL_XKB_KEYMAPS" Option "XkbLayout" "$GLOBAL_XKB_KEYMAPS"
Option "XkbOptions" "$GLOBAL_XKB_SWITCH${GLOBAL_XKB_LED:+,$GLOBAL_XKB_LED} \ Option "XkbOptions" "$GLOBAL_XKB_SWITCH"
${GLOBAL_XKB_VARIANTS:+-variant $GLOBAL_XKB_VARIANTS}"
EndSection EndSection
EOF EOF
...@@ -2,14 +2,7 @@ ...@@ -2,14 +2,7 @@
XKB_KEYMAPS := $(subst $(SPACE),$(COMMA),$(XKB_KEYMAPS)) XKB_KEYMAPS := $(subst $(SPACE),$(COMMA),$(XKB_KEYMAPS))
# handle the layouts with a specific variant in the wild
XKB_VARIANTS := $(subst ru,winkeys, \
$(subst ua,winkeys, \
$(subst be,winkeys, \
$(subst us,,$(XKB_KEYMAPS)))))
debug:: debug::
@echo "** live: LOCALES: $(LOCALES)" @echo "** live: LOCALES: $(LOCALES)"
@echo "** live: LOCALE: $(LOCALE)" @echo "** live: LOCALE: $(LOCALE)"
@echo "** live: XKB_KEYMAPS: $(XKB_KEYMAPS)" @echo "** live: XKB_KEYMAPS: $(XKB_KEYMAPS)"
@echo "** live: XKB_VARIANTS: $(XKB_VARIANTS)"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment