lualoader: Correct kernel_options handling
`kernel_options` were being passed as flags to load, rather than to the kernel being loaded. This is the kernel_options counterpart to r335009.
This commit is contained in:
parent
31c5966af1
commit
ca4045d43a
@ -425,8 +425,8 @@ function config.loadKernel(other_kernel)
|
||||
|
||||
local function tryLoad(names)
|
||||
for name in names:gmatch("([^;]+)%s*;?") do
|
||||
local r = loader.perform("load " .. flags ..
|
||||
" " .. name)
|
||||
local r = loader.perform("load " .. name ..
|
||||
" " .. flags)
|
||||
if r == 0 then
|
||||
return name
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user