Date: Sun, 12 Sep 2021 05:42:03 GMT From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 8df27f0acea8 - stable/13 - lualoader: use more concise verbiage for autoboot Message-ID: <202109120542.18C5g3i5009339@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=8df27f0acea8a11d48431f84b84fa6d52b73a64d commit 8df27f0acea8a11d48431f84b84fa6d52b73a64d Author: Kyle Evans <kevans@FreeBSD.org> AuthorDate: 2021-09-08 21:34:33 +0000 Commit: Kyle Evans <kevans@FreeBSD.org> CommitDate: 2021-09-12 05:34:28 +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. (cherry picked from commit ed107537b43cabf7a18e73a17856a9d9e170c6e9) --- 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 f7ca0a486ee4..82cc52d4dbf5 100644 --- a/stand/lua/menu.lua +++ b/stand/lua/menu.lua @@ -515,8 +515,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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109120542.18C5g3i5009339>