Date: Sat, 06 Aug 2005 18:32:06 -0300 From: Marcus Grando <marcus@corp.grupos.com.br> To: freebsd-current@freebsd.org Subject: FreeBSD installation and USB keyboard Message-ID: <42F52C56.90205@corp.grupos.com.br>
next in thread | raw e-mail | index | archive | help
Hi List,
In FreeBSD installation, USB keyboard don't work.
Proposed patch to sysinstall:
--- usb.c.orig Fri May 12 00:01:17 2000
+++ usb.c Sat Aug 6 18:23:12 2005
@@ -40,5 +40,11 @@
variable_set2("usbd_enable", "YES", 1);
vsystem("/stand/usbd");
+
+ if ((fd = open("/dev/ukbd0", O_RDONLY)) != -1) {
+ close(fd);
+ vsystem("kbdcontrol -k /dev/ukbd0 < /dev/console");
+ }
+
restorescr(w);
}
--
Marcus Grando
Grupos Internet S/A
marcus(at)corp.grupos.com.br
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?42F52C56.90205>
