Displaying 7 results from an estimated 7 matches for "com32io".
Did you mean:
com32
2006 May 01
1
Newbie to Com32: libcom32.a not linking
I'll start off by saying that I'm very new to com32, but I'm having
difficulty linking the libcom32.a library into an executable. I'm using
syslinux-3.11, I copied the libcom32.a library into my directory and here's
the output of my attmept:
#ld com32io.o dtimenu.o syslnx.o tui.o --library-path=./ -lcom32
.//libcom32.a(entry.o)(.init+0x42): In function `_start':
sys/entry.S:68: undefined reference to `__ctors_start'
.//libcom32.a(entry.o)(.init+0x48):sys/entry.S:70: undefined reference to
`__ctors_end'
.//libcom32.a(exit.o)(.text+0x2)...
2006 Nov 22
2
Problem with "additional" submenus
...e
used those return values in the calls to "add_item(.., OPT_SUBMENU,..)"
for the 5th parameters and I get the exact same results.
Here is my code, hopefully someone can spot what I am doing wrong:
#ifndef NULL
#define NULL ((void *) 0)
#endif
#include "menu.h"
#include "com32io.h"
#include <string.h>
TIMEOUTCODE ontimeout()
{
return CODE_ENTER;
}
int main(void)
{
t_menuitem * curr;
// Choose the default title and setup default values for all
attributes....
init_menusystem(NULL);
set_window_size(1,1,23,78); // Leave one row/col border all around...
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...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)/*.menu))
+CMENUS = $(patsubst %.c...
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
2006 Nov 27
8
Chaining from PXELinux to some other boot loader
Hi
I am using PXELinux to boot BartPE and some other application and it works fine. There are some other Boot application which I am using 3COM MBAUTIL PXE.mnu and floppy images. I have problem chaining from pxelinux.0 to 3com pxe.0 (pxe.mnu).
Consider:
BIOS->(DHCP-TFTP)->pxelinux.0 works fine.
BIOS->(DHCP-TFTP)->3COM pxe.mnu works fine, the menu appears and I can choose a floppy
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...(com32)/lib/libcom32.c32
+LDFLAGS_simple.o = $(com32)/cmenu/libmenu/libmenu.c32 \
+ $(com32)/libutil/libutil_com.c32 \
+ $(com32)/lib/libcom32.c32
+LDFLAGS_test.o = $(com32)/cmenu/libmenu/libmenu.c32
+LDFLAGS_test2.o = $(com32)/cmenu/libmenu/libmenu.c32
+
LIBMENU = libmenu/syslnx.o libmenu/com32io.o libmenu/tui.o \
- libmenu/menu.o libmenu/passwords.o libmenu/des.o libmenu/help.o
+ libmenu/menu.o libmenu/passwords.o libmenu/des.o libmenu/help.o \
+ $(com32)/libutil/libutil_com.c32 $(com32)/lib/libcom32.c32
CMENUS = $(patsubst %.c,%.c32,$(wildcard *.c))
IMENUS = $(patsubst %.menu,%.c32,$(...
2012 Aug 14
1
[GIT PULL] elflink fixes
.../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 libmenu/tui.o \
libmenu/menu.o libmenu/passwords.o libmenu/des.o libmenu/help.o \
$(com32)/libutil/libutil_com.c32 $(com32)/lib/libcom32.c32
diff --git a/com32/cmenu/libmenu/syslnx.c b/com32/cmenu/libmenu/syslnx.c
index 27823df..c681f58 100644
--- a/com32/cmenu/libmenu/syslnx.c
+++ b/com32/cm...