From 9afece1e2fb079d664a036c67362d48ae8d69a48 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Thu, 22 Mar 2018 04:16:14 +0000 Subject: [PATCH] forthloader: Don't break BIOS boots... I thought I tested this scenario, but clearly I failed to. =( BIOS boots won't have efi-autoresizecons, so trying to use it as a forth word fails during include. Use evaluate on "efi-autoresizecons" as a string instead to move any potential errors to runtime- safely after we've already checked that we're booting UEFI. Pointy hat to: me Reported by: cy --- stand/forth/efi.4th | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/forth/efi.4th b/stand/forth/efi.4th index 4778b405455..8b58aee1ea4 100644 --- a/stand/forth/efi.4th +++ b/stand/forth/efi.4th @@ -34,7 +34,7 @@ only forth definitions : maybe-efi-resizecons efiboot? if - efi-autoresizecons + s" efi-autoresizecons" evaluate then ;