Displaying 20 results from an estimated 6000 matches similar to: "Antw: Testing Lua"
2010 Jul 04
1
Merge LUA branch of Marcel Ritter
Since Syslinux 4.01-pre2, lua is the master branch. This lua.c32 moudule
doesn't support much.
There is a much recent lua.c32, made by Marcel Ritter's:
http://syslinux.zytor.com/archives/2009-October/013383.html
The last time he wrote about the state of his lua branch:
============================================================
The current state is:
- VESA:
- switching to vesa mode
2008 Mar 08
0
[PATCH 1/1] : PCI detection code doesn't corrupt memory anymore (2nd try)
From : Erwan Velu <erwan.velu at free.fr>
This patch fixes the pci detection stuff demo'd in pcitest.c32
- Fix a wrong type in malloc
- Incorrect use of strdup
- Replacing strncpy by strnlcpy (thx hpa)
This two fixes makes pcitest.c32 working far better, no more crash when
running it twice.
I'd like to thank Sebastian Herbszt for its reports and tests.
This patch was made for
2008 Mar 08
1
[PATCH 1/1] : PCI detection code doesn't corrupt memory anymore
From : Erwan Velu <erwan.velu at free.fr>
This patch fixes the pci detection stuff demo'd in pcitest.c32
- Fix a wrong type in malloc
- Incorrect use of strdup
This two fixes makes pcitest.c32 working far better, no more crash when
running it twice.
I'd like to thank Sebastian Herbszt for its reports and tests.
This patch was made for 3.62-pre16 but applies fine on 3.63-pre1.
2013 Oct 15
0
Upgrade to Lua 5.2.2, add filesystem module and get_key binding
Op 2013-10-15 om 20:03 schreef Ferenc W?gner:
> Hi,
>
> This series targets automatic boot menu generation, but most of it
> is the Lua upgrade, because I got tired reading deprecated API docs.
> It's mostly a straightforward forward port of the earlier Syslinux
> specific changes to Lua 5.1, except that:
>
> * I chose the add a stub getenv() implementation to the
2014 Mar 02
3
pull request: upgrade to Lua 5.2.3, automatic Linux boot menu and cmenu binding
Hi,
Yes, I'm back with this pet peeve of mine again. Most of the old cover
letter at https://gist.github.com/wferi/6989458 still applies; I'd like
to reiterate its last paragraph here, too:
> And an official stat() implementation would be very useful. After
> inventing mine, I noticed rosh also invented its own...
Anyway, here it is:
The following changes since commit
2009 Oct 19
0
Testing Lua
Hey Marcel,
I'm in the process to test your lua branch.
I was wondering what is the current state of it.
What are the implemented features you want us to try, what features are
missing, what's a typical test case, etc...
This will help me, and maybe other, to understand where and how {I|we}
can help you in having the lua code getting better/tested for a later
integration.
Cheers,
2014 Nov 10
1
pxelinux 6.03 lua module not loading syslinux.c32 dmi.c32 etc
I'm running pxelinux configured to use the path /bios on the tftp server for all the comboot files.
The problem is dmi,syslinux,vesa etc modules are not being loaded in lua.
Syslinux.version() returns not found in global index as does dmi.supported()
For k,v in pairs(package.loaded) do print (k,v) end; shows that these modules that are normally loaded by lua are not loading.
I got an idea
2008 Dec 12
4
[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
2009 Nov 27
3
HDT 0.3.6-pre2 is out !
The -pre2 version of HDT 0.3.6 is out.
Gert was a great source of motivation for making that -pre2.
He found many bugs and gave nice ideas.
Thanks Gert for your time and your _many_ tests.
This release will be more or less what will be included in the incoming
syslinux 3.84.
Since -pre1, here come the Changelog
* Reporting CPU L1 & L2 cache
* Report "Hw.Virt" in cpu
2009 Nov 27
3
HDT 0.3.6-pre2 is out !
The -pre2 version of HDT 0.3.6 is out.
Gert was a great source of motivation for making that -pre2.
He found many bugs and gave nice ideas.
Thanks Gert for your time and your _many_ tests.
This release will be more or less what will be included in the incoming
syslinux 3.84.
Since -pre1, here come the Changelog
* Reporting CPU L1 & L2 cache
* Report "Hw.Virt" in cpu
2009 May 06
1
[Fwd: Re: Serial]
--
Erwan Velu
Pre-Sales Engineer
Seanodes
http://www.seanodes.com
+33 (0)1 41 22 13 83
-------------- next part --------------
An embedded message was scrubbed...
From: Pierre-Alexandre Meyer <pierre at mouraf.org>
Subject: Re: [hdt] Serial
Date: Wed, 6 May 2009 03:43:25 +0200
Size: 2726
URL: <http://www.zytor.com/pipermail/hdt/attachments/20090506/ffd99419/attachment.eml>
2014 Oct 24
0
[PATCH][git-pull] lua: fix broken bindings, switch to using methods, document things
On Mon, Oct 13, 2014 at 12:53:43PM +0200, Ferenc Wagner wrote:
> The following changes since commit 81ad566f155fac31089fde69c87059b217e7e9b6:
>
> NEWS: Update for 6.03 release (2014-10-06 09:27:44 -0700)
>
> are available in the git repository at:
>
> https://github.com/wferi/syslinux/ pub
>
> for you to fetch changes up to
2013 Oct 23
0
syslinux lua support
James Buren <ryu0 at ymail.com> writes:
> First, I need access to the full PCI information. It doesn't expose
> the device class that is available in the C API. I have written a
> patch for this, but I don't know if it meets the code standards for
> this project.
Post them here, and hopefully somebody will tell.
> Second, I need to have a working stdin when in VESA
2013 Oct 23
2
syslinux lua support
I am a developer from the 'Frugalware Linux' distribution. I have been trying to
use the syslinux lua module to support more dynamic menu generation at runtime
for our distributed ISO images, as Grub2 is not very configurable for this. For
example, I need raw access to the PCI bus information to configure the video output kernel boot parameters for specific hardware. Specifically,
2014 Oct 13
2
[PATCH][git-pull] lua: fix broken bindings, switch to using methods, document things
The following changes since commit 81ad566f155fac31089fde69c87059b217e7e9b6:
NEWS: Update for 6.03 release (2014-10-06 09:27:44 -0700)
are available in the git repository at:
https://github.com/wferi/syslinux/ pub
for you to fetch changes up to 68cb978ab7e692d772e4d62d3585b8f7bac43b4b:
lua: simplify the function/value handling in the automenu test (2014-10-13 12:44:15 +0200)
2014 Jun 04
3
lua and other modules in 6.03-pre
The following are new Lua c32 modules in 6.03-pre*:
cmenu.c32:
cpu.c32:
dhcp.c32:
dmi.c32:
lfs.c32:
pci.c32:
syslinux.c32:
vesa.c32:
I am wondering whether the following modules, which are _not_ new and
are also included in 6.03-pre*, have _any_ relation either to the
above list or to Lua:
cpuid.c32:
cpuidtest.c32:
dmitest.c32:
pcitest.c32:
vesainfo.c32:
TIA,
Ady.
2014 Jun 04
0
lua and other modules in 6.03-pre
On Jun 4, 2014 7:45 PM, "Ady" <ady-sf at hotmail.com> wrote:
>
> The following are new Lua c32 modules in 6.03-pre*:
>
> cmenu.c32:
> cpu.c32:
> dhcp.c32:
> dmi.c32:
> lfs.c32:
> pci.c32:
> syslinux.c32:
> vesa.c32:
>
> I am wondering whether the following modules, which are _not_ new and
> are also included in 6.03-pre*, have _any_
2011 Oct 04
1
Added DHCPINFO Tables to the lua.c32 Implementation - syslinux-4.04
Greetings All.
We wanted to be able to parse the DHCP values and options and write a lua
script based on the information found. We are also using the CPU flags, but
thankfully in at least version 4.04 there is already some CPU value parsing
even if it isn't documented. Using the information from the CPU table we
wanted to be able to choose the kernel to boot. Using the DHCP table
2009 Dec 04
1
HDT
--
Erwan Velu
Pre-Sales Engineer
Seanodes
http://www.seanodes.com
+33 (0)1 41 22 13 83
2009 Dec 04
1
HDT
--
Erwan Velu
Pre-Sales Engineer
Seanodes
http://www.seanodes.com
+33 (0)1 41 22 13 83