menu.lua (e90840128546c691cc54ddc53e1bcd9019b6b95a) | menu.lua (39006570a401ef5fb6d7d8029089fb11280bfd24) |
---|---|
1-- 2-- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org> 3-- All rights reserved. 4-- 5-- Redistribution and use in source and binary forms, with or without 6-- modification, are permitted provided that the following conditions 7-- are met: 8-- 1. Redistributions of source code must retain the above copyright --- 147 unchanged lines hidden (view full) --- 156 }, 157 158 -- escape to interpreter 159 { 160 entry_type = "return", 161 name = function() 162 return color.highlight("Esc").."ape to loader prompt"; 163 end, | 1-- 2-- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org> 3-- All rights reserved. 4-- 5-- Redistribution and use in source and binary forms, with or without 6-- modification, are permitted provided that the following conditions 7-- are met: 8-- 1. Redistributions of source code must retain the above copyright --- 147 unchanged lines hidden (view full) --- 156 }, 157 158 -- escape to interpreter 159 { 160 entry_type = "return", 161 name = function() 162 return color.highlight("Esc").."ape to loader prompt"; 163 end, |
164 alias = {"\027"} | 164 alias = {core.KEYSTR_ESCAPE} |
165 }, 166 167 -- reboot 168 { 169 entry_type = "entry", 170 name = function() 171 return color.highlight("R").."eboot"; 172 end, --- 205 unchanged lines hidden --- | 165 }, 166 167 -- reboot 168 { 169 entry_type = "entry", 170 name = function() 171 return color.highlight("R").."eboot"; 172 end, --- 205 unchanged lines hidden --- |