First /home steps

This commit is contained in:
Ben Gras 2005-08-31 16:29:56 +00:00
parent 17b62e7964
commit e0e9e78d8e
3 changed files with 183 additions and 168 deletions

View File

@ -112,20 +112,28 @@ step2=""
while [ "$step2" != ok ] while [ "$step2" != ok ]
do do
echo "" echo ""
echo " --- Step 2: Create a partition for MINIX 3 ----------------------------" echo " --- Step 2: Create a partition for MINIX 3, Or Reinstall ------------"
echo "" echo ""
echo "Now you need to create a MINIX 3 partition on your hard disk." echo "Now you need to create a MINIX 3 partition on your hard disk."
echo "You can also select one that's already there."
echo " "
echo "If you have an existing installation, 'reinstall'ing will let you"
echo "keep your current partitioning and subpartitioning, and overwrite"
echo "everything except your s3 subpartition (/home)."
echo " "
echo "Unless you are an expert, you are advised to use the automated" echo "Unless you are an expert, you are advised to use the automated"
echo "step-by-step help in setting up." echo "step-by-step help in setting up."
echo "" echo ""
ok="" ok=""
while [ "$ok" = "" ] while [ "$ok" = "" ]
do do
echo -n "Press ENTER for automatic mode or type 'expert': " echo "Press ENTER for automatic mode, or type 'expert', or"
echo -n "type 'reinstall': "
read mode read mode
if [ -z "$mode" ]; then auto="1"; ok="yes"; fi if [ -z "$mode" ]; then auto="1"; ok="yes"; fi
if [ "$mode" = expert ]; then auto=""; ok="yes"; fi if [ "$mode" = expert ]; then auto=""; ok="yes"; fi
if [ "$mode" = reinstall ]; then auto="r"; ok="yes"; fi
if [ "$ok" != yes ]; then warn "try again"; fi if [ "$ok" != yes ]; then warn "try again"; fi
done done
@ -173,11 +181,10 @@ read confirmation
if [ "$confirmation" = yes ]; then step2=ok; fi if [ "$confirmation" = yes ]; then step2=ok; fi
done done
biosdrivename="Actual BIOS device name unknown, due to expert mode." biosdrivename="Actual BIOS device name unknown, due to expert mode."
else else
if [ "$auto" = "1" ]
then
# Automatic mode # Automatic mode
# while [ -z "$primary" ]
# do
PF="/tmp/pf" PF="/tmp/pf"
if autopart -f$PF if autopart -f$PF
then if [ -s "$PF" ] then if [ -s "$PF" ]
@ -195,48 +202,49 @@ else
else echo "Autopart tool failed. Trying again." else echo "Autopart tool failed. Trying again."
fi fi
# reset at retries and timeouts in case autopart left # Reset at retries and timeouts in case autopart left
# them messy # them messy.
atnormalize atnormalize
# done
if [ -n "$primary" ]; then step2=ok; fi if [ -n "$primary" ]; then step2=ok; fi
else
# Reinstall mode
primary=""
fi while [ -z "$primary" ]
do
echo -n "
Please finish the name of the primary partition you have a MINIX install on:
/dev/"
read primary
done done
echo ""
echo "This is the point of no return. You have selected to reinstall MINIX"
echo "on partition /dev/$primary. Please confirm that you want to use this"
echo "selection to reinstall MINIX. This will wipe out your s0 (root) and"
echo "s2 (/usr) filesystems."
echo ""
confirmation=""
while [ -z "$confirmation" -o "$confirmation" != yes -a "$confirmation" != no ]
do
echo -n "Are you sure you want to continue? Please enter 'yes' or 'no': "
read confirmation
if [ "$confirmation" = yes ]; then step2=ok; fi
done
biosdrivename="Actual BIOS device name unknown, due to reinstallation."
fi
done # while step2 != ok
# end Step 2 # end Step 2
root=${primary}s0 if [ ! "$auto" = "r" ]
swap=${primary}s1 then
usr=${primary}s2
umount /dev/$usr 2>/dev/null && echo "Unmounted $usr for you."
umount /dev/$root 2>/dev/null && echo "Unmounted $root for you."
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
}
# begin Step 3 # begin Step 3
echo "" echo ""
echo " --- Step 3: Select your Ethernet chip ---------------------------------" echo " --- Step 3: Select your Ethernet chip ---------------------------------"
echo "" echo ""
# Ask user about networking # Ask user about networking
echo "MINIX currently supports the following Ethernet cards. Please choose: " echo "MINIX 3 currently supports the following Ethernet cards. Please choose: "
echo "" echo ""
echo "0. No Ethernet card (no networking)" echo "0. No Ethernet card (no networking)"
echo "1. Intel Pro/100" echo "1. Intel Pro/100"
@ -275,32 +283,41 @@ do
esac esac
done done
# end Step 3 # end Step 3
fi
if [ ! "$auto" = r ]
# Compute the amount of memory available to MINIX. then homesize=""
memsize=0 while [ -z "$homesize" ]
ifs="$IFS"
IFS=','
set -- $(sysenv memory)
IFS="$ifs"
for mem
do do
mem=$(expr $mem : '.*:\(.*\)') echo ""
memsize=$(expr $memsize + $(hex2int $mem) / 1024) echo -n "How big do you want your /home to be, in MB? "
read home
echo -n "$home MB Ok? [Y] "
read ok
[ "$ok" = Y -o "$ok" = y -o "$ok" = "" ] || homesize=""
echo ""
done done
# Homesize in sectors
homemb="$homesize MB"
homesize="`expr $homesize '*' 1024 '*' 1024 '*' 2`"
else
# Homesize unchanged (reinstall)
homesize=exist
homemb="current size"
fi
# Compute an advised swap size. root=${primary}s0
# swapadv=0 swap=${primary}s1
# case `arch` in usr=${primary}s2
# i86) home=${primary}s3
# test $memsize -lt 4096 && swapadv=$(expr 4096 - $memsize) umount /dev/$usr 2>/dev/null && echo "Unmounted $usr for you."
# ;; umount /dev/$root 2>/dev/null && echo "Unmounted $root for you."
# *) test $memsize -lt 6144 && swapadv=$(expr 6144 - $memsize) umount /dev/$home 2>/dev/null && echo "Unmounted $home for you."
# esac
blockdefault=4 blockdefault=4
if [ ! "$auto" = "r" ]
then
echo "" echo ""
echo " --- Step 4: Select a block size ---------------------------------------" echo " --- Step 4: Select a block size ---------------------------------------"
echo "" echo ""
@ -319,30 +336,18 @@ do
blocksize="" blocksize=""
fi fi
done done
else
blocksize=$blockdefault
fi
blocksizebytes="`expr $blocksize '*' 1024`" blocksizebytes="`expr $blocksize '*' 1024`"
# begin Step 5
# echo ""
# echo " --- Step 5: Allocate swap space ---------------------------------------"
# echo ""
# 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.
# Size in kilobytes? [$swapadv] "
# read swapsize
# test -z "$swapsize" && swapsize=$swapadv
#
echo " echo "
You have selected to install MINIX in the partition /dev/$primary. You have selected to (re)install MINIX in the partition /dev/$primary.
The following subpartitions are now being created on /dev/$primary: The following subpartitions are now being created on /dev/$primary:
Root subpartition: /dev/$root 16 MB Root subpartition: /dev/$root 16 MB
/home subpartition: /dev/$home $homemb
/usr subpartition: /dev/$usr rest of $primary /usr subpartition: /dev/$usr rest of $primary
" "
# Secondary master bootstrap. # Secondary master bootstrap.
@ -350,26 +355,22 @@ installboot -m /dev/$primary /usr/mdec/masterboot >/dev/null || exit
# Partition the primary. # Partition the primary.
p3=0:0 p3=0:0
# test "$swapsize" -gt 0 && p3=81:`expr $swapsize \* 2` # test "$swapsize" -gt 0 && p3=81:`expr $swapsize \* 2`
partition /dev/$primary 1 81:32768* $p3 81:0+ > /dev/null || exit partition /dev/$primary 1 81:32768* $p3 81:0+ 81:$homesize > /dev/null || exit
echo "Creating /dev/$root .."
mkfs -B $blocksizebytes /dev/$root || exit mkfs -B $blocksizebytes /dev/$root || exit
echo "Creating /dev/$usr .."
mkfs -B $blocksizebytes /dev/$usr || exit mkfs -B $blocksizebytes /dev/$usr || exit
if [ ! "$auto" = r ]
# if [ "$swapsize" -gt 0 ] then echo "Creating /dev/$home .."
# then mkfs -B $blocksizebytes /dev/$home || exit
# # We must have that swap, now! fi
# mkswap -f /dev/$swap || exit
# mount -s /dev/$swap || exit
# else
# # Forget about swap.
# swap=
# fi
echo "" echo ""
echo " --- Step 5: Wait for bad block detection ------------------------------" echo " --- Step 5: Wait for bad block detection ------------------------------"
echo "" echo ""
echo "Scanning disk for bad blocks. Hit CTRL-C to stop the scan if you are" echo "Scanning disk for bad blocks. Hit CTRL+C to stop the scan if you are"
echo "sure that there can not be any bad blocks. Otherwise just wait." echo "sure that there can not be any bad blocks. Otherwise just wait."
trap ': nothing;echo' 2 trap ': nothing;echo' 2
@ -380,6 +381,9 @@ echo ""
echo "Scanning /dev/$usr for bad blocks:" echo "Scanning /dev/$usr for bad blocks:"
readall -b /dev/$usr | sh readall -b /dev/$usr | sh
trap 2 trap 2
echo "Scanning /dev/$home for bad blocks:"
readall -b /dev/$home | sh
trap 2
echo "" echo ""
echo " --- Step 6: Wait for files to be copied -------------------------------" echo " --- Step 6: Wait for files to be copied -------------------------------"
@ -420,7 +424,8 @@ echo >/mnt/etc/fstab "\
# Poor man's File System Table. # Poor man's File System Table.
root=/dev/$root root=/dev/$root
usr=/dev/$usr" usr=/dev/$usr
home=/dev/$home"
# National keyboard map. # National keyboard map.
test -n "$keymap" && cp -p "/usr/lib/keymaps/$keymap.map" /mnt/etc/keymap test -n "$keymap" && cp -p "/usr/lib/keymaps/$keymap.map" /mnt/etc/keymap
@ -428,6 +433,8 @@ test -n "$keymap" && cp -p "/usr/lib/keymaps/$keymap.map" /mnt/etc/keymap
umount /dev/$root >/dev/null || exit # Unmount the new root. umount /dev/$root >/dev/null || exit # Unmount the new root.
mount /dev/$usr /mnt >/dev/null || exit mount /dev/$usr /mnt >/dev/null || exit
if [ ! "$auto" = "r" ]
then
# Make bootable. # Make bootable.
installboot -d /dev/$root /usr/mdec/bootblock /boot/boot >/dev/null || exit installboot -d /dev/$root /usr/mdec/bootblock /boot/boot >/dev/null || exit
edparams /dev/$root "rootdev=$root; ramimagedev=$root; $disable; minix(=,Start MINIX 3) { unset image; boot; }; smallminix(+,Start Small MINIX 3) { image=/boot/image_small; ramsize=0; boot; }; main() { echo By default, MINIX 3 will automatically load in 3 seconds.; echo Press ESC to enter the monitor for special configuration.; trap 3000 boot; menu; }; save" || exit edparams /dev/$root "rootdev=$root; ramimagedev=$root; $disable; minix(=,Start MINIX 3) { unset image; boot; }; smallminix(+,Start Small MINIX 3) { image=/boot/image_small; ramsize=0; boot; }; main() { echo By default, MINIX 3 will automatically load in 3 seconds.; echo Press ESC to enter the monitor for special configuration.; trap 3000 boot; menu; }; save" || exit
@ -435,6 +442,8 @@ pfile="/mnt/src/tools/fdbootparams"
# echo "Remembering boot parameters in ${pfile}." # echo "Remembering boot parameters in ${pfile}."
echo "rootdev=$root; ramimagedev=$root; $disable; save" >$pfile || exit echo "rootdev=$root; ramimagedev=$root; $disable; save" >$pfile || exit
umount /dev/$usr umount /dev/$usr
fi
sync sync
bios="`echo $primary | sed 's/d./dX/g'`" bios="`echo $primary | sed 's/d./dX/g'`"

View File

@ -16,6 +16,7 @@
755 ast other /usr/ast 755 ast other /usr/ast
755 bin operator /usr/bin 755 bin operator /usr/bin
755 root operator /usr/etc 755 root operator /usr/etc
755 root operator /home
755 root operator /usr/home 755 root operator /usr/home
700 bin other /usr/home/bin 700 bin other /usr/home/bin
755 bin operator /usr/include 755 bin operator /usr/include

5
etc/rc
View File

@ -131,7 +131,11 @@ Mount $usr /usr failed -- Single user."
umount $usr umount $usr
intr fsck -r $root intr fsck -r $root
intr fsck -r $usr intr fsck -r $usr
if [ ! -z "$home" ]
then intr fsck -r $home
fi
mount $usr /usr mount $usr /usr
mount $home /home
fi fi
# This file is necessary for above 'shutdown -C' check. # This file is necessary for above 'shutdown -C' check.
@ -166,4 +170,5 @@ test -f /usr/local/etc/rc && sh /usr/local/etc/rc $action
# Any messages? # Any messages?
test "$action" = start -a -f /etc/issue && cat /etc/issue test "$action" = start -a -f /etc/issue && cat /etc/issue
exit 0 exit 0