Deleted Added
full compact
29c29
< -- $FreeBSD: stable/11/stand/lua/loader.lua 357191 2020-01-28 02:42:33Z kevans $
---
> -- $FreeBSD: stable/11/stand/lua/loader.lua 360599 2020-05-03 04:03:05Z kevans $
41,43d40
< -- The menu module will be brought in after config has loaded if we actually
< -- need it.
< local menu
47,48c44,48
< -- Our console may have been setup for a different color scheme before we get
< -- here, so make sure we set the default.
---
> if core.isUEFIBoot() then
> loader.perform("efi-autoresizecons")
> end
> -- Our console may have been setup with different settings before we get
> -- here, so make sure we reset everything back to default.
50c50
< printc(color.default())
---
> printc(core.KEYSTR_RESET)
53,55d52
< if not core.isMenuSkipped() then
< menu = require("menu")
< end
57,59c54,55
< -- menu might be disabled
< if menu ~= nil then
< menu.run()
---
> if not core.isMenuSkipped() then
> require("menu").run()