*** empty log message ***

This commit is contained in:
Ben Gras 2005-08-05 16:49:38 +00:00
parent 73847b7d50
commit a852be1357

View File

@ -3,6 +3,8 @@
# setup 4.1 - install a Minix distribution Author: Kees J. Bot # setup 4.1 - install a Minix distribution Author: Kees J. Bot
# 20 Dec 1994 # 20 Dec 1994
LOCALRC=/usr/etc/rc.local
PATH=/bin:/usr/bin PATH=/bin:/usr/bin
export PATH export PATH
@ -192,16 +194,20 @@ echo " is installed (NE2000 is emulated by Bochs)"
echo "5. A 3com 501 or 509 Ethernet card is installed " echo "5. A 3com 501 or 509 Ethernet card is installed "
echo "6. A different Ethernet card is installed (no networking)" echo "6. A different Ethernet card is installed (no networking)"
echo "" echo ""
echo "In with some cards, you'll have to edit $LOCALRC "
echo "after installing to the proper parameters."
echo ""
echo "You can always change your mind after the install." echo "You can always change your mind after the install."
echo "" echo ""
echo -n "Choice? " echo -n "Choice? "
read eth read eth
driver="" driver=""
driverargs=""
case "$eth" in case "$eth" in
1) driver=fxp; ;; 1) driver=fxp; ;;
2) driver=rtl8139; ;; 2) driver=rtl8139; ;;
3) driver=dp8390; driverargs="dp8390_args='DPETH0=pci'"; ;; 3) driver=dp8390; driverargs="dp8390_args='DPETH0=pci'"; ;;
4) driver=dp8390; driverargs="#dp8390_args='DPETH0=port:irq:memory'"; ;; 4) driver=dp8390; driverargs="#dp8390_args='DPETH0=port:irq:memory'"; echo "Note: After installing, please edit $LOCALRC to the right configuration."; ;;
5) driver=dpeth; ;; 5) driver=dpeth; ;;
esac esac
@ -360,6 +366,7 @@ test -n "$keymap" && cp -p "/usr/lib/keymaps/$keymap.map" /mnt/etc/keymap
# Set inet.conf to correct driver # Set inet.conf to correct driver
if [ -n "$driver" ] if [ -n "$driver" ]
then echo "eth0 $driver 0 { default; };" >/mnt/etc/inet.conf then echo "eth0 $driver 0 { default; };" >/mnt/etc/inet.conf
echo "$driverargs" >$LOCALRC
fi fi
umount /dev/$root || exit # Unmount the new root. umount /dev/$root || exit # Unmount the new root.