Zum Einbinden der neuen Intel Gigabit Desktop Adapter CT PCIe habe ich folgendes post-install-skript verwendet.
#!/bin/sh
(
echo "running post installation"
# wir befinden uns in / (installation-root)
# zielsystem ist gemountet in /tmp/root
# installation neuer Treiber w/ Unterstuetzung Intel 82574L (Intel Gigabit Desktop Adapter CT)
wget http://192.168.178.11/xen500/driver/e1000e.ko
cp e1000e.ko /tmp/root/lib/modules/2.6.18-92.1.10.el5.xs5.0.0.394.644xen/kernel/drivers/net/e1000e/
# update-pciids
wget http://192.168.178.11/xen500/driver/pci.ids.tbz2
tar xjf pci.ids.tbz2 -C /tmp/root/
# NIC vor- und -nach dem Entladen/Laden
ifconfig -a > /tmp/root/ifconfig-a
modprobe -r e1000e
insmod e1000e.ko
ifconfig -a > /tmp/root/ifconfig-b
# fuer das install-log
ifconfig -a
echo .....
) 2>&1
Abonnieren
Kommentare zum Post (Atom)
0 Kommentare:
Kommentar veröffentlichen