Displaying 5 results from an estimated 5 matches for "run_kernel_imag".
Did you mean:
run_kernel_image
2014 Jun 30
2
lua not working on syslinux-6.03-pre18
...st using lua to put the results
of ipappend in the right place on the command line.
The symptom is that the two io.write()s work as expected, then I see:
default.lua:6: attempt to index global 'syslinux' (a nil value)
This would suggest that somehow the syslinux global is not defined,
so run_kernel_image is not working. Is there some special magic I need
to import this? This was working in 4.05 (albeit I have necessarily
had to change some other stuff).
--
Alex Bligh
boot file:
prompt 1
default xen4
timeout 100
serial 0 115200
display boot.msg
label xen4
kernel lua.c32
append default.lua
ipap...
2014 Jul 01
1
lua not working on syslinux-6.03-pre18
Alex Bligh <alex at alex.org.uk> writes:
> Firstly, this line:
>
> syslinux.run_kernel_image("mboot.c32", bootstr, 0, 0)
>
> no longer works at all as is. I think it was broken (probably
> intentionally) by this commit:
>
> commit 4bbaf68cbf6c9a4c850f71b19bfb9604b9327efb
> Author: Ferenc W?gner <wferi at niif.hu>
> Date: Sun Oct 13 22:30:16 2013 +020...
2014 Jun 30
0
lua not working on syslinux-6.03-pre18
...ipappend in the right place on the command line.
>
> The symptom is that the two io.write()s work as expected, then I see:
>
> default.lua:6: attempt to index global 'syslinux' (a nil value)
>
> This would suggest that somehow the syslinux global is not defined,
> so run_kernel_image is not working. Is there some special magic I need
> to import this? This was working in 4.05 (albeit I have necessarily
> had to change some other stuff).
To follow up on my own email, it would appear two things have changed.
Firstly, this line:
syslinux.run_kernel_image("mboot....
2016 Jun 16
2
[PATCH] Fix recognition of keeppxe option
> On Wed, Jun 15, 2016 at 1:02 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
> >
> >> On Tue, Jun 14, 2016 at 12:33 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
> >> >
> >> >> > kernel.c:new_linux_kernel() to load_linux.c:bios_boot_linux() because
> >> >> > there is no convenient way in new_linux_kernel() to
2016 Jun 16
0
[PATCH] Fix recognition of keeppxe option
...be capable of using /
> parsing "keeppxe", then it might make sense to have the same capability
> in linux.c32 (in addition to mboot.c32 and chain.c32).
AFAICT, the following modules lead to the syslinux_boot_linux code path:
ldlinux.c32
lua.c32 (for boot_linux and boot_it; and run_kernel_image for Linux
kernels only)
linux.c32
gfxboot.c32
> FWIW, in Syslinux v.4.05, the entry for booting Reactos from pxelinux.0
> with chain.c32 is:
>
> COM32 chain.c32
> APPEND file=freeldr.sys seg=0x0F80 keeppxe
>
> which has been failing since Syslinux v.5.+.
chain.c32 has it...