aboutsummaryrefslogtreecommitdiff
path: root/stand/lua/loader.lua
diff options
context:
space:
mode:
Diffstat (limited to 'stand/lua/loader.lua')
-rw-r--r--stand/lua/loader.lua11
1 files changed, 6 insertions, 5 deletions
diff --git a/stand/lua/loader.lua b/stand/lua/loader.lua
index 4af12aa23396..95cff013e652 100644
--- a/stand/lua/loader.lua
+++ b/stand/lua/loader.lua
@@ -42,6 +42,12 @@ local password = require("password")
-- need it.
local menu
+-- Our console may have been setup for a different color scheme before we get
+-- here, so make sure we set the default.
+if color.isEnabled() then
+ printc(color.default())
+end
+
try_include("local")
config.load()
@@ -51,11 +57,6 @@ end
if core.isUEFIBoot() then
loader.perform("efi-autoresizecons")
end
--- Our console may have been setup for a different color scheme before we get
--- here, so make sure we set the default.
-if color.isEnabled() then
- printc(color.default())
-end
password.check()
-- menu might be disabled
if menu ~= nil then