summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-07-29 19:45:30 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-07-29 19:45:30 +0000
commit3543e784946c745946c9a0b267ee450dbbd6456b (patch)
treeade993bea0d3ec5e2e2cebe12854e5ea497640d1 /perl-install/standalone
parent7173354fa6334e1f006af3eda4963a60ad42615d (diff)
downloaddrakx-backup-do-not-use-3543e784946c745946c9a0b267ee450dbbd6456b.tar
drakx-backup-do-not-use-3543e784946c745946c9a0b267ee450dbbd6456b.tar.gz
drakx-backup-do-not-use-3543e784946c745946c9a0b267ee450dbbd6456b.tar.bz2
drakx-backup-do-not-use-3543e784946c745946c9a0b267ee450dbbd6456b.tar.xz
drakx-backup-do-not-use-3543e784946c745946c9a0b267ee450dbbd6456b.zip
- fix using deprecated Xconfig.pm
- document dam's hack for test mouse - cleanup - don't bother reading XFree mouse config (using keep_auxmouse_unchanged of mouse::write_conf)
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-xperl-install/standalone/mousedrake60
1 files changed, 18 insertions, 42 deletions
diff --git a/perl-install/standalone/mousedrake b/perl-install/standalone/mousedrake
index f8bb9a02e..0388fd3cd 100755
--- a/perl-install/standalone/mousedrake
+++ b/perl-install/standalone/mousedrake
@@ -7,11 +7,10 @@ use standalone; #- warning, standalone must be loaded very first, for 'expla
use common;
use interactive;
use modules;
-use detect_devices;
-use Xconfig;
use mouse;
use c;
+
$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/;
local $_ = join '', @ARGV;
@@ -22,49 +21,25 @@ $::testing = /-testing/;
my $in = 'interactive'->vnew('su', 'mouse');
--r '/etc/modules.conf' and modules::mergein_conf('/etc/modules.conf');
-
undef $::Plug;
begin:
-my ($curr_env) = Xconfig::getinfoFromXF86Config('');
-my ($mouse) = mouse::detect() unless $::noauto;
-my $time_tag2;
-
-#- now try to merge $curr_env->{mouse} with $mouse.
-
-# Hack to read symlinks (when they are used in existing config):
-# This prevents mousedrake from doing stupid things like
-# ln -sf mouse /dev/mouse (this was done by me after it read
-# an old XF86Config, not -4, and found "/dev/mouse" there).
-# 2002 July 13, imz@altlinux.ru
-if ( $curr_env->{mouse}{device} eq "mouse" ) {
- $curr_env->{mouse}{device} =
- ( readlink "$prefix/dev/mouse"
- or ( log::l("reading $prefix/dev/mouse symlink failed"),
- $mouse->{device} ) );
-}
-if ( $curr_env->{mouse}{auxmouse}{device} eq "mouse1" ) {
- $curr_env->{mouse}{auxmouse}{device} =
- ( readlink "$prefix/dev/mouse1"
- or ( log::l("reading $prefix/dev/mouse1 symlink failed"),
- $mouse->{auxmouse}{device} ) );
+my $mouse = mouse::read();
+if (!$::noauto) {
+ my $probed_mouse = mouse::detect();
+ $mouse = $probed_mouse if !$mouse->{XMOUSETYPE} || !$probed_mouse->{unsafe};
}
-# End of the hack.
-
-$mouse->{XMOUSETYPE} eq $curr_env->{mouse}{XMOUSETYPE} ||
- $mouse->{XMOUSETYPE} eq 'PS/2' && ($curr_env->{mouse}{XMOUSETYPE} =~ m|PS/2| ||
- $curr_env->{mouse}{auxmouse}{XMOUSETYPE} =~ m|PS/2|) and $mouse = $curr_env->{mouse};
$::isEmbedded and kill USR2, $::CCPID;
if (!$mouse || !$::auto) {
$mouse ||= mouse::fullname2mouse("serial|Generic 2 Button Mouse");
if ($::isEmbedded && $in->isa('interactive::gtk')) {
- require my_gtk;
- my $time_tag = Gtk->timeout_add(100, sub {
- defined $::Plug && defined $::Plug->child or return 1;
- mouse::test_mouse_standalone($mouse,$::Plug->child);
- 0;
- });
+ #- HACK: waiting for the ask_from_treelistf to attach itself
+ #- and adding the nice test mouse to it
+ Gtk->timeout_add(100, sub {
+ defined $::Plug && defined $::Plug->child or return 1;
+ mouse::test_mouse_standalone($mouse,$::Plug->child);
+ 0;
+ });
}
my $name = $in->ask_from_treelistf('mousedrake', _("Please, choose the type of your mouse."), '|',
sub { join '|', map { translate($_) } split '\|', $_[0] },
@@ -73,11 +48,12 @@ if (!$mouse || !$::auto) {
Gtk->timeout_remove($time_tag2) if $::isEmbedded && $in->isa('interactive::gtk');
$name or $::isEmbedded ? do { kill(USR1, $::CCPID); goto begin } : $in->exit(0);
my $mouse_chosen = mouse::fullname2mouse($name);
- $mouse->{type} eq $mouse_chosen->{type} && $mouse->{name} eq $mouse_chosen->{name} or $mouse = $mouse_chosen;
+ $mouse = $mouse_chosen if !($mouse->{type} eq $mouse_chosen->{type} && $mouse->{name} eq $mouse_chosen->{name});
if ($mouse->{device} eq "usbmouse") {
- my ($c) = grep { $_->{driver} =~ /usb-[ou]hci/ } detect_devices::pci_probe(0) or die _("no serial_usb found\n");
- eval { modules::load($c->{driver}, "serial_usb") };
+ modules::mergein_conf('/etc/modules.conf') if -r '/etc/modules.conf';
+ modules::load_category('bus/usb') or die _("no serial_usb found\n");
+ eval { modules::load('serial_usb') };
}
$mouse->{XEMU3} = 'yes' if $mouse->{nbuttons} < 3 && (!$::noauto || $in->ask_yesorno('', _("Emulate third button?"), 1));
@@ -90,8 +66,8 @@ if (!$mouse || !$::auto) {
) || goto begin if $mouse->{type} eq 'serial';
}
-mouse::write_conf($mouse);
--e "/var/lock/subsys/gpm" and system "service", "gpm", "restart";
+mouse::write_conf($mouse, 1);
+system('service', 'gpm', 'restart') if -e '/var/lock/subsys/gpm';
$::isEmbedded ? kill(USR1, $::CCPID) : $in->exit(0);
goto begin;