Marcel Ritter
2008-Dec-12 13:35 UTC
[syslinux] [PATCH 1/1] COM32: lua - enable (parts of) liolib
Hi again, the attached patch (re-)enables parts of lua's liolib.c, especially io.write() for formatted output (similar to printf() ): Example: -- define printf() function printf = function(s,...) return io.write(s:format(...)) end -- function printf("Hallo, this is hex %04x\n", 64321) Bye, Marcel -------------- next part -------------- A non-text attachment was scrubbed... Name: syslinux-lua-printf.diff Type: text/x-patch Size: 3871 bytes Desc: not available URL: <http://www.zytor.com/pipermail/syslinux/attachments/20081212/25bdbdb3/attachment.bin>
H. Peter Anvin
2008-Dec-12 23:37 UTC
[syslinux] [PATCH 1/1] COM32: lua - enable (parts of) liolib
Hi Marcel, I have tried to apply your patches, but they don't seem to play nicely together. Could you please re-send them as an incremental patch set that can be replied in order, or even better, as a pullable git tree? I really appreciate your work on this and would like to integrate it as soon as possible. I have also updated the lua branch to syslinux-3.73-pre7. Thanks, -hpa
Marcel Ritter
2008-Dec-15 14:04 UTC
[syslinux] [PATCH 1/1] COM32: lua - enable (parts of) liolib
H. Peter Anvin schrieb:> Hi Marcel, >Hi, <...>> Could you please re-send them as an incremental patch set that can be > replied in order, or even better, as a pullable git tree? >git server is up and running: git clone git://linux.rrze.uni-erlangen.de/syslinux.git Patches included: printf (liolib), syslinux, DMI PCI stuff is still missing, needs to be adapted to new pci code.> I really appreciate your work on this and would like to integrate it as > soon as possible. > > I have also updated the lua branch to syslinux-3.73-pre7. > > Thanks, > > -hpa >Bye, Marcel
H. Peter Anvin
2008-Dec-15 14:34 UTC
[syslinux] [PATCH 1/1] COM32: lua - enable (parts of) liolib
Marcel Ritter wrote:>> > git server is up and running: > > git clone git://linux.rrze.uni-erlangen.de/syslinux.git > > Patches included: printf (liolib), syslinux, DMI > PCI stuff is still missing, needs to be adapted to new pci code.Cool, thanks! I have updated the lua branch to include your code. -hpa
Marcel Ritter
2008-Dec-15 15:35 UTC
[syslinux] [PATCH 1/1] COM32: lua - enable (parts of) liolib
H. Peter Anvin schrieb:> Marcel Ritter wrote: > >> git server is up and running: >> >> git clone git://linux.rrze.uni-erlangen.de/syslinux.git >> >> Patches included: printf (liolib), syslinux, DMI >> PCI stuff is still missing, needs to be adapted to new pci code. >> > > Cool, thanks! >Updates to git repo: - PCI device listing works now (with new code) - VESA module added (only mode listing right now)> I have updated the lua branch to include your code. >Great !> -hpa >Bye, Marcel