diff options
| author | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-06-12 16:45:01 +0000 |
|---|---|---|
| committer | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-06-12 16:45:01 +0000 |
| commit | d742bdfc760eb62ac6600a6779e733c79db3a679 (patch) | |
| tree | 141b0a755a1fb29868b229f66427d3a1e76c7778 /sys/boot/forth/loader.4th | |
| parent | 23bab6002c07828222ad631f96ecd3e1cafda611 (diff) | |
Notes
Diffstat (limited to 'sys/boot/forth/loader.4th')
| -rw-r--r-- | sys/boot/forth/loader.4th | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th index 8d5f67028171..e9369df3f4a6 100644 --- a/sys/boot/forth/loader.4th +++ b/sys/boot/forth/loader.4th @@ -24,13 +24,29 @@ \ \ $FreeBSD$ -s" arch-alpha" environment? [if] -s" loader_version" environment? 3 < abort" Loader version 0.3+ required" -[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] -s" loader_version" environment? 8 < abort" Loader version 0.8+ required" -[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 |
