https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246046

            Bug ID: 246046
           Summary: boot error in boot/lua/drawer.lua
           Product: Base System
           Version: 12.1-STABLE
          Hardware: amd64
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: misc
          Assignee: [email protected]
          Reporter: [email protected]

Got an error message 'cannot index nil value' at line 277 in
boot/lua/drawer.lua. Tracking down the possible cause is in this function:

local function getLogodef(logo)
        if logo == nil then
                return nil
        end
        -- Look it up
        local logodef = logodefs[logo]

        -- Try to pull it in
        if logodef == nil then
                try_include('logo-' .. logo) <--- this is rather (?) 'logo_'
                logodef = logodefs[logo]
        end

        return logodef
end

All the logo files are stored as 'logo_*.lua' so my guess constructing the
include filename should follow that convention, i.e. not use 'logo-' but
'logo_' as prefix.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to