search for: libutil_com

Displaying 20 results from an estimated 27 matches for "libutil_com".

2012 Jun 29
1
[syslinux:elflink] elflink: fix dependency problem in cmenu/ Makefile
...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 > -LDFLAGS_display.o = $(com32)/cmenu/libmenu/libmenu.c32 \ > - $(com32)/libutil/libutil_com.c32 \ > - $(com32)/lib/libcom32.c32 > -LDFLAGS_simple.o = $(com32)/cmenu/libmenu/libmenu.c32 \ > - $(com32)/libutil/libutil_com.c32 \ > -...
2012 Dec 11
5
Syslinux 5 (i)pxelinux.0 unnecessary PATH requests
...hp has the UI directive as /mods/vesamenu.c32 and the PATH as mods configured but then still with that PATH directive in the menu it still tries to find the libraries in this order: GET /libcom32.c32 (http 404) GET //libcom32.c32 (http 404) GET /mods//libcom32.c32 (http 200) < --- success! GET /libutil_com.c32 (http 404) GET //libutil_com.c32 (http 404) GET /mods//libutil_com.c32 (http 200) <--- success! in my opinion these are atleast 4 unnecessary requests to the webserver before finding the correct one. and another thing the PATH directive can only be read after ldlinux.c32 is loaded, so ldlin...
2012 Dec 11
4
Syslinux 5 Path Option.
...o set this path option? Here is what I get using vesamenu.c32 as an example when moved to a directory outside of the build. The current syslinux 4.06 has all the files in the same directory which is at the root of the cd. ldd vesamenu.c32 linux-gate.so.1 => (0xb77c5000) ../../com32/libutil/libutil_com.c32 => not found ../../com32/lib/libcom32.c32 => not found readelf -d vesamenu.c32 Dynamic section at offset 0x635c contains 17 entries: Tag Type Name/Value 0x00000001 (NEEDED) Shared library: [../../com32/libutil/libutil_com.c32] 0x00...
2013 Jan 03
4
help
...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 26,140 12-06-12 11:50a MEMDISK LIBUTI~1 C32 27,523 12-06-12 11:49a libutil_com.c32 8 file(s) 916,935 bytes 0 dir(s) 56,320 bytes free ------------------------------------------------------------------------ ------------------------------------------------ The contents of directory syslinux >(i)LDLINUX.SYS(53.5 KB (54,784 bytes) and (ii...
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
2008 Nov 02
1
[PATCH 1/1] com32/libutil/Makefile: Duplicate spotless target
From: Gene Cumm <gene.cumm at gmail.com> Fix duplicate spotless target in com32/libutil/Makefile. Signed-off-by: Gene Cumm <gene.cumm at gmail.com> --- diff --git a/com32/libutil/Makefile b/com32/libutil/Makefile index 31754a9..02789ca 100644 --- a/com32/libutil/Makefile +++ b/com32/libutil/Makefile @@ -56,8 +56,6 @@ clean: tidy spotless: clean rm -f *.lss *.a *.c32 *.com
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 00825b4..40a09d1 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -26,13 +26,26 @@ include $(MAKEDIR)/elf.mk CFLAGS += -I./libmenu +LDFLAGS_complex.o = $(com32)/cmenu/libmenu/libmenu.c32 \ + $(com32)/libutil/libutil_com.c32 \ + $(com32)/lib/libcom32.c32 +LDFLAGS_display.o = $(com32)/cmenu/libmenu/libmenu.c32 \ + $(com32)/libutil/libutil_com.c32 \ + $(com32)/lib/libcom32.c32 +LDFLAGS_simple.o = $(com32)/cmenu/libmenu/libmenu.c32 \ + $(com32)/libutil/libutil_com.c32 \ + $(com32)/lib/libcom32.c32 +LDFL...
2007 Feb 07
2
SYSLINUX 3.36-pre6 (release candidate)
I have, hopefully, found and fixed the issue with non-kernel binaries that appeared in 3.35. As a result, I have pushed out 3.36-pre6 and am classifying it as a release candidate. Please try it out, especially if you have had problems with 3.35. ftp://ftp.kernel.org/pub/linux/utils/boot/syslinux/Testing/ -hpa
2011 Apr 11
0
[PATCH] Makefile: Move Makefile fragments into mk/
...diff --git a/com32/hdt/Makefile b/com32/hdt/Makefile index 40ea3ac..5b55911 100644 --- a/com32/hdt/Makefile +++ b/com32/hdt/Makefile @@ -16,7 +16,8 @@ ## topdir = ../.. -include ../MCONFIG +MAKEDIR = $(topdir)/mk +include $(MAKEDIR)/com32.mk LIBS = ../cmenu/libmenu/libmenu.a ../libutil/libutil_com.a \ ../lib/libcom32.a $(LIBGCC) diff --git a/com32/lib/Makefile b/com32/lib/Makefile index 48a166d..1b25b39 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -4,8 +4,9 @@ # Include configuration rules NOGPL := 1 -topdir = ../.. -include MCONFIG +topdir = ../../ +MAKEDIR = $(top...
2013 Jan 09
21
question
Hello, Is "Dos installer from Win98" REMOVED from Syslinux-5.00/syslinux-5.01-pre1? Prof S W Damle
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
2012 Aug 14
1
[GIT PULL] elflink fixes
...mp;inregs); + close_file(fd.handle); fail: lfree(buf); diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index c6e0cae..beb8dd2 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -17,16 +17,16 @@ NOGPL := 1 +LIBS = libmenu/libmenu.c32 \ + $(com32)/libutil/libutil_com.c32 \ + $(com32)/lib/libcom32.c32 + topdir = ../.. MAKEDIR = $(topdir)/mk include $(MAKEDIR)/elf.mk CFLAGS += -I./libmenu -LIBS = libmenu/libmenu.c32 \ - $(com32)/libutil/libutil_com.c32 \ - $(com32)/lib/libcom32.c32 - LIBMENU = libmenu/syslnx.o libmenu/com32io.o li...
2012 Jun 29
7
Syslinux 5.00-pre6: call it a beta
I think the Syslinux 5.00 branch is now at the point where I believe it it is feature complete and should be able to replace the main Syslinux branch. As such, it is important that we get wider testing, and especially that people let us know if and where it breaks. As of right now, there aren't any known bugs...
2016 Jan 25
2
[PATCH 2/2] core: Fix stack overflow when reloading config
...t of official Syslinux.) Additionally, the amount of available resources (including memory, among others) in some cases is not _that_ high, and we frequently forget they exist. Cases such as the DOS-based installer comes to mind, and the length of the file names for library modules (e.g. "libutil_com.c32") is another one. It was _that_ easy to forget that FAT and ISO9660 do not support such file names (thus, a library module shall not use unsupported file names), and it is easy for anyone to assume that "his own" use-case is broad-enough that it covers anyone's / everyone...
2008 Aug 22
1
syslinux-3.71-21-gbd09a6d - build breakage
...tack-protector -mregparm=3 -DREGPARM=3 -march=i386 -Os -W -Wall -march=i386 -fomit-frame-pointer -D__COM32__ -nostdinc -iwithprefix include -I../../com32/libutil/include -I../../com32/include -c -o chain.o chain.c ld -m elf_i386 -T ../../com32/lib/com32.ld -o chain.elf chain.o ../../com32/libutil/libutil_com.a ../../com32/lib/libcom32.a /usr/lib/gcc/i486-linux-gnu/4.2.1/libgcc.a objcopy -O binary chain.elf chain.c32 gcc -std=gnu99 -m32 -fno-stack-protector -mregparm=3 -DREGPARM=3 -march=i386 -Os -W -Wall -march=i386 -fomit-frame-pointer -D__COM32__ -nostdinc -iwithprefix include -I../../com32/libuti...
2008 Oct 14
2
SYSLINUX 3.73-pre3
I just pushed out SYSLINUX 3.73-pre3. The only significant difference over -pre2 was changing MEMDISK to use "safeint" by default. -hpa
2013 Jan 07
2
chain.c32 bug
i`ve found a bug in chain.c32 in v4.06. When i use isolinux it does not run windows7 installation, chainloading bootmgr. the error is: Can't find myself on the drive I booted from. chain.c32 from syslinux 3.xx works like a charm! chain.c32 from syslinux 5 shous tat this is not a com32 app
2013 Jan 16
1
5.01 pre3 CONFIG directive
...9062.html. > > This should be fixed in git but please ensure that -pre3 works for your > testcases. Hi Matt, Unfortunately, it fails with 5.01-pre3. I have uploaded a small ISO image with 5.01pre3 which fails. Initially, it failed when I used the CONFIG directive: "Failed to load libutil_com.c32" "Failed to load COM32 file ../boot/syslinux/menu.c32" I then added the PATH directive (although I don't understand why it should be added in this case), so the first CONFIG seems to work (at least one time). In each cfg file in the ISO I have added comments for guidance,...
2004 Dec 08
4
malloc in libcom32 broken?
I get a link error when trying to call malloc from libcom32. I tried to simplify the case by adding the malloc to the sample hello.c in the modules directory, but I still get the following error: ld -m elf_i386 -T ../lib/com32.ld -o hello.elf hello.o ../libutil/libutil_com.a ../lib/libcom32.a /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.3/32/libgcc.a ../lib/libcom32.a(malloc.o)(.text+0x13): In function `init_memory_arena': /home/hpa/oss/syslinux/release/syslinux-2.12-pre/syslinux-2.12-pre7/com32/lib/malloc.c:42: undefined reference to `__stack_size' ../lib/libcom...
2012 Jul 07
1
pxelinux 5.00-pre6 sub menu not working
...0-pre6/core/pxelinux.0 syslinux-5.00-pre6/com32/menu/menu.c32 syslinux-5.00-pre6/memdisk/memdisk With only this files, it was not working and I also had to copy this two additional files to my /tftpboot folder: syslinux-5.00-pre6/com32/elflink/ldlinux/ldlinux.c32 syslinux-5.00-pre6/com32/libutil/libutil_com.c32 Now it is working and the menu is displayed. Also selecting other programs out of it do work (e.g. Smart Boot Manager). But selecting my "Hardware Tools Menu" sub menu does not work and the main menu is displayed again. I see a short message about loading /tools.menu, but in the...