From 504119265e7fac446227238afe922e26ae4ed143 Mon Sep 17 00:00:00 2001 From: "Daniel C. Sobral" Date: Mon, 18 Sep 2000 22:42:54 +0000 Subject: [PATCH] Check for the correct minimum version required by the current code. I hope I got this right... :-) --- sys/boot/forth/loader.4th | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th index d0633682388d..9ef315e45a96 100644 --- a/sys/boot/forth/loader.4th +++ b/sys/boot/forth/loader.4th @@ -26,8 +26,8 @@ s" arch-alpha" environment? [if] [if] s" loader_version" environment? [if] - 3 < [if] - .( Loader version 0.3+ required) cr + 11 < [if] + .( Loader version 1.1+ required) cr abort [then] [else] @@ -38,8 +38,8 @@ s" arch-alpha" environment? [if] [if] s" arch-i386" environment? [if] [if] s" loader_version" environment? [if] - 8 < [if] - .( Loader version 0.8+ required) cr + 10 < [if] + .( Loader version 1.0+ required) cr abort [then] [else]