xref: /freebsd/stand/lua/menu.lua (revision e12ff891366cf94db4bfe4c2c810b26a5531053d)
1088b4f5fSWarner Losh--
272e39d71SKyle Evans-- SPDX-License-Identifier: BSD-2-Clause-FreeBSD
372e39d71SKyle Evans--
4088b4f5fSWarner Losh-- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org>
5*e12ff891SKyle Evans-- Copyright (c) 2018 Kyle Evans <kevans@FreeBSD.org>
6088b4f5fSWarner Losh-- All rights reserved.
7088b4f5fSWarner Losh--
8088b4f5fSWarner Losh-- Redistribution and use in source and binary forms, with or without
9088b4f5fSWarner Losh-- modification, are permitted provided that the following conditions
10088b4f5fSWarner Losh-- are met:
11088b4f5fSWarner Losh-- 1. Redistributions of source code must retain the above copyright
12088b4f5fSWarner Losh--    notice, this list of conditions and the following disclaimer.
13088b4f5fSWarner Losh-- 2. Redistributions in binary form must reproduce the above copyright
14088b4f5fSWarner Losh--    notice, this list of conditions and the following disclaimer in the
15088b4f5fSWarner Losh--    documentation and/or other materials provided with the distribution.
16088b4f5fSWarner Losh--
17088b4f5fSWarner Losh-- THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18088b4f5fSWarner Losh-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19088b4f5fSWarner Losh-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20088b4f5fSWarner Losh-- ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21088b4f5fSWarner Losh-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22088b4f5fSWarner Losh-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23088b4f5fSWarner Losh-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24088b4f5fSWarner Losh-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25088b4f5fSWarner Losh-- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26088b4f5fSWarner Losh-- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27088b4f5fSWarner Losh-- SUCH DAMAGE.
28088b4f5fSWarner Losh--
29088b4f5fSWarner Losh-- $FreeBSD$
30088b4f5fSWarner Losh--
31088b4f5fSWarner Losh
3276c75816SKyle Evanslocal cli = require("cli")
33aedd6be5SKyle Evanslocal core = require("core")
34aedd6be5SKyle Evanslocal color = require("color")
35aedd6be5SKyle Evanslocal config = require("config")
36aedd6be5SKyle Evanslocal screen = require("screen")
37aedd6be5SKyle Evanslocal drawer = require("drawer")
38088b4f5fSWarner Losh
39aedd6be5SKyle Evanslocal menu = {}
40c8518398SKyle Evans
41beafe961SKyle Evanslocal drawn_menu
4243f7d9d1SKyle Evanslocal return_menu_entry = {
4343f7d9d1SKyle Evans	entry_type = core.MENU_RETURN,
4443f7d9d1SKyle Evans	name = "Back to main menu" .. color.highlight(" [Backspace]"),
4543f7d9d1SKyle Evans}
46ca16d83fSKyle Evans
4704af4229SKyle Evanslocal function OnOff(str, value)
4804af4229SKyle Evans	if value then
498ce1744fSKyle Evans		return str .. color.escapefg(color.GREEN) .. "On" ..
506dd078dfSToomas Soome		    color.resetfg()
51e15abd1fSKyle Evans	else
528ce1744fSKyle Evans		return str .. color.escapefg(color.RED) .. "off" ..
536dd078dfSToomas Soome		    color.resetfg()
54e15abd1fSKyle Evans	end
55e15abd1fSKyle Evansend
56e15abd1fSKyle Evans
579ed6f9efSKyle Evanslocal function bootenvSet(env)
587efc058fSKyle Evans	loader.setenv("vfs.root.mountfrom", env)
597efc058fSKyle Evans	loader.setenv("currdev", env .. ":")
607efc058fSKyle Evans	config.reload()
617efc058fSKyle Evansend
627efc058fSKyle Evans
63b5746545SKyle Evans-- Module exports
648d415029SKyle Evansmenu.handlers = {
658d415029SKyle Evans	-- Menu handlers take the current menu and selected entry as parameters,
668d415029SKyle Evans	-- and should return a boolean indicating whether execution should
678d415029SKyle Evans	-- continue or not. The return value may be omitted if this entry should
688d415029SKyle Evans	-- have no bearing on whether we continue or not, indicating that we
698d415029SKyle Evans	-- should just continue after execution.
70e2df27e3SKyle Evans	[core.MENU_ENTRY] = function(_, entry)
718d415029SKyle Evans		-- run function
72aedd6be5SKyle Evans		entry.func()
738d415029SKyle Evans	end,
74e2df27e3SKyle Evans	[core.MENU_CAROUSEL_ENTRY] = function(_, entry)
758d415029SKyle Evans		-- carousel (rotating) functionality
76aedd6be5SKyle Evans		local carid = entry.carousel_id
77aedd6be5SKyle Evans		local caridx = config.getCarouselIndex(carid)
784f437f9eSKyle Evans		local choices = entry.items
794f437f9eSKyle Evans		if type(choices) == "function" then
804f437f9eSKyle Evans			choices = choices()
814f437f9eSKyle Evans		end
829f71d421SKyle Evans		if #choices > 0 then
83aedd6be5SKyle Evans			caridx = (caridx % #choices) + 1
84aedd6be5SKyle Evans			config.setCarouselIndex(carid, caridx)
85aedd6be5SKyle Evans			entry.func(caridx, choices[caridx], choices)
868d415029SKyle Evans		end
878d415029SKyle Evans	end,
88e2df27e3SKyle Evans	[core.MENU_SUBMENU] = function(_, entry)
89da9ab827SKyle Evans		menu.process(entry.submenu)
908d415029SKyle Evans	end,
91e2df27e3SKyle Evans	[core.MENU_RETURN] = function(_, entry)
928d415029SKyle Evans		-- allow entry to have a function/side effect
939f71d421SKyle Evans		if entry.func ~= nil then
94aedd6be5SKyle Evans			entry.func()
958d415029SKyle Evans		end
96aedd6be5SKyle Evans		return false
978d415029SKyle Evans	end,
98aedd6be5SKyle Evans}
99280e990bSKyle Evans-- loader menu tree is rooted at menu.welcome
100088b4f5fSWarner Losh
1017efc058fSKyle Evansmenu.boot_environments = {
1027efc058fSKyle Evans	entries = {
1037efc058fSKyle Evans		-- return to welcome menu
10443f7d9d1SKyle Evans		return_menu_entry,
1057efc058fSKyle Evans		{
1067efc058fSKyle Evans			entry_type = core.MENU_CAROUSEL_ENTRY,
1077efc058fSKyle Evans			carousel_id = "be_active",
1087efc058fSKyle Evans			items = core.bootenvList,
1097efc058fSKyle Evans			name = function(idx, choice, all_choices)
1107efc058fSKyle Evans				if #all_choices == 0 then
1117efc058fSKyle Evans					return "Active: "
1127efc058fSKyle Evans				end
1137efc058fSKyle Evans
1147efc058fSKyle Evans				local is_default = (idx == 1)
1157efc058fSKyle Evans				local bootenv_name = ""
1167efc058fSKyle Evans				local name_color
1177efc058fSKyle Evans				if is_default then
1188ce1744fSKyle Evans					name_color = color.escapefg(color.GREEN)
1197efc058fSKyle Evans				else
1208ce1744fSKyle Evans					name_color = color.escapefg(color.BLUE)
1217efc058fSKyle Evans				end
1227efc058fSKyle Evans				bootenv_name = bootenv_name .. name_color ..
1238ce1744fSKyle Evans				    choice .. color.resetfg()
1247efc058fSKyle Evans				return color.highlight("A").."ctive: " ..
1257efc058fSKyle Evans				    bootenv_name .. " (" .. idx .. " of " ..
1267efc058fSKyle Evans				    #all_choices .. ")"
1277efc058fSKyle Evans			end,
128e2df27e3SKyle Evans			func = function(_, choice, _)
1297efc058fSKyle Evans				bootenvSet(choice)
1307efc058fSKyle Evans			end,
1317efc058fSKyle Evans			alias = {"a", "A"},
1327efc058fSKyle Evans		},
1337efc058fSKyle Evans		{
1347efc058fSKyle Evans			entry_type = core.MENU_ENTRY,
1357efc058fSKyle Evans			name = function()
1367efc058fSKyle Evans				return color.highlight("b") .. "ootfs: " ..
1377efc058fSKyle Evans				    core.bootenvDefault()
1387efc058fSKyle Evans			end,
1397efc058fSKyle Evans			func = function()
1407efc058fSKyle Evans				-- Reset active boot environment to the default
1417efc058fSKyle Evans				config.setCarouselIndex("be_active", 1)
1427efc058fSKyle Evans				bootenvSet(core.bootenvDefault())
1437efc058fSKyle Evans			end,
1447efc058fSKyle Evans			alias = {"b", "B"},
1457efc058fSKyle Evans		},
1467efc058fSKyle Evans	},
1477efc058fSKyle Evans}
1487efc058fSKyle Evans
149088b4f5fSWarner Loshmenu.boot_options = {
150d8757746SKyle Evans	entries = {
151088b4f5fSWarner Losh		-- return to welcome menu
15243f7d9d1SKyle Evans		return_menu_entry,
153088b4f5fSWarner Losh		-- load defaults
154088b4f5fSWarner Losh		{
155a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
156a51f9f0cSKyle Evans			name = "Load System " .. color.highlight("D") ..
157a51f9f0cSKyle Evans			    "efaults",
158a51f9f0cSKyle Evans			func = core.setDefaults,
1593cd5547bSKyle Evans			alias = {"d", "D"},
160088b4f5fSWarner Losh		},
161088b4f5fSWarner Losh		{
162a7cf0562SKyle Evans			entry_type = core.MENU_SEPARATOR,
163088b4f5fSWarner Losh		},
164088b4f5fSWarner Losh		{
165a7cf0562SKyle Evans			entry_type = core.MENU_SEPARATOR,
166a51f9f0cSKyle Evans			name = "Boot Options:",
167088b4f5fSWarner Losh		},
168088b4f5fSWarner Losh		-- acpi
169088b4f5fSWarner Losh		{
170a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
171c1ab36f5SKyle Evans			visible = core.isSystem386,
172088b4f5fSWarner Losh			name = function()
173fd2b19b3SKyle Evans				return OnOff(color.highlight("A") ..
174aedd6be5SKyle Evans				    "CPI       :", core.acpi)
175088b4f5fSWarner Losh			end,
176a51f9f0cSKyle Evans			func = core.setACPI,
1773cd5547bSKyle Evans			alias = {"a", "A"},
178088b4f5fSWarner Losh		},
179088b4f5fSWarner Losh		-- safe mode
180088b4f5fSWarner Losh		{
181a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
182088b4f5fSWarner Losh			name = function()
18357099121SKyle Evans				return OnOff("Safe " .. color.highlight("M") ..
184aedd6be5SKyle Evans				    "ode  :", core.sm)
185088b4f5fSWarner Losh			end,
186a51f9f0cSKyle Evans			func = core.setSafeMode,
1873cd5547bSKyle Evans			alias = {"m", "M"},
188088b4f5fSWarner Losh		},
189088b4f5fSWarner Losh		-- single user
190088b4f5fSWarner Losh		{
191a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
192088b4f5fSWarner Losh			name = function()
193fd2b19b3SKyle Evans				return OnOff(color.highlight("S") ..
194aedd6be5SKyle Evans				    "ingle user:", core.su)
195088b4f5fSWarner Losh			end,
196a51f9f0cSKyle Evans			func = core.setSingleUser,
1973cd5547bSKyle Evans			alias = {"s", "S"},
198088b4f5fSWarner Losh		},
199088b4f5fSWarner Losh		-- verbose boot
200088b4f5fSWarner Losh		{
201a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
202088b4f5fSWarner Losh			name = function()
203fd2b19b3SKyle Evans				return OnOff(color.highlight("V") ..
204aedd6be5SKyle Evans				    "erbose    :", core.verbose)
205088b4f5fSWarner Losh			end,
206a51f9f0cSKyle Evans			func = core.setVerbose,
2073cd5547bSKyle Evans			alias = {"v", "V"},
208088b4f5fSWarner Losh		},
209d8757746SKyle Evans	},
210aedd6be5SKyle Evans}
211088b4f5fSWarner Losh
212088b4f5fSWarner Loshmenu.welcome = {
213303253e5SKyle Evans	entries = function()
214aedd6be5SKyle Evans		local menu_entries = menu.welcome.all_entries
215303253e5SKyle Evans		-- Swap the first two menu items on single user boot
2169f71d421SKyle Evans		if core.isSingleUserBoot() then
2179a0904b0SKyle Evans			-- We'll cache the swapped menu, for performance
2189f71d421SKyle Evans			if menu.welcome.swapped_menu ~= nil then
219aedd6be5SKyle Evans				return menu.welcome.swapped_menu
2209a0904b0SKyle Evans			end
2215c1b5165SKyle Evans			-- Shallow copy the table
222ee4e69f1SKyle Evans			menu_entries = core.deepCopyTable(menu_entries)
2235c1b5165SKyle Evans
2249a0904b0SKyle Evans			-- Swap the first two menu entries
2254b6da14cSKyle Evans			menu_entries[1], menu_entries[2] =
226aedd6be5SKyle Evans			    menu_entries[2], menu_entries[1]
227303253e5SKyle Evans
2289a0904b0SKyle Evans			-- Then set their names to their alternate names
2299a0904b0SKyle Evans			menu_entries[1].name, menu_entries[2].name =
2309a0904b0SKyle Evans			    menu_entries[1].alternate_name,
231aedd6be5SKyle Evans			    menu_entries[2].alternate_name
232aedd6be5SKyle Evans			menu.welcome.swapped_menu = menu_entries
233303253e5SKyle Evans		end
234aedd6be5SKyle Evans		return menu_entries
235303253e5SKyle Evans	end,
236303253e5SKyle Evans	all_entries = {
237088b4f5fSWarner Losh		-- boot multi user
238088b4f5fSWarner Losh		{
239a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
240a51f9f0cSKyle Evans			name = color.highlight("B") .. "oot Multi user " ..
241a51f9f0cSKyle Evans			    color.highlight("[Enter]"),
2425c1b5165SKyle Evans			-- Not a standard menu entry function!
243a51f9f0cSKyle Evans			alternate_name = color.highlight("B") ..
244a51f9f0cSKyle Evans			    "oot Multi user",
245088b4f5fSWarner Losh			func = function()
246aedd6be5SKyle Evans				core.setSingleUser(false)
247aedd6be5SKyle Evans				core.boot()
248088b4f5fSWarner Losh			end,
2493cd5547bSKyle Evans			alias = {"b", "B"},
250088b4f5fSWarner Losh		},
251088b4f5fSWarner Losh		-- boot single user
252088b4f5fSWarner Losh		{
253a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
254a51f9f0cSKyle Evans			name = "Boot " .. color.highlight("S") .. "ingle user",
2555c1b5165SKyle Evans			-- Not a standard menu entry function!
256a51f9f0cSKyle Evans			alternate_name = "Boot " .. color.highlight("S") ..
257a51f9f0cSKyle Evans			    "ingle user " .. color.highlight("[Enter]"),
258088b4f5fSWarner Losh			func = function()
259aedd6be5SKyle Evans				core.setSingleUser(true)
260aedd6be5SKyle Evans				core.boot()
261088b4f5fSWarner Losh			end,
2623cd5547bSKyle Evans			alias = {"s", "S"},
263088b4f5fSWarner Losh		},
264088b4f5fSWarner Losh		-- escape to interpreter
265088b4f5fSWarner Losh		{
266a7cf0562SKyle Evans			entry_type = core.MENU_RETURN,
267a51f9f0cSKyle Evans			name = color.highlight("Esc") .. "ape to loader prompt",
268ef625845SKyle Evans			func = function()
269aedd6be5SKyle Evans				loader.setenv("autoboot_delay", "NO")
270ef625845SKyle Evans			end,
2713cd5547bSKyle Evans			alias = {core.KEYSTR_ESCAPE},
272088b4f5fSWarner Losh		},
273088b4f5fSWarner Losh		-- reboot
274088b4f5fSWarner Losh		{
275a7cf0562SKyle Evans			entry_type = core.MENU_ENTRY,
276a51f9f0cSKyle Evans			name = color.highlight("R") .. "eboot",
277088b4f5fSWarner Losh			func = function()
278aedd6be5SKyle Evans				loader.perform("reboot")
279088b4f5fSWarner Losh			end,
2803cd5547bSKyle Evans			alias = {"r", "R"},
281088b4f5fSWarner Losh		},
282088b4f5fSWarner Losh		{
283a7cf0562SKyle Evans			entry_type = core.MENU_SEPARATOR,
284088b4f5fSWarner Losh		},
285088b4f5fSWarner Losh		{
286a7cf0562SKyle Evans			entry_type = core.MENU_SEPARATOR,
287a51f9f0cSKyle Evans			name = "Options:",
288088b4f5fSWarner Losh		},
289088b4f5fSWarner Losh		-- kernel options
290088b4f5fSWarner Losh		{
291a7cf0562SKyle Evans			entry_type = core.MENU_CAROUSEL_ENTRY,
292ada26c4aSKyle Evans			carousel_id = "kernel",
293ada26c4aSKyle Evans			items = core.kernelList,
294ada26c4aSKyle Evans			name = function(idx, choice, all_choices)
2959f71d421SKyle Evans				if #all_choices == 0 then
296aedd6be5SKyle Evans					return "Kernel: "
297088b4f5fSWarner Losh				end
298b1b1f2b8SKyle Evans
299aedd6be5SKyle Evans				local is_default = (idx == 1)
300aedd6be5SKyle Evans				local kernel_name = ""
301aedd6be5SKyle Evans				local name_color
3029f71d421SKyle Evans				if is_default then
3038ce1744fSKyle Evans					name_color = color.escapefg(color.GREEN)
304aedd6be5SKyle Evans					kernel_name = "default/"
305bcf48a15SKyle Evans				else
3068ce1744fSKyle Evans					name_color = color.escapefg(color.BLUE)
307b1b1f2b8SKyle Evans				end
308fd2b19b3SKyle Evans				kernel_name = kernel_name .. name_color ..
3098ce1744fSKyle Evans				    choice .. color.resetfg()
310fd2b19b3SKyle Evans				return color.highlight("K") .. "ernel: " ..
311fd2b19b3SKyle Evans				    kernel_name .. " (" .. idx .. " of " ..
312aedd6be5SKyle Evans				    #all_choices .. ")"
313088b4f5fSWarner Losh			end,
314e2df27e3SKyle Evans			func = function(_, choice, _)
315e414851fSKyle Evans				if loader.getenv("kernelname") ~= nil then
316e414851fSKyle Evans					loader.perform("unload")
317e414851fSKyle Evans				end
318322a2dddSKyle Evans				config.selectKernel(choice)
319088b4f5fSWarner Losh			end,
3203cd5547bSKyle Evans			alias = {"k", "K"},
321088b4f5fSWarner Losh		},
322088b4f5fSWarner Losh		-- boot options
323088b4f5fSWarner Losh		{
324a7cf0562SKyle Evans			entry_type = core.MENU_SUBMENU,
325a51f9f0cSKyle Evans			name = "Boot " .. color.highlight("O") .. "ptions",
3269a28f948SKyle Evans			submenu = menu.boot_options,
3273cd5547bSKyle Evans			alias = {"o", "O"},
328d8757746SKyle Evans		},
3297efc058fSKyle Evans		-- boot environments
3307efc058fSKyle Evans		{
3317efc058fSKyle Evans			entry_type = core.MENU_SUBMENU,
3327efc058fSKyle Evans			visible = function()
3337efc058fSKyle Evans				return core.isZFSBoot() and
3347efc058fSKyle Evans				    #core.bootenvList() > 1
3357efc058fSKyle Evans			end,
3367efc058fSKyle Evans			name = "Boot " .. color.highlight("E") .. "nvironments",
3377efc058fSKyle Evans			submenu = menu.boot_environments,
3387efc058fSKyle Evans			alias = {"e", "E"},
3397efc058fSKyle Evans		},
340bdf12807SKyle Evans		-- chainload
341bdf12807SKyle Evans		{
342bdf12807SKyle Evans			entry_type = core.MENU_ENTRY,
343bdf12807SKyle Evans			name = function()
344bdf12807SKyle Evans				return 'Chain' .. color.highlight("L") ..
345bdf12807SKyle Evans				    "oad " .. loader.getenv('chain_disk')
346bdf12807SKyle Evans			end,
347bdf12807SKyle Evans			func = function()
348bdf12807SKyle Evans				loader.perform("chain " ..
349bdf12807SKyle Evans				    loader.getenv('chain_disk'))
350bdf12807SKyle Evans			end,
351bdf12807SKyle Evans			visible = function()
352bdf12807SKyle Evans				return loader.getenv('chain_disk') ~= nil
353bdf12807SKyle Evans			end,
354bdf12807SKyle Evans			alias = {"l", "L"},
355bdf12807SKyle Evans		},
356d8757746SKyle Evans	},
357aedd6be5SKyle Evans}
358088b4f5fSWarner Losh
35920a81676SKyle Evansmenu.default = menu.welcome
36028384160SKyle Evans-- current_alias_table will be used to keep our alias table consistent across
36128384160SKyle Evans-- screen redraws, instead of relying on whatever triggered the redraw to update
36228384160SKyle Evans-- the local alias_table in menu.process.
36328384160SKyle Evansmenu.current_alias_table = {}
36420a81676SKyle Evans
3652a11b810SKyle Evansfunction menu.draw(menudef)
366beafe961SKyle Evans	-- Clear the screen, reset the cursor, then draw
367aedd6be5SKyle Evans	screen.clear()
3682a11b810SKyle Evans	menu.current_alias_table = drawer.drawscreen(menudef)
3692a11b810SKyle Evans	drawn_menu = menudef
370decacd91SKyle Evans	screen.defcursor()
37128384160SKyle Evansend
37228384160SKyle Evans
373ca16d83fSKyle Evans-- 'keypress' allows the caller to indicate that a key has been pressed that we
374ca16d83fSKyle Evans-- should process as our initial input.
3752a11b810SKyle Evansfunction menu.process(menudef, keypress)
3762a11b810SKyle Evans	assert(menudef ~= nil)
37728384160SKyle Evans
3782a11b810SKyle Evans	if drawn_menu ~= menudef then
3792a11b810SKyle Evans		menu.draw(menudef)
3807dcffa90SKyle Evans	end
381ca16d83fSKyle Evans
382da9ab827SKyle Evans	while true do
383ca16d83fSKyle Evans		local key = keypress or io.getchar()
384ca16d83fSKyle Evans		keypress = nil
385088b4f5fSWarner Losh
386b458bf0dSKyle Evans		-- Special key behaviors
3879f71d421SKyle Evans		if (key == core.KEY_BACKSPACE or key == core.KEY_DELETE) and
3882a11b810SKyle Evans		    menudef ~= menu.default then
389aedd6be5SKyle Evans			break
3909f71d421SKyle Evans		elseif key == core.KEY_ENTER then
391aedd6be5SKyle Evans			core.boot()
392041929aaSKyle Evans			-- Should not return.  If it does, escape menu handling
393041929aaSKyle Evans			-- and drop to loader prompt.
394041929aaSKyle Evans			return false
395abc4f7e7SKyle Evans		end
396abc4f7e7SKyle Evans
397abc4f7e7SKyle Evans		key = string.char(key)
398088b4f5fSWarner Losh		-- check to see if key is an alias
399aedd6be5SKyle Evans		local sel_entry = nil
40028384160SKyle Evans		for k, v in pairs(menu.current_alias_table) do
4019f71d421SKyle Evans			if key == k then
402aedd6be5SKyle Evans				sel_entry = v
40328384160SKyle Evans				break
404088b4f5fSWarner Losh			end
405088b4f5fSWarner Losh		end
406088b4f5fSWarner Losh
407088b4f5fSWarner Losh		-- if we have an alias do the assigned action:
4089f71d421SKyle Evans		if sel_entry ~= nil then
409aedd6be5SKyle Evans			local handler = menu.handlers[sel_entry.entry_type]
4102a11b810SKyle Evans			assert(handler ~= nil)
411da9ab827SKyle Evans			-- The handler's return value indicates if we
412da9ab827SKyle Evans			-- need to exit this menu.  An omitted or true
413da9ab827SKyle Evans			-- return value means to continue.
4142a11b810SKyle Evans			if handler(menudef, sel_entry) == false then
415da9ab827SKyle Evans				return
416aefcaa7eSKyle Evans			end
41728384160SKyle Evans			-- If we got an alias key the screen is out of date...
41828384160SKyle Evans			-- redraw it.
4192a11b810SKyle Evans			menu.draw(menudef)
420088b4f5fSWarner Losh		end
421088b4f5fSWarner Losh	end
422088b4f5fSWarner Loshend
423088b4f5fSWarner Losh
424da9ab827SKyle Evansfunction menu.run()
425041929aaSKyle Evans	local autoboot_key
426c84dbc53SKyle Evans	local delay = loader.getenv("autoboot_delay")
427c84dbc53SKyle Evans
428c84dbc53SKyle Evans	if delay ~= nil and delay:lower() == "no" then
429c84dbc53SKyle Evans		delay = nil
430c84dbc53SKyle Evans	else
431c84dbc53SKyle Evans		delay = tonumber(delay) or 10
432c84dbc53SKyle Evans	end
433c84dbc53SKyle Evans
434c84dbc53SKyle Evans	if delay == -1 then
435c84dbc53SKyle Evans		core.boot()
436c84dbc53SKyle Evans		return
437c84dbc53SKyle Evans	end
438c84dbc53SKyle Evans
439beafe961SKyle Evans	menu.draw(menu.default)
440c84dbc53SKyle Evans
441041929aaSKyle Evans	if delay ~= nil then
442041929aaSKyle Evans		autoboot_key = menu.autoboot(delay)
443041929aaSKyle Evans
444041929aaSKyle Evans		-- autoboot_key should return the key pressed.  It will only
445041929aaSKyle Evans		-- return nil if we hit the timeout and executed the timeout
446041929aaSKyle Evans		-- command.  Bail out.
447041929aaSKyle Evans		if autoboot_key == nil then
448041929aaSKyle Evans			return
449041929aaSKyle Evans		end
450041929aaSKyle Evans	end
451ca16d83fSKyle Evans
452ca16d83fSKyle Evans	menu.process(menu.default, autoboot_key)
453beafe961SKyle Evans	drawn_menu = nil
454da9ab827SKyle Evans
455da9ab827SKyle Evans	screen.defcursor()
456da9ab827SKyle Evans	print("Exiting menu!")
457088b4f5fSWarner Loshend
458088b4f5fSWarner Losh
459c84dbc53SKyle Evansfunction menu.autoboot(delay)
4601495c98fSKyle Evans	local x = loader.getenv("loader_menu_timeout_x") or 4
4611495c98fSKyle Evans	local y = loader.getenv("loader_menu_timeout_y") or 23
462c84dbc53SKyle Evans	local endtime = loader.time() + delay
463aedd6be5SKyle Evans	local time
4643244729fSKyle Evans	local last
465088b4f5fSWarner Losh	repeat
466aedd6be5SKyle Evans		time = endtime - loader.time()
4673244729fSKyle Evans		if last == nil or last ~= time then
4683244729fSKyle Evans			last = time
469aedd6be5SKyle Evans			screen.setcursor(x, y)
47057099121SKyle Evans			print("Autoboot in " .. time ..
47157099121SKyle Evans			    " seconds, hit [Enter] to boot" ..
472aedd6be5SKyle Evans			    " or any other key to stop     ")
473aedd6be5SKyle Evans			screen.defcursor()
4743244729fSKyle Evans		end
4759f71d421SKyle Evans		if io.ischar() then
476aedd6be5SKyle Evans			local ch = io.getchar()
4779f71d421SKyle Evans			if ch == core.KEY_ENTER then
478aedd6be5SKyle Evans				break
479088b4f5fSWarner Losh			else
480088b4f5fSWarner Losh				-- erase autoboot msg
481aedd6be5SKyle Evans				screen.setcursor(0, y)
48266964bbcSKyle Evans				print(string.rep(" ", 80))
483aedd6be5SKyle Evans				screen.defcursor()
48412b95c84SKyle Evans				return ch
485088b4f5fSWarner Losh			end
486088b4f5fSWarner Losh		end
487088b4f5fSWarner Losh
488aedd6be5SKyle Evans		loader.delay(50000)
489aedd6be5SKyle Evans	until time <= 0
490088b4f5fSWarner Losh
491a76f8a5bSKyle Evans	local cmd = loader.getenv("menu_timeout_command") or "boot"
492e9c3ceb1SKyle Evans	cli_execute_unparsed(cmd)
493041929aaSKyle Evans	return nil
494088b4f5fSWarner Loshend
495088b4f5fSWarner Losh
49676c75816SKyle Evans-- CLI commands
4978f7f3d08SKyle Evansfunction cli.menu()
49876c75816SKyle Evans	menu.run()
49976c75816SKyle Evansend
50076c75816SKyle Evans
501aedd6be5SKyle Evansreturn menu
502