git: ed107537b43c - main - lualoader: use more concise verbiage for autoboot

Kyle Evans kevans at FreeBSD.org
Thu Sep 9 07:02:24 UTC 2021


The branch main has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=ed107537b43cabf7a18e73a17856a9d9e170c6e9

commit ed107537b43cabf7a18e73a17856a9d9e170c6e9
Author:     Kyle Evans <kevans at FreeBSD.org>
AuthorDate: 2021-09-08 21:34:33 +0000
Commit:     Kyle Evans <kevans at FreeBSD.org>
CommitDate: 2021-09-09 07:01:50 +0000

    lualoader: use more concise verbiage for autoboot
    
    The behavior remains the same, but lualoader now uses the more concise
    verbiage that forthloader used.  This is particularly important because
    the previous line would exceed the right boundary of the menu and run
    straight into space that would typically be allowed for the logo.
    
    This makes it slightly easier to port logos from forthloader to
    lualoader.
---
 stand/lua/menu.lua | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/stand/lua/menu.lua b/stand/lua/menu.lua
index a6470e9f70ef..d1e1ee012834 100644
--- a/stand/lua/menu.lua
+++ b/stand/lua/menu.lua
@@ -522,8 +522,7 @@ function menu.autoboot(delay)
 			last = time
 			screen.setcursor(x, y)
 			print("Autoboot in " .. time ..
-			    " seconds, hit [Enter] to boot" ..
-			    " or any other key to stop     ")
+			    " seconds. [Space] to pause")
 			screen.defcursor()
 		end
 		if io.ischar() then


More information about the dev-commits-src-all mailing list