diff options
author | Francois Pons <fpons@mandriva.com> | 2000-01-24 13:11:27 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-01-24 13:11:27 +0000 |
commit | fe0e92f4e338bd3ab690e409ff9ccde6cfe58780 (patch) | |
tree | 90162d89089414633e30308971a9e715f1b1363c /perl-install/Xconfigurator_consts.pm | |
parent | 9e683c898b6592aaac1196f76dd9321c4426c912 (diff) | |
download | drakx-fe0e92f4e338bd3ab690e409ff9ccde6cfe58780.tar drakx-fe0e92f4e338bd3ab690e409ff9ccde6cfe58780.tar.gz drakx-fe0e92f4e338bd3ab690e409ff9ccde6cfe58780.tar.bz2 drakx-fe0e92f4e338bd3ab690e409ff9ccde6cfe58780.tar.xz drakx-fe0e92f4e338bd3ab690e409ff9ccde6cfe58780.zip |
first sparc release of DrakX.
Diffstat (limited to 'perl-install/Xconfigurator_consts.pm')
-rw-r--r-- | perl-install/Xconfigurator_consts.pm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/perl-install/Xconfigurator_consts.pm b/perl-install/Xconfigurator_consts.pm index 4cb0d8730..11fee769d 100644 --- a/perl-install/Xconfigurator_consts.pm +++ b/perl-install/Xconfigurator_consts.pm @@ -540,6 +540,45 @@ $keyboardsection_part2 = ' # XkbDisable '; +if (arch() =~ /^sparc/) { + $keyboardsection_part3 = ' +# To customise the XKB settings to suit your keyboard, modify the +# lines below (which are the defaults). For example: +# XkbModel "type6" +# If you have a SUN keyboard, you may use: +# XkbModel "sun" +# +# Then to change the language, change the Layout setting. +# For example, a german layout can be obtained with: +# XkbLayout "de" +# or: +# XkbLayout "de" +# XkbVariant "nodeadkeys" +# +# If you\'d like to switch the positions of your capslock and +# control keys, use: +# XkbOptions "ctrl:swapcaps" + +# These are the default XKB settings for XFree86 on SUN: +# XkbRules "sun" +# XkbModel "type5_unix" +# XkbLayout "us" +# XkbCompat "compat/complete" +# XkbTypes "types/complete" +# XkbKeycodes "sun(type5)" +# XkbGeometry "sun(type5)" +# XkbSymbols "sun/us(sun5)" + + XkbRules "sun" + XkbModel "sun" + XkbLayout "us" + XkbCompat "compat/complete" + XkbTypes "types/complete" + XkbKeycodes "sun(type5)" + XkbGeometry "sun(type5)" + XkbSymbols "sun/us(sun5)" +'; +} else { $keyboardsection_part3 = ' # To customise the XKB settings to suit your keyboard, modify the # lines below (which are the defaults). For example, for a non-U.S. @@ -574,6 +613,7 @@ $keyboardsection_part3 = ' XkbRules "xfree86" XkbModel "pc101" '; +} $keyboardsection_end = ' EndSection |