]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/install+setup/install/usb.c
Neue Hardwareerkennung im Installer...
[people/teissler/ipfire-2.x.git] / src / install+setup / install / usb.c
CommitLineData
d6aaa55d
MT
1/*
2 * This file is part of the IPCop Firewall.
3 *
4 * IPCop is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * IPCop is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with IPCop; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Copyright 2002: Mark Wormgoor <mark@wormgoor.com>
19 *
d6aaa55d
MT
20 */
21
22#include "install.h"
23
24int usbuhci = 0;
25int usbohci = 0;
26int ehcihcd = 0;
27
28int initialize_usb() {
10bc6f06
MT
29 mysystem("/sbin/modprobe sd_mod");
30 mysystem("/sbin/modprobe sr_mod");
31 mysystem("/sbin/modprobe usb-storage");
d6aaa55d
MT
32
33 if (ehcihcd) {
10bc6f06 34 mysystem("/sbin/rmmod ehci-hcd");
d6aaa55d
MT
35 ehcihcd = 0;
36 }
37 if (usbohci) {
3d6e1202 38 mysystem("/sbin/rmmod ohci-hcd");
d6aaa55d
MT
39 usbohci = 0;
40 }
41 if (usbuhci) {
3d6e1202 42 mysystem("/sbin/rmmod uhci-hcd");
d6aaa55d
MT
43 usbuhci = 0;
44 }
45
10bc6f06
MT
46 if (mysystem("/sbin/modprobe ehci-hcd") == 0)
47 ehcihcd = 1;
3d6e1202 48 if (mysystem("/sbin/modprobe ohci-hcd") == 0)
10bc6f06 49 usbohci = 1;
3d6e1202 50 if (mysystem("/sbin/modprobe uhci-hcd") == 0)
10bc6f06 51 usbuhci = 1;
d6aaa55d 52
3d6e1202 53 mysystem("/sbin/modprobe usbhid");
4809e64e 54 mysystem("udevstart");
d6aaa55d
MT
55 return 0;
56}
57
58int write_usb_modules_conf() {
10bc6f06 59 int index;
d6aaa55d
MT
60 FILE *handle;
61
62 if (!(handle = fopen("/harddisk/etc/modules.conf", "a")))
63 return 0;
64
10bc6f06
MT
65 index = 0;
66
d6aaa55d
MT
67#if 0 /* we don't do this yet, because one of the drivers has a problem
68 * with it */
69 if (ehcihcd) {
d6aaa55d 70 if (index)
10bc6f06
MT
71 fprintf(handle,"alias usb-controller%d ehci-hcd\n",index);
72 else
73 fprintf(handle,"alias usb-controller ehci-hcd\n");
d6aaa55d
MT
74 index++;
75 }
76#endif
77
78 if (usbohci) {
d6aaa55d 79 if (index)
3d6e1202 80 fprintf(handle,"alias usb-controller%d ohci-hcd\n",index);
10bc6f06 81 else
3d6e1202 82 fprintf(handle,"alias usb-controller ohci-hcd\n");
d6aaa55d
MT
83 index++;
84 }
85
86 if (usbuhci) {
d6aaa55d 87 if (index)
3d6e1202 88 fprintf(handle,"alias usb-controller%d uhci-hcd\n",index);
10bc6f06 89 else
3d6e1202 90 fprintf(handle,"alias usb-controller uhci-hcd\n");
d6aaa55d
MT
91 index++;
92 }
93 fclose(handle);
94
95 return 0;
96}