From 49e7f72d8739ccccf46c96c09a29cbf7071cd418 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Wed, 14 Jun 2000 07:18:18 +0000 Subject: [PATCH] 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. :-/ --- sys/boot/forth/loader.4th | 44 +++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th index e9369df3f4a6..696985fd0a6f 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-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-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