* Ruediger Noack <[EMAIL PROTECTED]> [21-08-02 22:43]: > Ich will einfach nicht glauben, dass ich eine Quelldatei f�r > modules.conf unter /etc/modutils von Hand anlegen muss.
Hallo Ruediger,
die meisten Programme sollten das selbst�ndig tun.
z.B. in den postinst-Skripten:
# Automatically added by dh_installmodules
if [ "$1" = "configure" -a -x /sbin/update-modules ]; then
update-modules
fi
# End automatically added section
Daran siehst du schon, dass eigene Eintr�ge in der
/etc/modules.conf nicht lange Bestand haben.
Dann lieber gleich eine Datei unter /etc/modutils anlegen
und dann update-modules starten.
Hier mal ein Beispiel f�r meinen Scanner:
$ cat /etc/modutils/scanner
# Aliase fuer Scanner und Scsi_Hostadapter
alias scsi_hostadapter aha152x
options aha152x aha152x=0x140,11,6,1,1,0,0,0
alias char-major-21 sg
post-install sg echo "scsi add-single-device 1 0 0 0" >/proc/scsi/scsi
$ grep -5 "options aha152x" /etc/modules.conf
### update-modules: start processing /etc/modutils/scanner
# Aliase fuer Scanner und Scsi_Hostadapter
alias scsi_hostadapter aha152x
options aha152x aha152x=0x140,11,6,1,1,0,0,0
alias char-major-21 sg
post-install sg echo "scsi add-single-device 1 0 0 0" >/proc/scsi/scsi
### update-modules: end processing /etc/modutils/scanner
Module die du eh beim Starten l�dst, kannst du in /etc/modules
einf�gen, per Hand oder mit modconf.
Gruss Uwe
msg16417/pgp00000.pgp
Description: PGP signature

