1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 18:55:09 +03:00

Nuke update-kbd-map

Our version has evolved independently of the original table
in systemd-config-keyboard, so it cannot be ever regenerated from
original upstream. Remove script to avoid confusion.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2014-07-18 21:44:59 -04:00
parent e091457e82
commit 3fb97a58fa
2 changed files with 0 additions and 34 deletions

View File

@ -4438,9 +4438,6 @@ dist_pkgdata_DATA += \
dist_noinst_SCRIPT = \ dist_noinst_SCRIPT = \
src/locale/generate-kbd-model-map src/locale/generate-kbd-model-map
update-kbd-model-map: src/locale/generate-kbd-model-map
$PYTHON $< >src/locale/kbd-model-map
localectl_SOURCES = \ localectl_SOURCES = \
src/locale/localectl.c src/locale/localectl.c

View File

@ -1,31 +0,0 @@
import sys
import system_config_keyboard.keyboard_models
def strdash(s):
return s.strip() or '-'
def tab_extend(s, n=1):
s = strdash(s)
k = len(s) // 8
if k >= n:
f = 1
else:
f = n - k
return s + '\t'*f
models = system_config_keyboard.keyboard_models.KeyboardModels().get_models()
print "# Generated from system-config-keyboard's model list"
print "# consolelayout\t\txlayout\txmodel\t\txvariant\txoptions"
for key, value in reversed(models.items()):
options = "terminate:ctrl_alt_bksp"
if value[4]:
options += ',' + value[4]
print ''.join((tab_extend(key, 3), tab_extend(value[1]),
tab_extend(value[2], 2), tab_extend(value[3], 2),
options))