minix/commands/scripts/setup.sh

406 lines
11 KiB
Bash
Raw Normal View History

2005-07-13 15:04:56 +02:00
#!/bin/sh
#
2005-08-08 16:28:32 +02:00
# setup 4.1 - install a MINIX distribution Author: Kees J. Bot
2005-07-13 15:04:56 +02:00
# 20 Dec 1994
2005-08-05 18:49:38 +02:00
LOCALRC=/usr/etc/rc.local
2005-07-13 15:04:56 +02:00
PATH=/bin:/usr/bin
export PATH
usage()
{
cat >&2 <<'EOF'
Usage: setup # Install a skeleton system on the hard disk.
setup /usr # Install the rest of the system (binaries or sources).
# To install from other things then floppies:
urlget http://... | setup /usr # Read from a web site.
urlget ftp://... | setup /usr # Read from an FTP site.
mtools copy c0d0p0:... - | setup /usr # Read from the C: drive.
dosread c0d0p0 ... | setup /usr # Likewise if no mtools.
EOF
exit 1
}
# No options.
while getopts '' opt; do usage; done
shift `expr $OPTIND - 1`
if [ "$USER" != root ]
2005-07-26 15:14:59 +02:00
then echo "Please run setup as root."
exit 1
fi
2005-07-13 15:04:56 +02:00
2005-08-08 16:28:32 +02:00
# Installing MINIX on the hard disk.
2005-07-13 15:04:56 +02:00
case "$0" in
/tmp/*)
rm -f "$0"
;;
*) cp -p "$0" /tmp/setup
exec /tmp/setup
esac
# Find out what we are running from.
exec 9<&0 </etc/mtab # Mounted file table.
read thisroot rest # Current root (/dev/ram or /dev/fd?)
read fdusr rest # USR (/dev/fd? or /dev/fd?p2)
exec 0<&9 9<&-
# What do we know about ROOT?
case $thisroot:$fdusr in
/dev/ram:/dev/fd0p2) fdroot=/dev/fd0 # Combined ROOT+USR in drive 0
;;
/dev/ram:/dev/fd1p2) fdroot=/dev/fd1 # Combined ROOT+USR in drive 1
;;
/dev/ram:/dev/fd*) fdroot=unknown # ROOT is some other floppy
;;
/dev/fd*:/dev/fd*) fdroot=$thisroot # ROOT is mounted directly
;;
*) fdroot=$thisroot # ?
esac
echo -n "\
2005-08-08 16:28:32 +02:00
This is the MINIX installation script.
2005-07-13 15:04:56 +02:00
2005-08-09 13:16:15 +02:00
Note 1: If the screen blanks, hit CTRL+F3 to select \"software scrolling\".
2005-07-13 15:04:56 +02:00
Note 2: If things go wrong then hit DEL and start over.
Note 3: Some questions have default answers, like this: [y]
2005-08-08 16:28:32 +02:00
Simply hit ENTER if you want to choose that answer.
Note 4: If you see a colon (:) then you should hit ENTER to continue.
2005-07-13 15:04:56 +02:00
:"
read ret
2005-08-09 13:16:15 +02:00
echo " --- Step 1: Select keyboard type ---------------------------------"
2005-08-09 13:16:15 +02:00
echo "
2005-07-13 15:04:56 +02:00
What type of keyboard do you have? You can choose one of:
"
ls -C /usr/lib/keymaps | sed -e 's/\.map//g' -e 's/^/ /'
echo -n "
Keyboard type? [us-std] "; read keymap
test -n "$keymap" && loadkeys "/usr/lib/keymaps/$keymap.map"
2005-08-02 10:57:26 +02:00
ok=""
2005-08-02 16:56:30 +02:00
while [ "$ok" = "" ]
2005-08-02 10:57:26 +02:00
do
echo "
2005-08-09 13:16:15 +02:00
--- Step 2: Select your expertise level ---------------------------
"
2005-08-09 13:16:15 +02:00
echo "Now you need to create a MINIX 3 partition on the hard disk."
echo -n "Do you want to use (A)utomatic or the e(X)pert mode? [A] "
2005-08-02 10:57:26 +02:00
read ch
case "$ch" in
[Aa]*) auto="1"; ok="yes"; ;;
'') auto="1"; ok="yes"; ;;
[Xx]*) auto=""; ok="yes"; ;;
*) echo "Unrecognized response."; ok=""; ;;
esac
done
primary=
if [ -z "$auto" ]
then
# Expert mode
2005-07-13 15:04:56 +02:00
echo -n "
2005-08-09 13:16:15 +02:00
MINIX needs one primary partition of about 250 MB for a full install.
The maxium fill system currently supported is 4 GB.
2005-07-13 15:04:56 +02:00
2005-08-09 13:16:15 +02:00
If there is no free space on your disk then you have to choose an option:
(1) Delete one or more partitions
(2) Allocate an existing partition to MINIX 3
(3) Exit setup and shrink a partition using a different OS
2005-07-13 15:04:56 +02:00
To make this partition you will be put in the editor \"part\". Follow the
advice under the '!' key to make a new partition of type MINIX. Do not
touch an existing partition unless you know precisely what you are doing!
Please note the name of the partition (e.g. c0d0p1, c0d1p3, c1d1p0) you
2005-08-08 16:28:32 +02:00
make. (See the devices section in usage(8) on MINIX device names.)
2005-07-13 15:04:56 +02:00
:"
read ret
2005-07-13 15:04:56 +02:00
while [ -z "$primary" ]
do
part || exit
2005-07-13 15:04:56 +02:00
echo -n "
2005-07-13 15:04:56 +02:00
Please finish the name of the primary partition you have created:
2005-08-08 16:28:32 +02:00
(Just type ENTER if you want to rerun \"part\") /dev/"
read primary
done
else
# Automatic mode
while [ -z "$primary" ]
do
PF="/tmp/pf"
if autopart -f$PF
then if [ -s "$PF" ]
then
bd="`cat $PF`"
if [ -b "/dev/$bd" ]
then primary="$bd"
else echo "Funny device $bd from autopart."
fi
else
echo "Didn't find output from autopart."
fi
else echo "Autopart tool failed. Trying again."
fi
done
fi
2005-07-13 15:04:56 +02:00
root=${primary}s0
swap=${primary}s1
usr=${primary}s2
hex2int()
{
# Translate hexadecimal to integer.
local h d i
h=$1
i=0
while [ -n "$h" ]
do
d=$(expr $h : '\(.\)')
h=$(expr $h : '.\(.*\)')
d=$(expr \( 0123456789ABCDEF : ".*$d" \) - 1)
i=$(expr $i \* 16 + $d)
done
echo $i
}
2005-08-09 13:16:15 +02:00
echo " --- Step 8: Select your Ethernet chip ----------------------------"
2005-07-13 15:04:56 +02:00
# Ask user about networking
echo ""
2005-08-08 16:28:32 +02:00
echo "MINIX currently supports the following Ethernet cards. Please choose: "
2005-07-13 15:04:56 +02:00
echo ""
echo "0. No Ethernet card (no networking)"
2005-08-08 16:28:32 +02:00
echo "1. Intel Pro/100"
echo "2. Realtek 8139 based card"
echo "3. Realtek 8029 based card (emulated by Qemu)"
echo "4. NE2000, 3com 503 or WD based card (NE2000 is emulated by Bochs)"
echo "5. A 3com 501 or 509"
echo "6. A different Ethernet card (no networking)"
2005-07-13 15:04:56 +02:00
echo ""
2005-08-08 16:28:32 +02:00
echo "With some cards, you'll have to edit $LOCALRC "
2005-08-05 18:49:38 +02:00
echo "after installing to the proper parameters."
echo ""
2005-07-13 15:04:56 +02:00
echo "You can always change your mind after the install."
echo ""
2005-07-22 20:30:40 +02:00
echo -n "Choice? "
2005-07-13 15:04:56 +02:00
read eth
driver=""
2005-08-05 18:49:38 +02:00
driverargs=""
2005-07-13 15:04:56 +02:00
case "$eth" in
2005-08-05 18:48:44 +02:00
1) driver=fxp; ;;
2) driver=rtl8139; ;;
3) driver=dp8390; driverargs="dp8390_args='DPETH0=pci'"; ;;
2005-08-05 18:49:38 +02:00
4) driver=dp8390; driverargs="#dp8390_args='DPETH0=port:irq:memory'"; echo "Note: After installing, please edit $LOCALRC to the right configuration."; ;;
2005-08-05 18:48:44 +02:00
5) driver=dpeth; ;;
2005-07-13 15:04:56 +02:00
esac
2005-08-08 16:28:32 +02:00
# Compute the amount of memory available to MINIX.
2005-07-13 15:04:56 +02:00
memsize=0
ifs="$IFS"
IFS=','
set -- $(sysenv memory)
IFS="$ifs"
for mem
do
mem=$(expr $mem : '.*:\(.*\)')
memsize=$(expr $memsize + $(hex2int $mem) / 1024)
done
# Compute an advised swap size.
swapadv=0
case `arch` in
i86)
test $memsize -lt 4096 && swapadv=$(expr 4096 - $memsize)
;;
*) test $memsize -lt 6144 && swapadv=$(expr 6144 - $memsize)
esac
2005-07-22 20:30:40 +02:00
blockdefault=8
2005-08-09 13:16:15 +02:00
echo " --- Step 9: Select a disk block size -----------------------------"
echo "The default block size on the disk is $blockdefault KB.
2005-08-08 19:37:39 +02:00
If you have a small disk or small RAM you may want less
than $blockdefault KB. Please type 1, 2, or 4 for a smaller
block size (in KB), or hit ENTER for the default of
$blockdefault KB blocks, which should be fine in most cases."
2005-07-22 20:30:40 +02:00
while [ -z "$blocksize" ]
do echo -n "Block size [$blockdefault KB]? "
read blocksize
if [ -z "$blocksize" ]
then blocksize=$blockdefault
fi
2005-08-08 19:37:39 +02:00
if [ "$blocksize" -ne 1 -a "$blocksize" -ne 2 -a "$blocksize" -ne 4 -a "$blocksize" -ne $blockdefault ]
then echo "$blocksize bogus block size. 1, 2, 4 or $blockdefault please."
2005-07-22 20:30:40 +02:00
blocksize=""
fi
done
blocksizebytes="`expr $blocksize '*' 1024`"
2005-08-09 13:16:15 +02:00
echo " --- Step 10: Allocate swap space ----------------------------------"
2005-07-22 20:30:40 +02:00
2005-08-09 13:16:15 +02:00
echo -n "How much swap space would you like? Swapspace is only needed if this
system is memory starved. If you have 128 MB of memory or more, you
probably don't need it. If you have less and want to run many programs
at once, I suggest setting it to the memory size.
2005-08-08 16:28:32 +02:00
Size in kilobytes? [$swapadv] "
2005-07-13 15:04:56 +02:00
swapsize=
read swapsize
test -z "$swapsize" && swapsize=$swapadv
2005-08-09 13:16:15 +02:00
echo "
--- Step 11: Check all your choices ----------------------------------
"
echo -n "You have created a partition named: /dev/$primary
2005-07-13 15:04:56 +02:00
The following subpartitions are about to be created on /dev/$primary:
Root subpartition: /dev/$root 16 MB
Swap subpartition: /dev/$swap $swapsize kb
/usr subpartition: /dev/$usr rest of $primary
2005-08-08 16:28:32 +02:00
Hit ENTER if everything looks fine, or hit DEL to bail out if you want to
2005-07-13 15:04:56 +02:00
think it over. The next step will destroy /dev/$primary.
:"
read ret
# Secondary master bootstrap.
installboot -m /dev/$primary /usr/mdec/masterboot >/dev/null || exit
# Partition the primary.
p3=0:0
test "$swapsize" -gt 0 && p3=81:`expr $swapsize \* 2`
partition /dev/$primary 1 81:32768* $p3 81:0+ || exit
if [ "$swapsize" -gt 0 ]
then
# We must have that swap, now!
mkswap -f /dev/$swap || exit
mount -s /dev/$swap || exit
else
# Forget about swap.
swap=
fi
2005-08-09 13:16:15 +02:00
echo " --- Step 12: Wait for bad block detection ----------------------------"
2005-07-13 15:04:56 +02:00
mkfs -B $blocksizebytes /dev/$usr
2005-07-13 15:04:56 +02:00
echo "\
Scanning /dev/$usr for bad blocks. (Hit DEL to stop the scan if you are
absolutely sure that there can not be any bad blocks. Otherwise just wait.)"
trap ': nothing' 2
readall -b /dev/$usr | sh
sleep 2
trap 2
2005-08-09 13:16:15 +02:00
echo " --- Step 13: Wait for files to be copied ------------------------------"
2005-07-13 15:04:56 +02:00
mount /dev/$usr /mnt || exit # Mount the intended /usr.
cpdir -v /usr /mnt || exit # Copy the usr floppy.
umount /dev/$usr || exit # Unmount the intended /usr.
umount $fdusr # Unmount the /usr floppy.
mount /dev/$usr /usr || exit # A new /usr
if [ $fdroot = unknown ]
then
echo "
By now the floppy USR has been copied to /dev/$usr, and it is now in use as
/usr. Please insert the installation ROOT floppy in a floppy drive."
drive=
while [ -z "$drive" ]
do
echo -n "What floppy drive is it in? [0] "; read drive
case $drive in
'') drive=0
;;
[01])
;;
*) echo "It must be 0 or 1, not \"$drive\"."
drive=
esac
done
fdroot=/dev/fd$drive
fi
echo "
Copying $fdroot to /dev/$root
"
mkfs -B $blocksizebytes /dev/$root || exit
2005-07-13 15:04:56 +02:00
mount /dev/$root /mnt || exit
# Running from the installation CD.
cpdir -vx / /mnt || exit
chmod 555 /mnt/usr
2005-07-13 15:04:56 +02:00
# CD remnants that aren't for the installed system
rm /mnt/etc/issue /mnt/CD 2>/dev/null
# Change /etc/fstab.
echo >/mnt/etc/fstab "\
# Poor man's File System Table.
root=/dev/$root
${swap:+swap=/dev/$swap}
usr=/dev/$usr"
# National keyboard map.
test -n "$keymap" && cp -p "/usr/lib/keymaps/$keymap.map" /mnt/etc/keymap
# Set inet.conf to correct driver
if [ -n "$driver" ]
then echo "eth0 $driver 0 { default; };" >/mnt/etc/inet.conf
2005-08-05 18:49:38 +02:00
echo "$driverargs" >$LOCALRC
disable=""
2005-08-08 19:37:39 +02:00
else disable="disable=inet;"
2005-07-13 15:04:56 +02:00
fi
umount /dev/$root || exit # Unmount the new root.
# Compute size of the second level file block cache.
case `arch` in
i86)
cache=`expr "0$memsize" - 1024`
test $cache -lt 32 && cache=0
test $cache -gt 512 && cache=512
;;
*)
cache=`expr "0$memsize" - 2560`
test $cache -lt 64 && cache=0
test $cache -gt 1024 && cache=1024
esac
echo "Second level file system block cache set to $cache kb."
if [ $cache -eq 0 ]; then cache=; else cache="ramsize=$cache"; fi
# Make bootable.
installboot -d /dev/$root /usr/mdec/bootblock /boot/boot >/dev/null || exit
2005-08-08 19:37:39 +02:00
edparams /dev/$root "rootdev=$root; ramimagedev=$root; $disable $cache; main() { echo This is the MINIX 3 boot monitor.; echo MINIX will load in 5 seconds, or press ESC.; trap 5000 boot; menu; }; save" || exit
2005-07-13 15:04:56 +02:00
pfile="/usr/src/tools/fdbootparams"
echo "Remembering boot parameters in ${pfile}."
echo "rootdev=$root; ramimagedev=$root; $cache; save" >$pfile || exit
sync
echo "
2005-08-08 16:28:32 +02:00
Please type 'shutdown' to exit MINIX 3 and enter the boot monitor.
At the boot monitor prompt, you can type 'boot $primary' to try the
newly installed MINIX system.
See Part IV: Testing in the usage manual.
"
2005-07-13 15:04:56 +02:00