diff options
author | peter <peter@FreeBSD.org> | 2000-06-14 07:18:18 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-06-14 07:18:18 +0000 |
commit | f2f3d42fded199ec1e64eb2c1eeaa57e0543aa37 (patch) | |
tree | 53b51fa86e3609a39f13dce07b9d0d9a1ce762d0 | |
parent | 27235775e10be39868b9f27f126f607c31596275 (diff) | |
download | FreeBSD-src-f2f3d42fded199ec1e64eb2c1eeaa57e0543aa37.zip FreeBSD-src-f2f3d42fded199ec1e64eb2c1eeaa57e0543aa37.tar.gz |
With apologies to dcs, temporarily comment out the version check code. It
is failing for everybody that I have spoken with that has tried it.
FreeBSD/i386 bootstrap loader, Revision 0.8
(root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000)
Loader version 0.3+ required
Aborted!
start not found
Note that the 0.3+ message is from inside the arch-alpha block, not the
i386 block of code. And even then, 0.8 is higher than 0.3.
This prevents the rest of the loader.conf stuff working. :-/
-rw-r--r-- | sys/boot/forth/loader.4th | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th index e9369df..696985f 100644 --- a/sys/boot/forth/loader.4th +++ b/sys/boot/forth/loader.4th @@ -24,29 +24,29 @@ \ \ $FreeBSD$ -s" arch-alpha" environment? [if] [if] - s" loader_version" environment? [if] - 3 < [if] - .( Loader version 0.3+ required) cr - abort - [then] - [else] - .( Could not get loader version!) cr - abort - [then] -[then] [then] - -s" arch-i386" environment? [if] [if] - s" loader_version" environment? [if] - 8 < [if] - .( Loader version 0.8+ required) cr - abort - [then] - [else] - .( Could not get loader version!) cr - abort - [then] -[then] [then] +\ s" arch-alpha" environment? [if] [if] +\ s" loader_version" environment? [if] +\ 3 < [if] +\ .( Loader version 0.3+ required) cr +\ abort +\ [then] +\ [else] +\ .( Could not get loader version!) cr +\ abort +\ [then] +\ [then] [then] + +\ s" arch-i386" environment? [if] [if] +\ s" loader_version" environment? [if] +\ 8 < [if] +\ .( Loader version 0.8+ required) cr +\ abort +\ [then] +\ [else] +\ .( Could not get loader version!) cr +\ abort +\ [then] +\ [then] [then] include /boot/support.4th |