diff options
| author | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-09-09 18:20:00 +0000 |
|---|---|---|
| committer | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-09-09 18:20:00 +0000 |
| commit | 23aecb010985809ecab5baad0ca54ce524adc125 (patch) | |
| tree | 954d44a5aa2df0445269104cccd2212207d557f4 /sys/boot/forth/support.4th | |
| parent | 3348fae50d07166e384f97508931428c1a1796d1 (diff) | |
Notes
Diffstat (limited to 'sys/boot/forth/support.4th')
| -rw-r--r-- | sys/boot/forth/support.4th | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/boot/forth/support.4th b/sys/boot/forth/support.4th index e3feb056cfe8..2bfc7e927226 100644 --- a/sys/boot/forth/support.4th +++ b/sys/boot/forth/support.4th @@ -1296,8 +1296,8 @@ also builtins \ Try to load a kernel; the kernel name is taken from one of \ the following lists, as ordered: \ -\ 1. The "kernel" environment variable -\ 2. The "bootfile" environment variable +\ 1. The "bootfile" environment variable +\ 2. The "kernel" environment variable \ \ Flags are passed, if available. The parameter args must be 2 \ if flags are being passed, or 1 if they should be ignored. @@ -1312,14 +1312,14 @@ also builtins end-locals \ Check if a default kernel name exists at all, exits if not - s" kernel" getenv dup -1 <> if + s" bootfile" getenv dup -1 <> if to kernel flags kernel args try_multiple_kernels dup 0= if exit then then drop - s" bootfile" getenv dup -1 <> if + s" kernel" getenv dup -1 <> if to kernel else drop @@ -1333,8 +1333,8 @@ also builtins \ Try to load a kernel; the kernel name is taken from one of \ the following lists, as ordered: \ -\ 1. The "kernel" environment variable -\ 2. The "bootfile" environment variable +\ 1. The "bootfile" environment variable +\ 2. The "kernel" environment variable \ \ Flags are passed, if provided. \ @@ -1418,8 +1418,8 @@ also builtins \ Try to load a kernel; the kernel name is taken from one of \ the following lists, as ordered: \ -\ 1. The "kernel" environment variable -\ 2. The "bootfile" environment variable +\ 1. The "bootfile" environment variable +\ 2. The "kernel" environment variable \ 3. The "path" argument \ \ Flags are passed, if provided. |
