diff options
author | dcs <dcs@FreeBSD.org> | 2000-06-14 19:39:31 +0000 |
---|---|---|
committer | dcs <dcs@FreeBSD.org> | 2000-06-14 19:39:31 +0000 |
commit | 0b5c550021509295049c4582bad9db5426c1644e (patch) | |
tree | 82f4540b20b0c3a10ca0be98a34ceb2f85a6556b /sys/boot | |
parent | cb251cf529d74a7b1721edb7f1bf22b19f4c6f7f (diff) | |
download | FreeBSD-src-0b5c550021509295049c4582bad9db5426c1644e.zip FreeBSD-src-0b5c550021509295049c4582bad9db5426c1644e.tar.gz |
Revert to 1.8
Diffstat (limited to 'sys/boot')
-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 696985f..e9369df 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 |