search for: liblua_obj

Displaying 7 results from an estimated 7 matches for "liblua_obj".

Did you mean: liblua_objs
2010 Jul 02
1
[syslinux:master] lua: Modernize the Makefile
Op 20100702 om 11:21 schreef syslinux-bot for H. Peter Anvin: > > lua: Modernize the Makefile <bigsnip/> > -liblua.a: $(LIBLUA_OBJS) > +$(LIBLUA) : $(LIBLUA_OBJS) > + rm -f $@ > $(AR) cq $@ $^ > $(RANLIB) $@ FWIW: Today I also found that missing `rm -f $@` Cheers Geert Stappers
2013 Oct 03
0
Automatic boot menu?
...ntation of lfs.attributes required simulating stat() via fstat(), which -- besides being ugly -- reduced functionality further. diff --git a/com32/lua/src/Makefile b/com32/lua/src/Makefile index f3625e1..3c6a529 100644 --- a/com32/lua/src/Makefile +++ b/com32/lua/src/Makefile @@ -44,6 +44,7 @@ LIBLUA_OBJS += cpu.o LIBLUA_OBJS += pci.o LIBLUA_OBJS += vesa.o LIBLUA_OBJS += dhcp.o +LIBLUA_OBJS += lfs.o CFLAGS += -DLUA_ANSI diff --git a/com32/lua/src/lfs.c b/com32/lua/src/lfs.c new file mode 100644 index 0000000..0b94e03 --- /dev/null +++ b/com32/lua/src/lfs.c @@ -0,0 +1,296 @@ +/* +** Read onl...
2013 Aug 30
2
Automatic boot menu?
"H. Peter Anvin" <hpa at zytor.com> writes: > On 08/29/2013 04:14 AM, Ferenc Wagner wrote: > >> "H. Peter Anvin" <hpa at zytor.com> writes: >> >>> On 08/22/2013 10:20 AM, Ferenc Wagner wrote: >>> >>>> Now that Syslinux has ls.c32 and lua.c32, it should be possible to build >>>> a customizable boot menu in
2011 Oct 04
1
Added DHCPINFO Tables to the lua.c32 Implementation - syslinux-4.04
...en all previous libraries */ diff -up syslinux-4.04/com32/lua/src/Makefile.orig syslinux-4.04/com32/lua/src/Makefile --- syslinux-4.04/com32/lua/src/Makefile.orig 2011-04-18 14:24:17.000000000 -0700 +++ syslinux-4.04/com32/lua/src/Makefile 2011-09-28 13:10:32.000000000 -0700 @@ -44,6 +44,7 @@ LIBLUA_OBJS += dmi.o LIBLUA_OBJS += cpu.o LIBLUA_OBJS += pci.o LIBLUA_OBJS += vesa.o +LIBLUA_OBJS += dhcp.o CFLAGS += -DLUA_ANSI
2013 Oct 15
23
[PATCH 00/21] Upgrade to Lua 5.2.2, add filesystem module and get_key binding
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 COM32 API instead of #ifdefing out all the references in Lua, and * I kept oslib
2011 Apr 16
6
[PATCH 0/6] Makefile cleanups
From: Matt Fleming <matt.fleming at linux.intel.com> This series includes a patch (PATCH 1/6) that I sent previously but I thought it was worth sending it again since the rest of the series depends on it, and it also gives a bit of context. These cleanups make it simpler to do the big switchover to ELF modules on the elflink branch because the libraries in $LIBS are now contained in one
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and