diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-10-16 16:46:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-10-16 16:46:06 +0000 |
commit | f259bcd8d5a99ce0ed211f53e3951aafef9117c9 (patch) | |
tree | 96c231467fc0b79dc78eaa46a83dd9886df80c5a /perl-install/c | |
parent | aa2734fea38df7d86302f199f437949ddb742ff1 (diff) | |
download | drakx-backup-do-not-use-f259bcd8d5a99ce0ed211f53e3951aafef9117c9.tar drakx-backup-do-not-use-f259bcd8d5a99ce0ed211f53e3951aafef9117c9.tar.gz drakx-backup-do-not-use-f259bcd8d5a99ce0ed211f53e3951aafef9117c9.tar.bz2 drakx-backup-do-not-use-f259bcd8d5a99ce0ed211f53e3951aafef9117c9.tar.xz drakx-backup-do-not-use-f259bcd8d5a99ce0ed211f53e3951aafef9117c9.zip |
initIMPS2: use /dev/mouse instead of /dev/cdrom (!)
Diffstat (limited to 'perl-install/c')
-rw-r--r-- | perl-install/c/stuff.xs.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index ce2977f40..60eb94b92 100644 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -89,7 +89,7 @@ void initIMPS2() { unsigned char imps2_s1[] = { 243, 200, 243, 100, 243, 80, }; unsigned char imps2_s2[] = { 246, 230, 244, 243, 100, 232, 3, }; - int fd = open("/dev/cdrom", O_WRONLY); + int fd = open("/dev/mouse", O_WRONLY); if (fd < 0) return; write (fd, imps2_s1, sizeof (imps2_s1)); |