From c967ded36ace32f6764f7650bb8f1a8f42c78b05 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 27 Jul 2009 09:09:12 -0400 Subject: Use keyboard bits from system-config-keyboard now system-config-keyboard has the keyboard bits now, so let's use those rather than the ones from rhpl --- anaconda | 2 +- anaconda.spec.in | 2 +- instdata.py | 2 +- scripts/getkeymaps | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/anaconda b/anaconda index 0db675507..12dcdd63d 100755 --- a/anaconda +++ b/anaconda @@ -776,7 +776,7 @@ if __name__ == "__main__": import instdata - import rhpl.keyboard as keyboard + import system_config_keyboard.keyboard as keyboard log.info("anaconda called with cmdline = %s" %(sys.argv,)) log.info("Display mode = %s" %(opts.display_mode,)) diff --git a/anaconda.spec.in b/anaconda.spec.in index 7dfa5c8c7..4f380a44a 100644 --- a/anaconda.spec.in +++ b/anaconda.spec.in @@ -115,7 +115,7 @@ Requires: mdadm Requires: lvm2 Requires: util-linux-ng >= 2.15.1 %ifnarch s390 s390x ppc64 -Requires: system-config-keyboard +Requires: system-config-keyboard >= 1.3.0 %endif Requires: hal, dbus-python Requires: cracklib-python diff --git a/instdata.py b/instdata.py index 488616ba9..6700528fd 100644 --- a/instdata.py +++ b/instdata.py @@ -40,7 +40,7 @@ import shlex from flags import * from constants import * from simpleconfig import SimpleConfigFile -import rhpl.keyboard as keyboard +import system_config_keyboard.keyboard as keyboard from pykickstart.version import versionToString, DEVEL diff --git a/scripts/getkeymaps b/scripts/getkeymaps index 2e003a771..8436900fc 100755 --- a/scripts/getkeymaps +++ b/scripts/getkeymaps @@ -51,7 +51,7 @@ else PATTERN=i386 fi -MAPS=$(python -c "import rhpl.keyboard_models ; rhpl.keyboard_models.get_supported_models()") +MAPS=$(python -c "import system_config_keyboard.keyboard_models ; system_config_keyboard.keyboard_models.get_supported_models()") for map in $MAPS ; do eval find /lib/kbd/keymaps/$PATTERN -name "$map.map*.gz" | while read n; do -- cgit