efi.4th (55b1c6e7e4a6909004e13c6d2f328f911a8e7b83) | efi.4th (5ef2174a50709655163fbd8a81d0f76a24e04ad0) |
---|---|
1\ Copyright (c) 2016 Netflix, Inc 2\ All rights reserved. 3\ 4\ Redistribution and use in source and binary forms, with or without 5\ modification, are permitted provided that the following conditions 6\ are met: 7\ 1. Redistributions of source code must retain the above copyright 8\ notice, this list of conditions and the following disclaimer. --- 12 unchanged lines hidden (view full) --- 21\ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23\ SUCH DAMAGE. 24\ 25\ $FreeBSD$ 26 27only forth definitions 28 | 1\ Copyright (c) 2016 Netflix, Inc 2\ All rights reserved. 3\ 4\ Redistribution and use in source and binary forms, with or without 5\ modification, are permitted provided that the following conditions 6\ are met: 7\ 1. Redistributions of source code must retain the above copyright 8\ notice, this list of conditions and the following disclaimer. --- 12 unchanged lines hidden (view full) --- 21\ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23\ SUCH DAMAGE. 24\ 25\ $FreeBSD$ 26 27only forth definitions 28 |
29\ Place holder for more functions | 29: efiboot? ( -- flag ) 30 s" efi-version" getenv -1 <> dup if 31 swap drop ( c-addr flag -- flag ) 32 then 33; 34 35: maybe-efi-resizecons 36 efiboot? if 37 efi-autoresizecons 38 then 39; 40 |
30.( EFI boot environment) cr | 41.( EFI boot environment) cr |