diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 15:32:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 15:32:13 +0000 |
commit | 946dce663736209dc0559d679478d394fa9d9575 (patch) | |
tree | 869332022645345ba13e3846a750b6f5eaf33f96 /rescue/make_rescue_img | |
parent | f5157061df8f26992e7968e221235842ec98aa0e (diff) | |
download | drakx-946dce663736209dc0559d679478d394fa9d9575.tar drakx-946dce663736209dc0559d679478d394fa9d9575.tar.gz drakx-946dce663736209dc0559d679478d394fa9d9575.tar.bz2 drakx-946dce663736209dc0559d679478d394fa9d9575.tar.xz drakx-946dce663736209dc0559d679478d394fa9d9575.zip |
- loadkeys file:
o handle new "kbd" rpm which have .map files instead of .kmap
o don't skip fr_CH-latin1
o handle "fr_CH"-like short names
Diffstat (limited to 'rescue/make_rescue_img')
-rwxr-xr-x | rescue/make_rescue_img | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/rescue/make_rescue_img b/rescue/make_rescue_img index 996025373..c35be4399 100755 --- a/rescue/make_rescue_img +++ b/rescue/make_rescue_img @@ -49,16 +49,17 @@ substInFile { s/DISTRIB_DESCR/$ENV{DISTRIB_DESCR}/ } "$tmp/etc/issue"; _ "../tools/install-xml-file-list list.xml $tmp"; my %keytable_conflicts; -my @less_important_keytables = qw(am_old am_phonetic no-dvorak fr_CH-latin1); +my @less_important_keytables = qw(am_old am_phonetic no-dvorak); foreach (keyboard::loadkeys_files()) { my ($dir, $fname) = (dirname($_), basename($_)); - my ($name) = $fname =~ /(.*)\.kmap\.gz/ or next; + my ($name) = $fname =~ /(.*)\.map\.gz/ or next; next if member($name, @less_important_keytables); - if (my ($short) = $name =~ m|(.+?)[\W_]|) { + if (my ($short2, $short) = $name =~ m|((.+?)[\W_][^\W_]*)|) { + $keytable_conflicts{$short} && $short2 ne $name and $short = $short2; $keytable_conflicts{$short} and warn("conflict between $keytable_conflicts{$short} and $name for short name $short (choosing the first)\n"), next; $keytable_conflicts{$short} = $name; # create the short name based on the long one - symlinkf($fname, "$tmp$dir/$short.kmap.gz"); + symlinkf($fname, "$tmp$dir/$short.map.gz"); } } |