menu.lua (20a81676640d7a9af91d00ef0acaf876dae1ba88) | menu.lua (dd65496a0418d6cfa1248e41146ebe9908af015f) |
---|---|
1-- 2-- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org> 3-- Copyright (C) 2018 Kyle Evans <kevans@FreeBSD.org> 4-- All rights reserved. 5-- 6-- Redistribution and use in source and binary forms, with or without 7-- modification, are permitted provided that the following conditions 8-- are met: --- 99 unchanged lines hidden (view full) --- 108 func = function() 109 core.setDefaults() 110 end, 111 alias = {"d", "D"} 112 }, 113 114 { 115 entry_type = core.MENU_SEPARATOR, | 1-- 2-- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org> 3-- Copyright (C) 2018 Kyle Evans <kevans@FreeBSD.org> 4-- All rights reserved. 5-- 6-- Redistribution and use in source and binary forms, with or without 7-- modification, are permitted provided that the following conditions 8-- are met: --- 99 unchanged lines hidden (view full) --- 108 func = function() 109 core.setDefaults() 110 end, 111 alias = {"d", "D"} 112 }, 113 114 { 115 entry_type = core.MENU_SEPARATOR, |
116 name = function() 117 return "" 118 end | |
119 }, 120 121 { 122 entry_type = core.MENU_SEPARATOR, 123 name = function() 124 return "Boot Options:" 125 end 126 }, --- 137 unchanged lines hidden (view full) --- 264 loader.perform("reboot") 265 end, 266 alias = {"r", "R"} 267 }, 268 269 270 { 271 entry_type = core.MENU_SEPARATOR, | 116 }, 117 118 { 119 entry_type = core.MENU_SEPARATOR, 120 name = function() 121 return "Boot Options:" 122 end 123 }, --- 137 unchanged lines hidden (view full) --- 261 loader.perform("reboot") 262 end, 263 alias = {"r", "R"} 264 }, 265 266 267 { 268 entry_type = core.MENU_SEPARATOR, |
272 name = function() 273 return "" 274 end | |
275 }, 276 277 { 278 entry_type = core.MENU_SEPARATOR, 279 name = function() 280 return "Options:" 281 end 282 }, --- 180 unchanged lines hidden --- | 269 }, 270 271 { 272 entry_type = core.MENU_SEPARATOR, 273 name = function() 274 return "Options:" 275 end 276 }, --- 180 unchanged lines hidden --- |