Install script beautifications.
Changed message of the day. Fixed some compile warnings in src/boot/. Changed header() variable.
This commit is contained in:
parent
2382b9a1d3
commit
897a035077
@ -13,6 +13,7 @@ char version[]= "2.20";
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@ -894,9 +895,8 @@ void get_parameters(void)
|
|||||||
|
|
||||||
/* Variables boot needs: */
|
/* Variables boot needs: */
|
||||||
b_setvar(E_SPECIAL|E_VAR, "image", "boot/image");
|
b_setvar(E_SPECIAL|E_VAR, "image", "boot/image");
|
||||||
b_setvar(E_SPECIAL|E_FUNCTION, "leader",
|
b_setvar(E_SPECIAL|E_FUNCTION, "leader",
|
||||||
"echo MINIX boot monitor \\v\\n"
|
"echo --- Welcome to MINIX 3. This is the boot monitor. ---\\n");
|
||||||
"\\nPress ESC to enter the monitor");
|
|
||||||
b_setvar(E_SPECIAL|E_FUNCTION, "main", "menu");
|
b_setvar(E_SPECIAL|E_FUNCTION, "main", "menu");
|
||||||
b_setvar(E_SPECIAL|E_FUNCTION, "trailer", "");
|
b_setvar(E_SPECIAL|E_FUNCTION, "trailer", "");
|
||||||
|
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -33,6 +33,9 @@
|
|||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
/* Declare prototype. */
|
||||||
|
static void printstep(int step, char *message);
|
||||||
|
|
||||||
/* True if a partition is an extended partition. */
|
/* True if a partition is an extended partition. */
|
||||||
#define ext_part(s) ((s) == 0x05 || (s) == 0x0F)
|
#define ext_part(s) ((s) == 0x05 || (s) == 0x0F)
|
||||||
|
|
||||||
@ -2359,6 +2362,8 @@ select_region(void)
|
|||||||
region_t *reg;
|
region_t *reg;
|
||||||
int nofree = 0;
|
int nofree = 0;
|
||||||
|
|
||||||
|
printstep(2, "Select a disk region");
|
||||||
|
|
||||||
if(nr_regions < 1) {
|
if(nr_regions < 1) {
|
||||||
printf("\nNo regions found - maybe the drive is too small.\n"
|
printf("\nNo regions found - maybe the drive is too small.\n"
|
||||||
"Please try expert mode.\n");
|
"Please try expert mode.\n");
|
||||||
@ -2372,7 +2377,6 @@ select_region(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
printstep(5, "Select a region");
|
|
||||||
|
|
||||||
printf("\nI've found the following region%s on this disk (%s).\n\n",
|
printf("\nI've found the following region%s on this disk (%s).\n\n",
|
||||||
SORNOT(nr_regions), prettysizeprint(table[0].size/2));
|
SORNOT(nr_regions), prettysizeprint(table[0].size/2));
|
||||||
@ -2410,11 +2414,9 @@ select_region(void)
|
|||||||
printf("That region number isn't available.\n");
|
printf("That region number isn't available.\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
printstep(6, "Confirm your partition choice");
|
|
||||||
|
|
||||||
sure = is_sure(0, "\nPlease confirm you want to use disk region number %d?", rn);
|
sure = is_sure(0, "\nPlease confirm you want to use disk region number %d?", rn);
|
||||||
} else {
|
} else {
|
||||||
printstep(6, "Confirm your partition choice");
|
|
||||||
rn = 0;
|
rn = 0;
|
||||||
sure = is_sure(0, "\nUse this region?");
|
sure = is_sure(0, "\nUse this region?");
|
||||||
}
|
}
|
||||||
@ -2423,12 +2425,12 @@ select_region(void)
|
|||||||
return(®ions[rn]);
|
return(®ions[rn]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void printstep(int step, char *str)
|
static void printstep(int step, char *str)
|
||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
n = printf("\n --- Step %d: %s ", step, str);
|
n = printf("\n --- Substep 2.%d: %s ---", step, str);
|
||||||
while(n++ < 70) printf("-");
|
while(n++ < 70) printf("-");
|
||||||
printf("\n\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
device_t *
|
device_t *
|
||||||
@ -2438,6 +2440,7 @@ select_disk(void)
|
|||||||
int i, choice, drives;
|
int i, choice, drives;
|
||||||
static char line[500];
|
static char line[500];
|
||||||
|
|
||||||
|
printstep(1, "Select a disk to install MINIX");
|
||||||
printf("\nProbing for disks. This may take a short while.");
|
printf("\nProbing for disks. This may take a short while.");
|
||||||
|
|
||||||
do {
|
do {
|
||||||
@ -2445,7 +2448,6 @@ select_disk(void)
|
|||||||
curdev=firstdev;
|
curdev=firstdev;
|
||||||
|
|
||||||
for(; i < MAX_DEVICES;) {
|
for(; i < MAX_DEVICES;) {
|
||||||
printf(".");
|
|
||||||
m_read('r', NULL);
|
m_read('r', NULL);
|
||||||
if(device >= 0) {
|
if(device >= 0) {
|
||||||
devices[i].dev = curdev;
|
devices[i].dev = curdev;
|
||||||
@ -2472,20 +2474,13 @@ select_disk(void)
|
|||||||
|
|
||||||
printf("\nProbing done; %d drive%s found.\n", drives, SORNOT(drives));
|
printf("\nProbing done; %d drive%s found.\n", drives, SORNOT(drives));
|
||||||
|
|
||||||
if(drives == 1) {
|
|
||||||
sure = 1;
|
|
||||||
choice = 0;
|
|
||||||
} else {
|
|
||||||
|
|
||||||
printstep(3, "Choose a disk to install MINIX 3 on");
|
|
||||||
|
|
||||||
printf("\nI've found the following drive%s on your system.\n", SORNOT(drives));
|
printf("\nI've found the following drive%s on your system.\n", SORNOT(drives));
|
||||||
|
|
||||||
for(i = 0; i < drives; i++) {
|
for(i = 0; i < drives; i++) {
|
||||||
if(drives > 1)
|
printf(" ");
|
||||||
printf("\n %2d. ", i);
|
printf("Disk %d", i);
|
||||||
else printf(" ");
|
printf(" ( %s, ", devices[i].dev->name);
|
||||||
printf(" (%s, ", devices[i].dev->name);
|
|
||||||
printf("%s)\n", prettysizeprint(devices[i].sectors/2));
|
printf("%s)\n", prettysizeprint(devices[i].sectors/2));
|
||||||
printregions(devices[i].regions, 8,
|
printregions(devices[i].regions, 8,
|
||||||
devices[i].nr_partitions,
|
devices[i].nr_partitions,
|
||||||
@ -2493,6 +2488,7 @@ select_disk(void)
|
|||||||
devices[i].nr_regions, 0);
|
devices[i].nr_regions, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (drives > 1) {
|
||||||
printf("\nPlease enter disk number you want to use: ");
|
printf("\nPlease enter disk number you want to use: ");
|
||||||
fflush(NULL);
|
fflush(NULL);
|
||||||
if(!fgets(line, sizeof(line)-2, stdin))
|
if(!fgets(line, sizeof(line)-2, stdin))
|
||||||
@ -2502,10 +2498,12 @@ select_disk(void)
|
|||||||
printf("Number out of range.\n");
|
printf("Number out of range.\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
printstep(4, "Confirm your choice");
|
}
|
||||||
|
else {
|
||||||
|
choice = 0;
|
||||||
|
}
|
||||||
sure = is_sure(0, "\nPlease confirm you want to use disk %d (%s)?",
|
sure = is_sure(0, "\nPlease confirm you want to use disk %d (%s)?",
|
||||||
choice, devices[choice].dev->name);
|
choice, devices[choice].dev->name);
|
||||||
}
|
|
||||||
} while(!sure);
|
} while(!sure);
|
||||||
return devices[choice].dev;
|
return devices[choice].dev;
|
||||||
}
|
}
|
||||||
@ -2562,6 +2560,7 @@ do_autopart(int resultfd)
|
|||||||
struct part_entry *pe;
|
struct part_entry *pe;
|
||||||
char sure[50];
|
char sure[50];
|
||||||
struct part_entry orig_table[1 + NR_PARTITIONS];
|
struct part_entry orig_table[1 + NR_PARTITIONS];
|
||||||
|
int region, disk;
|
||||||
|
|
||||||
nordonly = 1;
|
nordonly = 1;
|
||||||
probing = 1;
|
probing = 1;
|
||||||
@ -2600,11 +2599,14 @@ do_autopart(int resultfd)
|
|||||||
m_dump(table);
|
m_dump(table);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
printstep(7, "Point of no return");
|
printstep(3, "Confirm your choices");
|
||||||
|
|
||||||
printf("\nThis is the point of no return. You have selected to install MINIX\n");
|
region = (int)(r-regions);
|
||||||
printf("into region %d of disk %d. If you agree with this selection, your\n", (int)(r-regions), (int) (curdev-firstdev));
|
disk = (int) (curdev-firstdev);
|
||||||
printf("disk will be written to prepare for the rest of the installation.\n\n");
|
|
||||||
|
printf("\nThis is the point of no return. You have selected to install MINIX\n");
|
||||||
|
printf("into region %d of disk %d (%sp%d). Please confirm that you want\n", region, disk, devices[disk].dev->name, region);
|
||||||
|
printf("to use this selection to install MINIX.\n\n");
|
||||||
|
|
||||||
if(!is_sure(SURE_SERIOUS, "Are you sure you want to continue?"))
|
if(!is_sure(SURE_SERIOUS, "Are you sure you want to continue?"))
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -62,22 +62,21 @@ case $thisroot:$fdusr in
|
|||||||
*) fdroot=$thisroot # ?
|
*) fdroot=$thisroot # ?
|
||||||
esac
|
esac
|
||||||
|
|
||||||
echo -n "\
|
echo -n "
|
||||||
This is the MINIX installation script.
|
Welcome to the MINIX installation script.
|
||||||
|
|
||||||
Note 1: If the screen blanks, hit CTRL+F3 to select \"software scrolling\".
|
Note 1: If the screen blanks, hit CTRL+F3 to select \"software scrolling\".
|
||||||
Note 2: If things go wrong then hit DEL and start over.
|
Note 2: If things go wrong then hit DEL and start over.
|
||||||
Note 3: Some questions have default answers, like this: [y]
|
Note 3: Default answers, like [y], can simply be chosen by hitting ENTER.
|
||||||
Simply hit ENTER if you want to choose that answer.
|
|
||||||
Note 4: If you see a colon (:) then you should hit ENTER to continue.
|
Note 4: If you see a colon (:) then you should hit ENTER to continue.
|
||||||
:"
|
:"
|
||||||
read ret
|
read ret
|
||||||
|
|
||||||
echo " --- Step 1: Select keyboard type ---------------------------------"
|
echo ""
|
||||||
|
echo " --- Step 1: Select keyboard type --------------------------------------"
|
||||||
echo "
|
echo ""
|
||||||
What type of keyboard do you have? You can choose one of:
|
echo "What type of keyboard do you have? You can choose one of:"
|
||||||
"
|
echo ""
|
||||||
ls -C /usr/lib/keymaps | sed -e 's/\.map//g' -e 's/^/ /'
|
ls -C /usr/lib/keymaps | sed -e 's/\.map//g' -e 's/^/ /'
|
||||||
echo -n "
|
echo -n "
|
||||||
Keyboard type? [us-std] "; read keymap
|
Keyboard type? [us-std] "; read keymap
|
||||||
@ -86,10 +85,14 @@ test -n "$keymap" && loadkeys "/usr/lib/keymaps/$keymap.map"
|
|||||||
ok=""
|
ok=""
|
||||||
while [ "$ok" = "" ]
|
while [ "$ok" = "" ]
|
||||||
do
|
do
|
||||||
echo "
|
echo ""
|
||||||
--- Step 2: Select your expertise level ---------------------------
|
echo " --- Step 2: Create a partition for MINIX 3 ----------------------------"
|
||||||
"
|
echo ""
|
||||||
echo "Now you need to create a MINIX 3 partition on the hard disk."
|
|
||||||
|
echo "Now you need to create a MINIX 3 partition on your hard disk."
|
||||||
|
echo "Unless you are an expert, you are advised to use the automated"
|
||||||
|
echo "step-by-step help in setting up."
|
||||||
|
echo ""
|
||||||
echo -n "Do you want to use (A)utomatic or the e(X)pert mode? [A] "
|
echo -n "Do you want to use (A)utomatic or the e(X)pert mode? [A] "
|
||||||
read ch
|
read ch
|
||||||
case "$ch" in
|
case "$ch" in
|
||||||
@ -130,7 +133,17 @@ make. (See the devices section in usage(8) on MINIX device names.)
|
|||||||
Please finish the name of the primary partition you have created:
|
Please finish the name of the primary partition you have created:
|
||||||
(Just type ENTER if you want to rerun \"part\") /dev/"
|
(Just type ENTER if you want to rerun \"part\") /dev/"
|
||||||
read primary
|
read primary
|
||||||
done
|
echo ""
|
||||||
|
echo "This is the point of no return. You have selected to install MINIX"
|
||||||
|
echo "on partition /dev/$primary. Please confirm that you want to use this"
|
||||||
|
echo "selection to install MINIX."
|
||||||
|
echo ""
|
||||||
|
while [ -z "$confirmation" -o "$confirmation" != yes ]
|
||||||
|
do
|
||||||
|
echo -n "Are you sure you want to continue? Please enter 'yes' or 'no':"
|
||||||
|
read confirmation
|
||||||
|
done
|
||||||
|
done
|
||||||
else
|
else
|
||||||
# Automatic mode
|
# Automatic mode
|
||||||
while [ -z "$primary" ]
|
while [ -z "$primary" ]
|
||||||
@ -177,41 +190,42 @@ hex2int()
|
|||||||
done
|
done
|
||||||
echo $i
|
echo $i
|
||||||
}
|
}
|
||||||
echo " --- Step 8: Select your Ethernet chip ----------------------------"
|
|
||||||
|
echo ""
|
||||||
|
echo " --- Step 3: Select your Ethernet chip ---------------------------------"
|
||||||
|
echo ""
|
||||||
|
|
||||||
# Ask user about networking
|
# Ask user about networking
|
||||||
echo ""
|
|
||||||
echo "MINIX currently supports the following Ethernet cards. Please choose: "
|
echo "MINIX 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"
|
||||||
echo "2. Realtek 8139 based card"
|
echo "2. Realtek 8139 based card"
|
||||||
echo "3. Realtek 8029 based card (emulated by Qemu)"
|
echo "3. Realtek 8029 based card (emulated by Qemu)"
|
||||||
echo "4. NE2000, 3com 503 or WD based card (NE2000 is emulated by Bochs)"
|
echo "4. NE2000, 3com 503 or WD based card (emulated by Bochs)"
|
||||||
echo "5. NE2000, with default settings for Bochs emulation in $LOCALRC"
|
echo "5. 3Com 501 or 3Com 509 based card"
|
||||||
echo "6. A 3com 501 or 509"
|
echo "6. Different Ethernet card (no networking)"
|
||||||
echo "7. A different Ethernet card (no networking)"
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "With some cards, you'll have to edit $LOCALRC "
|
echo "With some cards, you'll have to edit $LOCALRC after installing."
|
||||||
echo "after installing to the proper parameters."
|
|
||||||
echo ""
|
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? [0] "
|
||||||
read eth
|
read eth
|
||||||
driver=""
|
driver=""
|
||||||
driverargs=""
|
driverargs=""
|
||||||
config_warn="Note: After installing, please edit $LOCALRC to the right configuration."
|
config_warn="
|
||||||
|
Note: After installing, edit $LOCALRC to the right configuration.
|
||||||
|
If you chose option 4, the defaults for emulation by Bochs have been set."
|
||||||
case "$eth" in
|
case "$eth" in
|
||||||
1) driver=fxp; ;;
|
1) driver=fxp; ;;
|
||||||
2) driver=rtl8139; ;;
|
2) driver=rtl8139; ;;
|
||||||
3) driver=dp8390; driverargs="dp8390_arg='DPETH0=pci'"; ;;
|
3) driver=dp8390; driverargs="dp8390_arg='DPETH0=pci'"; ;;
|
||||||
4) driver=dp8390; driverargs="#dp8390_arg='DPETH0=port:irq:memory'";
|
4) driver=dp8390; driverargs="dp8390_arg='DPETH0=240:9'";
|
||||||
echo $config_warn;
|
echo "$config_warn";
|
||||||
;;
|
;;
|
||||||
5) driver=dp8390; driverargs="dp8390_arg='DPETH0=240:9'"; ;;
|
5) driver=dpeth; driverargs="#dpeth_arg='DPETH0=port:irq:memory'";
|
||||||
6) driver=dpeth; driverargs="#dpeth_arg='DPETH0=port:irq:memory'";
|
echo "$config_warn";
|
||||||
echo $config_warn;
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -238,30 +252,35 @@ i86)
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
blockdefault=4
|
blockdefault=4
|
||||||
echo " --- Step 9: Select a disk block size -----------------------------"
|
|
||||||
|
|
||||||
echo "The default block size on the disk is $blockdefault KB.
|
echo ""
|
||||||
If you have a small disk or small RAM you may want 1 KB blocks.
|
echo " --- Step 4: Select a block size ---------------------------------------"
|
||||||
Please type 1 then, or leave it at the default.
|
echo ""
|
||||||
"
|
|
||||||
|
echo "The maximum (and default) file system block size is $blockdefault KB."
|
||||||
|
echo "For a small disk or small RAM you may want 1 or 2 KB blocks."
|
||||||
|
echo ""
|
||||||
|
|
||||||
while [ -z "$blocksize" ]
|
while [ -z "$blocksize" ]
|
||||||
do echo -n "Block size in kilobytes [$blockdefault]? "
|
do echo -n "Block size in kilobytes? [$blockdefault] "
|
||||||
read blocksize
|
read blocksize
|
||||||
if [ -z "$blocksize" ]
|
if [ -z "$blocksize" ]
|
||||||
then blocksize=$blockdefault
|
then blocksize=$blockdefault
|
||||||
fi
|
fi
|
||||||
if [ "$blocksize" -ne 1 -a "$blocksize" -ne 2 -a "$blocksize" -ne $blockdefault ]
|
if [ "$blocksize" -ne 1 -a "$blocksize" -ne 2 -a "$blocksize" -ne $blockdefault ]
|
||||||
then echo "$blocksize bogus block size. 1, 2 or $blockdefault please."
|
then echo "$blocksize KB is a bogus block size; 1, 2 or $blockdefault KB please."
|
||||||
blocksize=""
|
blocksize=""
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
blocksizebytes="`expr $blocksize '*' 1024`"
|
blocksizebytes="`expr $blocksize '*' 1024`"
|
||||||
echo " --- Step 10: Allocate swap space ----------------------------------"
|
|
||||||
|
echo ""
|
||||||
|
echo " --- Step 5: Allocate swap space ---------------------------------------"
|
||||||
|
echo ""
|
||||||
|
|
||||||
echo -n "How much swap space would you like? Swapspace is only needed if this
|
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
|
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
|
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.
|
at once, I suggest setting it to the memory size.
|
||||||
|
|
||||||
@ -271,28 +290,22 @@ swapsize=
|
|||||||
read swapsize
|
read swapsize
|
||||||
test -z "$swapsize" && swapsize=$swapadv
|
test -z "$swapsize" && swapsize=$swapadv
|
||||||
|
|
||||||
echo "
|
|
||||||
--- Step 11: Check all your choices ----------------------------------
|
|
||||||
"
|
|
||||||
|
|
||||||
echo -n "You have created a partition named: /dev/$primary
|
echo "
|
||||||
|
You have selected to install MINIX in the partition /dev/$primary.
|
||||||
The following subpartitions are about to be created on /dev/$primary:
|
The following subpartitions are about to be created on /dev/$primary:
|
||||||
|
|
||||||
Root subpartition: /dev/$root 2 MB
|
Root subpartition: /dev/$root 16 MB
|
||||||
Swap subpartition: /dev/$swap $swapsize kb
|
Swap subpartition: /dev/$swap $swapsize KB
|
||||||
/usr subpartition: /dev/$usr rest of $primary
|
/usr subpartition: /dev/$usr rest of $primary
|
||||||
|
"
|
||||||
Hit ENTER if everything looks fine, or hit DEL to bail out if you want to
|
|
||||||
think it over. The next step will overwrite /dev/$primary.
|
|
||||||
:"
|
|
||||||
read ret
|
|
||||||
# Secondary master bootstrap.
|
# Secondary master bootstrap.
|
||||||
installboot -m /dev/$primary /usr/mdec/masterboot >/dev/null || exit
|
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:4096* $p3 81:0+ || exit
|
partition /dev/$primary 1 81:32768* $p3 81:0+ > /dev/null || exit
|
||||||
|
|
||||||
if [ "$swapsize" -gt 0 ]
|
if [ "$swapsize" -gt 0 ]
|
||||||
then
|
then
|
||||||
@ -304,17 +317,21 @@ else
|
|||||||
swap=
|
swap=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo " --- Step 12: Wait for bad block detection ----------------------------"
|
echo ""
|
||||||
|
echo " --- Step 6: Wait for bad block detection ------------------------------"
|
||||||
|
echo ""
|
||||||
|
|
||||||
mkfs -B $blocksizebytes /dev/$usr
|
mkfs -B $blocksizebytes /dev/$usr
|
||||||
echo "\
|
echo "Scanning /dev/$usr for bad blocks. (Hit DEL to stop the scan if you are"
|
||||||
Scanning /dev/$usr for bad blocks. (Hit DEL to stop the scan if you are
|
echo "absolutely sure that there can not be any bad blocks. Otherwise just wait.)"
|
||||||
absolutely sure that there can not be any bad blocks. Otherwise just wait.)"
|
echo ""
|
||||||
trap ': nothing' 2
|
trap ': nothing' 2
|
||||||
readall -b /dev/$usr | sh
|
readall -b /dev/$usr | sh
|
||||||
trap 2
|
trap 2
|
||||||
|
|
||||||
echo " --- Step 13: Wait for files to be copied ------------------------------"
|
echo ""
|
||||||
|
echo " --- Step 7: Wait for files to be copied -------------------------------"
|
||||||
|
echo ""
|
||||||
|
|
||||||
mount /dev/$usr /mnt || exit # Mount the intended /usr.
|
mount /dev/$usr /mnt || exit # Mount the intended /usr.
|
||||||
|
|
||||||
@ -395,14 +412,14 @@ i86)
|
|||||||
test $cache -lt 64 && cache=0
|
test $cache -lt 64 && cache=0
|
||||||
test $cache -gt 1024 && cache=1024
|
test $cache -gt 1024 && cache=1024
|
||||||
esac
|
esac
|
||||||
echo "Second level file system block cache set to $cache kb."
|
# echo "Second level file system block cache set to $cache KB."
|
||||||
if [ $cache -eq 0 ]; then cache=; else cache="ramsize=$cache"; fi
|
if [ $cache -eq 0 ]; then cache=; else cache="ramsize=$cache"; fi
|
||||||
|
|
||||||
# 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 $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
|
edparams /dev/$root "rootdev=$root; ramimagedev=$root; $disable $cache; 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
|
||||||
pfile="/usr/src/tools/fdbootparams"
|
pfile="/usr/src/tools/fdbootparams"
|
||||||
echo "Remembering boot parameters in ${pfile}."
|
# echo "Remembering boot parameters in ${pfile}."
|
||||||
echo "rootdev=$root; ramimagedev=$root; $cache; save" >$pfile || exit
|
echo "rootdev=$root; ramimagedev=$root; $cache; save" >$pfile || exit
|
||||||
sync
|
sync
|
||||||
|
|
||||||
@ -410,6 +427,7 @@ echo "
|
|||||||
Please type 'shutdown' to exit MINIX 3 and enter the boot monitor.
|
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
|
At the boot monitor prompt, you can type 'boot $primary' to try the
|
||||||
newly installed MINIX system.
|
newly installed MINIX system.
|
||||||
|
|
||||||
See Part IV: Testing in the usage manual.
|
See Part IV: Testing in the usage manual.
|
||||||
"
|
"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user