diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-10-11 02:43:42 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-10-11 02:43:42 +0000 |
commit | 3f11d4d9df216faea4e18024ef1f5f4760e562ad (patch) | |
tree | bcdff55d5d0222d652062092e5ad28343d6f62b6 /sys/i386/boot | |
parent | bae438b28c46d5b77df74c0989b15c49dd9317d1 (diff) | |
download | FreeBSD-src-3f11d4d9df216faea4e18024ef1f5f4760e562ad.zip FreeBSD-src-3f11d4d9df216faea4e18024ef1f5f4760e562ad.tar.gz |
Fixed the options hd(1,... to be more accurate (removed word options it
now reads:
printf("use hd(1,a)/386bsd to boot sd0 when wd0 is also installed\n");
I know the person wanted more explination, but there is little room in
the boot blocks for verbose text!
Diffstat (limited to 'sys/i386/boot')
-rw-r--r-- | sys/i386/boot/biosboot/boot.c | 10 | ||||
-rw-r--r-- | sys/i386/boot/boot.c | 10 |
2 files changed, 16 insertions, 4 deletions
diff --git a/sys/i386/boot/biosboot/boot.c b/sys/i386/boot/biosboot/boot.c index c99b610..ef347ee 100644 --- a/sys/i386/boot/biosboot/boot.c +++ b/sys/i386/boot/biosboot/boot.c @@ -24,11 +24,17 @@ * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. + * + * $Id$ */ /* * HISTORY * $Log: boot.c,v $ + * Revision 1.5 1993/10/09 08:31:39 chmr + * Changed the "Insert filesystem floppy" prompt to give the user a choice in + * which drive he wants the root file system (A or B). + * * Revision 1.4 1993/10/08 20:19:23 rgrimes * Remove the ``loader overlaps bss, kernel must bzero'' printf since that * is so often reported as an error condition when it is not. We print the @@ -143,8 +149,8 @@ int drive; ouraddr, argv[7] = memsize(0), argv[8] = memsize(1), - "$Revision: 1.4 $"); - printf("use options hd(1,...... to boot sd0 when wd0 is also installed\n"); + "$Revision: 1.5 $"); + printf("use hd(1,a)/386bsd to boot sd0 when wd0 is also installed\n"); gateA20(); loadstart: /***************************************************************\ diff --git a/sys/i386/boot/boot.c b/sys/i386/boot/boot.c index c99b610..ef347ee 100644 --- a/sys/i386/boot/boot.c +++ b/sys/i386/boot/boot.c @@ -24,11 +24,17 @@ * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. + * + * $Id$ */ /* * HISTORY * $Log: boot.c,v $ + * Revision 1.5 1993/10/09 08:31:39 chmr + * Changed the "Insert filesystem floppy" prompt to give the user a choice in + * which drive he wants the root file system (A or B). + * * Revision 1.4 1993/10/08 20:19:23 rgrimes * Remove the ``loader overlaps bss, kernel must bzero'' printf since that * is so often reported as an error condition when it is not. We print the @@ -143,8 +149,8 @@ int drive; ouraddr, argv[7] = memsize(0), argv[8] = memsize(1), - "$Revision: 1.4 $"); - printf("use options hd(1,...... to boot sd0 when wd0 is also installed\n"); + "$Revision: 1.5 $"); + printf("use hd(1,a)/386bsd to boot sd0 when wd0 is also installed\n"); gateA20(); loadstart: /***************************************************************\ |