search for: libmenu

Displaying 20 results from an estimated 100 matches for "libmenu".

2012 Jun 29
1
[syslinux:elflink] elflink: fix dependency problem in cmenu/ Makefile
...e, but... > diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile > index 40a09d1..c6e0cae 100644 > --- a/com32/cmenu/Makefile > +++ b/com32/cmenu/Makefile > @@ -17,26 +17,15 @@ > > NOGPL := 1 > > -# This must be defined before com32.mk is included > -LIBS = libmenu/libmenu.c32 > - > topdir = ../.. > MAKEDIR = $(topdir)/mk > include $(MAKEDIR)/elf.mk > > CFLAGS += -I./libmenu > > -LDFLAGS_complex.o = $(com32)/cmenu/libmenu/libmenu.c32 \ > - $(com32)/libutil/libutil_com.c32 \ > - $(com32)/lib/libcom32.c32 > -...
2011 Apr 29
1
[PATCH] hdt: libmenu.a no longer exists
From: Matt Fleming <matt.fleming at linux.intel.com> Don't link against libmenu.a, it no longer exists as it was removed in commit 74518b8b691c ("elflink: Make ELF the default object format"). This fixes the following build error, make[2]: *** No rule to make target `../cmenu/libmenu/libmenu.a', needed by `hdt.c32'. Stop. Signed-off-by: Matt Fleming <m...
2008 Jan 16
1
menu(s) won't compile because of missing header file
If you cd to the /menu directory and type 'make' it fails with this error: libmenu/help.c:17:57: error: loadfile.h: No such file or directory libmenu/help.c: In function 'showhelp': libmenu/help.c:99: warning: implicit declaration of function 'loadfile' make: *** [libmenu/help.o] Error 1 The problem can be averted by adding the proper header location the file /me...
2014 Aug 24
1
Library_modules (list of & wiki write permissions)
...i markup, typically for the page Library_modules[1]. I am not in the wiki Editor group, so I can't put that in the wiki. anyway, here's an updated dependency tree for 6.02: |chain.c32 |com32/chain | libutil.c32 libcom32.c32 |complex.c32 |com32/cmenu | libmenu.c32 libcom32.c32 |display.c32 |com32/cmenu | libmenu.c32 libcom32.c32 |libmenu.c32 |com32/cmenu/libmenu | libutil.c32 libcom32.c32 |simple.c32 |com32/cmenu | libmenu.c32 libcom32.c32 |test2.c32 |com32/cmenu | libmenu.c32 libcom32.c3...
2011 Apr 28
1
elflink: build failure
make[2]: *** No rule to make target `../cmenu/libmenu/libmenu.a', needed by `hdt.c32'. Stop. Sebastian
2008 Jun 19
5
No sub-menus in complex.c32
>> Hi, >> >> I have created my own custom menu using menu/complex.c as an example. >> This was way back in the syslinux 2.x days, so the menu system had not >> yet been converted to COM32. With a few minor changes, I now have >> this compiling and running under v3.63. The problem is that only the >> top level menu works. Trying to access any sub-menu
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...via DNS from protected-mode code" ldlinux: Don't lfree() 'kernel' twice module: Make list of DT_NEEDED entries per-module com32/chain/utility.c | 24 +++++--- com32/cmenu/Makefile | 17 +++++- com32/cmenu/libmenu/syslnx.c | 25 ++++++-- com32/elflink/ldlinux/chainboot.c | 4 +- com32/elflink/ldlinux/execute.c | 1 - com32/gpllib/disk/geom.c | 11 +++- com32/gpllib/disk/read.c | 25 ++++++...
2009 Feb 16
2
Back again, and resuscitated libmenu patches
I've finally gotten back to my work on syslinux, and I've updated the patches I have for the advanced menu system and for COM32 to apply against the current git tree. I've got ten patches - mostly bug fixes, but a few are for additional COM32 or menu functionality. I've got them checked into a local git repository - what is the best way for me to pass them along?
2007 Dec 24
1
Question on menu/Makefile
...st 3.54, and find that the Makefile in the menu directory didn't work until I added the /include/syslinux to the file. < CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall - march=i386 -Os -fomit-frame-pointer -I$(LUDIR)/include - I$(COM32DIR)/include -I$(COM32DIR)/include/syslinux -Ilibmenu - D__COM32__ - --- > CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall - march=i386 -Os -fomit-frame-pointer -I$(LUDIR)/include - I$(COM32DIR)/include -Ilibmenu -D__COM32__ +----------------------------------------------------------+ Michael D. Setzer II - Computer Science Instructor...
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...wildcard $(SRC)/*.txt) +CPSRC = $(sort $(wildcard $(SRC)/*.txt)) CPOBJ = $(notdir $(CPSRC)) GENFILES = $(patsubst %.txt,%.cp,$(CPOBJ)) diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 6bb5231..b81b68e 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -32,8 +32,8 @@ LIBMENU = libmenu/syslnx.o libmenu/com32io.o libmenu/tui.o \ libmenu/menu.o libmenu/passwords.o libmenu/des.o libmenu/help.o \ $(objdir)/com32/libutil/libutil.c32 $(objdir)/com32/lib/libcom32.c32 -CMENUS = $(patsubst %.c,%.c32,$(wildcard $(SRC)/*.c)) -IMENUS = $(patsubst %.menu,%.c32,$(wildcard $(SRC...
2017 Aug 24
4
cmenu.c32 Symbol not found luaL_checklstring
Hello everyone, I am trying to PXE boot my Acer Aspire G3-773G laptop. It uses UEFI, so I load 64bit syslinux.efi (v6.03) and it automatically loads ldlinux.e64. All is fine. But when I want to use cmenu.c32 (with UI cmenu.c32 in the config file), the loader downloads: * cmenu.c32 * libmenu.c32 * libcom32.c32 * libutil.c32 Then syslinux reports: "unable to load cmenu.c32: symbol not found luaL_checklstring". This sysbol is defined in liblua.c32, that is present in the TFTP directory. The TFTP log file however does not show any attempt to load this library.... How t...
2010 Jul 25
0
[PATCH] HDT: Fix cursor on exit from Menu Mode
...Gene Cumm <gene.cumm at gmail.com> This fixes the issue in hdt.c32 that Kent Robotti noticed where exiting directly from Menu Mode caused the cursor to not be displayed. This same issue also affects com32/cmenu/simple.c32 and probably others using showmenus(). --- diff --git a/com32/cmenu/libmenu/menu.c b/com32/cmenu/libmenu/menu.c index 1375476..19a7e59 100644 --- a/com32/cmenu/libmenu/menu.c +++ b/com32/cmenu/libmenu/menu.c @@ -655,9 +655,9 @@ pt_menuitem showmenus(uchar startmenu) ms->menus[(unsigned int)startmenu], 0, NORMALMENU); // Hide the garbage we left on...
2012 Oct 19
3
[PATCH 0/3] elflink fixes
From: Matt Fleming <matt.fleming at intel.com> The first two patches in this series are fixes for bugs reported by someone in #syslinux. The third makes dmitest.c32 actually wait for user input. If no one has any objections/concerns, I'll pull this into the official elflink branch. Matt Fleming (3): core: Print error message if we don't load ldlinux.c32 Clean up $(GPLLIB) leak
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
2014 Mar 05
2
PXELINUX and http?
...script I use to update the pxelinux files in /tftpboot....Am I missing anything? #!/bin/bash T=/tftpboot cp bios/core/pxelinux.0 ${T} cp bios/core/lpxelinux.0 ${T} cp bios/com32/modules/linux.c32 ${T} cp bios/com32/lib/libcom32.c32 ${T} cp bios/com32/libutil/libutil.c32 ${T} cp bios/com32/cmenu/libmenu/libmenu.c32 ${T} cp bios/com32/gpllib/libgpl.c32 ${T} cp bios/com32/elflink/ldlinux/ldlinux.c32 ${T} cp bios/com32/hdt/hdt.c32 ${T} cp bios/memdisk/memdisk ${T} cp bios/com32/mboot/mboot.c32 ${T} cp bios/com32/menu/vesamenu.c32 ${T}/pxelinux.cfg If I boot to pxelinux.0 I get my menu. If I change...
2013 Jan 03
4
help
...nstalled on C: drive. Following is the Directory Structure on the floppy: ------------------------------------------------------------------- Volume in drive A has no label Volume Serial Number is 1115-0BEC Directory of A:\ LIBCOM32 C32 737,266 12-06-12 11:49a LIBCOM32.C32 LIBMENU C32 28,811 12-06-12 11:49a LIBMENU.C32 MENU C32 30,694 12-06-12 11:49a MENU.C32 SYSLINUX CFG 9,116 08-18-10 4:23p Syslinux.cfg VESAMENU C32 31,514 12-06-12 11:49a VESAMENU.C32 CHAIN C32 25,871 12-06-12 11:49a CHAIN.C32 MEMDISK...
2013 Feb 06
1
Weird ldlinux loading trouble
...m32/elflink/ldlinux/ldlinux.c32* lrwxrwxrwx 1 erwan erwan 44 f?vr. 6 05:06 libcom32.c32 -> /home/erwan/Devel/hdt/com32/lib/libcom32.c32* lrwxrwxrwx 1 erwan erwan 45 f?vr. 6 05:06 libgpl.c32 -> /home/erwan/Devel/hdt/com32/gpllib/libgpl.c32* lrwxrwxrwx 1 erwan erwan 53 f?vr. 6 05:06 libmenu.c32 -> /home/erwan/Devel/hdt/com32/cmenu/libmenu/libmenu.c32* lrwxrwxrwx 1 erwan erwan 47 f?vr. 6 05:20 libutil.c32 -> /home/erwan/Devel/hdt/com32/libutil/libutil.c32* lrwxrwxrwx 1 erwan erwan 37 f?vr. 6 05:04 pxelinux.0 -> /home/erwan/Devel/hdt/core/pxelinux.0 drwxr-xr-x 2 erwan...
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,
2012 Aug 14
1
[GIT PULL] elflink fixes
...ded for LDFLAGS ldlinux: Return to command prompt after loading COM32 rawcon_read: Fix reading high part of input keys ldlinux: Use findpath() to lookup filenames com32/chain/utility.c | 30 ++------- com32/cmenu/Makefile | 8 +- com32/cmenu/libmenu/syslnx.c | 22 +++---- com32/elflink/ldlinux/chainboot.c | 5 +- com32/elflink/ldlinux/config.h | 2 + com32/elflink/ldlinux/execute.c | 62 ++++++++++------- com32/elflink/ldlinux/ldlinux.c | 113 ++++++++++++++++---------------- com32/elflink/ldlinux/rea...
2016 Jul 07
3
no boot, no message
...Syslinux <syslinux at zytor.com> wrote: > >> > We would need at least: > > A_ the partitions and directory structure in which the following items > are _located_ : /dev/sda1: # tree . . ??? extlinux ? ??? ldlinux.c32 ? ??? ldlinux.sys ? ??? libcom32.c32 ? ??? libmenu.c32 ? ??? libutil.c32 ? ??? menu.c32 ? ??? poweroff.c32 ? ??? poweroff.com ? ??? reboot.c32 ? ??? syslinux.cfg ? ??? syslinux.cfg~ ? ??? vesamenu.c32 ??? gentoo ? ??? vmlinuz -> vmlinuz-3.16.2 ? ??? vmlinuz-3.16.2 ??? lost+found ??? slackware ??? vmlinuz-huge-4.4.14 4 di...