svn commit: r329424 - head/stand/lua
Kyle Evans
kevans at FreeBSD.org
Sat Feb 17 03:12:36 UTC 2018
Author: kevans
Date: Sat Feb 17 03:12:35 2018
New Revision: 329424
URL: https://svnweb.freebsd.org/changeset/base/329424
Log:
stand/lua: Don't set autoboot_delay=NO in menu autoboot sequence
We'll set it later if "Escape to loader prompt" is actually chosen, there's
no need to be setting it here.
Modified:
head/stand/lua/menu.lua
Modified: head/stand/lua/menu.lua
==============================================================================
--- head/stand/lua/menu.lua Sat Feb 17 02:14:01 2018 (r329423)
+++ head/stand/lua/menu.lua Sat Feb 17 03:12:35 2018 (r329424)
@@ -375,8 +375,6 @@ function menu.autoboot()
if ch == core.KEY_ENTER then
break;
else
- -- prevent autoboot when escaping to interpreter
- loader.setenv("autoboot_delay", "NO");
-- erase autoboot msg
screen.setcursor(0, y);
print(" "
More information about the svn-src-head
mailing list