diff options
| author | Devin Teske <dteske@FreeBSD.org> | 2015-06-02 22:23:20 +0000 |
|---|---|---|
| committer | Devin Teske <dteske@FreeBSD.org> | 2015-06-02 22:23:20 +0000 |
| commit | 46c39cc07732f9b41273da54c50bf3a8d31f8439 (patch) | |
| tree | 6fc1f432de6e163265660396a71edd31ce69e18f /sys/boot/forth | |
| parent | 37be506339c3c90ec2045ef5009659cbdff84127 (diff) | |
Notes
Diffstat (limited to 'sys/boot/forth')
| -rw-r--r-- | sys/boot/forth/support.4th | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/forth/support.4th b/sys/boot/forth/support.4th index 367d157d0a60..08f500496d92 100644 --- a/sys/boot/forth/support.4th +++ b/sys/boot/forth/support.4th @@ -1437,12 +1437,12 @@ also builtins abort" Unable to load a kernel!" ; -: load_xen ( -- ) +: load_xen ( -- flag ) s" xen_kernel" getenv dup -1 <> if - 1 1 load + 1 1 load ( c-addr/u flag N -- flag ) else drop - 0 + 0 ( -1 -- flag ) then ; |
