diff options
author | jhb <jhb@FreeBSD.org> | 2000-05-12 03:01:17 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-05-12 03:01:17 +0000 |
commit | 1ec3688bd005be0ac734c873c8de9e941e8ee02c (patch) | |
tree | d77f0c1a643acb787894f1743d1bbcf6fb5abc70 /usr.sbin/sade/main.c | |
parent | c97d9a50e81a6408372441d5846eacb938a646db (diff) | |
download | FreeBSD-src-1ec3688bd005be0ac734c873c8de9e941e8ee02c.zip FreeBSD-src-1ec3688bd005be0ac734c873c8de9e941e8ee02c.tar.gz |
Add support for USB to sysinstall. This includes running usbd and
setting 'usbd_enable' in rc.conf during nwe installs if USB is detected.
Also, since usbd already handles USB mice automatically, note that the
mouse setup section in sysinstall only applies to non-USB mice.
Diffstat (limited to 'usr.sbin/sade/main.c')
-rw-r--r-- | usr.sbin/sade/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.sbin/sade/main.c b/usr.sbin/sade/main.c index 885b6cb..1fde541 100644 --- a/usr.sbin/sade/main.c +++ b/usr.sbin/sade/main.c @@ -90,6 +90,9 @@ main(int argc, char **argv) /* Initialize PC-card */ pccardInitialize(); + /* Initialize USB */ + usbInitialize(); + /* Probe for all relevant devices on the system */ deviceGetAll(); |