similar to: [GIT] Lua running as a com32 syslinux module

Displaying 20 results from an estimated 5000 matches similar to: "[GIT] Lua running as a com32 syslinux module"

2008 Dec 10
1
[PATCH 1/2] COM32: lua - add syslinux library
Hi, the attached patch adds a new call to lua (patch is against latest lua branch): syslinux.run_command(...) It's just a little glue to call syslinux_run_command() from lua. Other syslinux functions should be easy to add. usage: syslinux.run_command("memdisk initrd=/dos/BIOS/FSC-P7935-108.img raw") Bye, Marcel -------------- next part -------------- A non-text attachment
2008 Dec 10
0
[PATCH 2/2] COM32: lua - add dmi library
Hi again, this is the second part of the patch extending lua. This time it adds the dmi functions (com32/modules/dmi*) to lua: dmi.supported(): returns true if DMI is supported dmi.gettable(): returns array of key, value pairs containing system info Sorry, but this patch does not apply cleanly if [PATCH 1/2] was applied before. There's just one line to fix in com32/lua/src/linit.c
2009 Feb 04
2
lua assist
Hello, For Lua inclusion in Syslinux an idea to ship with an com32/lua/assist directory and an com32/lua/patches directory. In the patches directory patches against a pristine lua tarball and the assist dir contains scripts for further tayloring. This is what I have in mind: | milleune at inertia:~ | $ git clone http://www.stappers.it/tracking/syslinux/.git syslinux-lua-stappers | milleune at
2008 Dec 12
0
[PATCH 1/1] COM32: lua - add pci library
Back again, the included patch adds pci functions from com32/modules/pcitest.c to lua. Example: -- get device info pciinfo = pci.getinfo() -- get plain text device description pciids = pci.getidlist("/pci.ids") -- list all pci busses for bind,businfo in pairs(pciinfo) do print("Bus: " .. bind .. " Devices:") -- list all devices on bus for dind,device in
2010 Jul 09
0
NEWS: correct credit for new Lua work.
Op 20100709 om 02:05 schreef syslinux-commits-owner at zytor.com: > Message rejected by filter rule match > I don't know why it rejected, this E-mail is to get the NEWS file updated. > From: Geert Stappers <stappers at stappers.nl> > To: syslinux-commits at zytor.com > Subject: Re: [syslinux:master] NEWS: correct credit for new Lua work. > Date: Fri, 9 Jul 2010
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
2008 Aug 27
0
[LLVMdev] llvm-lua 0.2
I would like to announce the availability of llvm-lua. llvm-lua, converts Lua bytecode to LLVM IR code and supports JIT and static compiling. Using LLVM gives Lua JIT support on cpu architectures other then x86. I converted the Lua bytecode dispatch loop code into a set of C functions one for each opcode. The opcode functions take two parmeters one is the current Lua function's state,
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
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
2009 Oct 20
0
Antw: Testing Lua
>>> Erwan <erwan at seanodes.com> schrieb am 10/19/2009 um 10:11 PM in Nachricht <4ADCC807.6090700 at seanodes.com>: > Hey Marcel, Hi Erwan, > I'm in the process to test your lua branch. > I was wondering what is the current state of it. You can pull the current state from here: git pull git://linux.rrze.uni-erlangen.de/syslinux.git luaext The current
2016 Nov 29
0
[PATCH 0/2] improve Lua API for files and initramfs objects
On 11/20/16 00:13, Ferenc W?gner via Syslinux wrote: > > This indeed copies the data from the syslinux_file structure (which is > an opaque SYSLINUX_FILE object on the Lua side) into an (interned) Lua > string to make it available to the Lua string functions. > > You probably ask why we copy the data when we create those SYSLINUX_FILE > userdata objects. We don't, the
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)
2020 Aug 03
0
How to access mailbox metadata in Lua push driver
Making progress :) I'll document some obtracles I found, to make it easier for the next one implementing push with Dovecot and Lua. First I tried with my usual Alpine based container, but Alpine seems not to build the Lua stuff for Dovecot :( So I moved to an Ubuntu 18.04 based container and the official Dovecot CE repo: FROM ubuntu:18.04 RUN apt-get update && \ apt-get install
2011 Feb 24
1
extensions.lua with luasql.mysql.
Hi to all! I'm trying to create a context for integration with extensions.lua and libsql.mysql, but I'm not getting to run. When I reload the module pbx_lua.so the following error appears: [Feb 24 16:59:29] ERROR[30749]: pbx_lua.c:1249 exec: Error executing lua extension: error loading module 'luasql.mysql' from file '/usr/lib/lua/5.1/luasql/mysql.so':
2014 Sep 25
1
localboot.lua: a lua.c32 script that uses DMI data to decide between localboot/chainloading
Hi, we use PXELINUX in our product to show a boot menu on client computers, with options like "Boot from local hard disk", "Install Windows", etc. Unfortunately, a lot of computers seem to have broken BIOSes and won't boot with the LOCALBOOT command, and need to be booted with chain.c32 instead. We also have encountered some computers where it works only the other way -
2011 Feb 15
1
Lua extensions are not working on asterisk 1.8.2.3
Hi, After compiling a installing asterisk 1.8.2.3 I wanted to play with lua but I noticed that extensions created in extensions.lua was not being registered with asterisk. uga1*CLI> dialplan show [ Context 'app_queue_gosub_virtual_context' created by 'app_queue' ] 's' => 1. NoOp() [app_queue] [ Context
2012 Nov 23
1
[PATCH] lua: fix build error due to LUA_GLOBALSINDEX usage
lua 5.2 changed API, LUA_GLOBALSINDEX is no longer available. http://www.lua.org/manual/5.2/manual.html#8.3 Signed-off-by: Olaf Hering <olaf at aepfle.de> --- Fix is only compile tested. generator/lua.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/lua.ml b/generator/lua.ml index 88748ae..7461cbd 100644 --- a/generator/lua.ml +++ b/generator/lua.ml @@
2014 Nov 28
2
[PATCH] Add ldisk.c32 Lua module
ldisk.c32 is a Lua module that provides information about disks to Lua scripts The example script com32/lua/test/detect_disks.lua uses it to implement some- thing akin to 'disk.c32'. The name 'ldisk.c32' was chosen to avoid a name-clash with 'disk.c32'. --- com32/lua/src/Makefile | 1 + com32/lua/src/ldisk.c | 103
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
2017 Dec 02
0
Lua Auth
-------- Original message --------From: Mark Moseley <moseleymark at gmail.com> Date: 02/12/2017 02:34 (GMT+02:00) To: Cc: Dovecot Mailing List <dovecot at dovecot.org> Subject: Re: Lua Auth On Thu, Nov 30, 2017 at 5:26 AM, Stephan Bosch <s.bosch at ox.io> wrote: > > > Op 29-11-2017 om 6:17 schreef Aki Tuomi: > >> On November 29, 2017 at 4:37 AM Mark