search for: serialinfo

Displaying 10 results from an estimated 10 matches for "serialinfo".

2009 Jul 15
2
bug or user error - menu.c32 in syslinux-3.62-pre11
...^c. localboot.c32 KERNEL localboot.c32 LABEL D meminfo.c32 MENU LABEL ^d. meminfo.c32 KERNEL meminfo.c32 LABEL E menu.c32 MENU LABEL ^e. menu.c32 KERNEL menu.c32 LABEL F pcitest.c32 MENU LABEL ^f. pcitest.c32 KERNEL pcitest.c32 LABEL G serialinfo.c32 MENU LABEL ^g. serialinfo.c32 KERNEL serialinfo.c32 LABEL H reboot.c32 MENU LABEL ^h. reboot.c32 KERNEL reboot.c32 1st, the working ones (output pasted from 3.62-pre1) : meminfo & serialinfo: INT 15h = f000:50fe DOS RAM: 582K (0x91800) INT 12h: 582K (0x91800)...
2014 Aug 24
1
Library_modules (list of & wiki write permissions)
...|com32/samples | |fancyhello.c32 |com32/samples | libutil.c32 |hello.c32 |com32/samples | |keytest.c32 |com32/samples | libutil.c32 |localboot.c32 |com32/samples | libcom32.c32 |resolv.c32 |com32/samples | |serialinfo.c32 |com32/samples | |sysdump.c32 |com32/sysdump | libcom32.c32 [1] http://www.syslinux.org/wiki/index.php?title=Library_modules -------------- next part -------------- #!/bin/bash # syslinux_module_deps - show syslinux module dependencies. # version 0.1 # licen...
2015 Sep 18
1
file names format for c32 files
On 18/09/2015 15:23, Ady via Syslinux wrote: > >> On Fri, Sep 18, 2015 at 02:01:32PM +0300, Ady via Syslinux wrote: >>>> >>>> We have pxechn.c32 working with pxelinux.0 to switch between the two >>>> system, but pxechn.c32 under Uefi come up with the folowing error >>> >>> >>> @Developers, please consider using 8.3
2015 Jul 03
4
boot... round 2
Hi, Adam Williamson > I think it would be better if someone else confirms there's actually > something to fix. There was indeed the shortcomming that byte values 128 to 255 were treated as whitespace and mapped to "_" resp. "". This would affect non-ASCII characters of UTF-8 or old ISO-8859. But the reason why gcc 5 made a difference to gcc 4.9 is not found yet.
2013 Apr 29
3
ifcpu[64].c32 functions drop to command line
...Apr 27 02:07 reboot.c32 -rw-rw-r-- 1 root wheel 1836 Apr 27 02:04 resolv.c32 -rw-rw-r-- 1 root wheel 12916 Apr 27 02:04 rosh.c32 -rw-rw-r-- 1 root wheel 1628 Apr 27 02:07 sanboot.c32 -rw-rw-r-- 1 root wheel 3092 Apr 27 02:07 sdi.c32 -rw-rw-r-- 1 root wheel 1720 Apr 27 02:04 serialinfo.c32 -rw-rw-r-- 1 root wheel 15352 Apr 27 02:05 sysdump.c32 -rw-rw-r-- 1 root wheel 18800 Apr 27 02:05 sysdump.elf -rw-rw-r-- 1 root wheel 2152 Apr 27 02:07 vesainfo.c32 -rw-rw-r-- 1 root wheel 26800 Mar 21 16:11 vesamenu.c32 -rw-rw-r-- 1 root wheel 1864 Apr 27 02:07 vpdtest.c3...
2011 Apr 11
0
[PATCH] Makefile: Move Makefile fragments into mk/
...ries for diff --git a/com32/samples/Makefile b/com32/samples/Makefile index bee2b99..76986d5 100644 --- a/com32/samples/Makefile +++ b/com32/samples/Makefile @@ -15,7 +15,8 @@ ## topdir = ../.. -include ../MCONFIG +MAKEDIR = $(topdir)/mk +include $(MAKEDIR)/com32.mk all: hello.c32 resolv.c32 serialinfo.c32 \ localboot.c32 \ diff --git a/com32/sysdump/Makefile b/com32/sysdump/Makefile index bffee3a..e2528f7 100644 --- a/com32/sysdump/Makefile +++ b/com32/sysdump/Makefile @@ -16,7 +16,8 @@ ## topdir = ../.. -include ../MCONFIG +MAKEDIR = $(topdir)/mk +include $(MAKEDIR)/com32.mk -include $(t...
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
2012 Jun 26
2
[GIT PULL] elflink bug fixes
....bca197e 100644 --- a/com32/samples/Makefile +++ b/com32/samples/Makefile @@ -18,6 +18,9 @@ topdir = ../.. MAKEDIR = $(topdir)/mk include $(MAKEDIR)/elf.mk +LDFLAGS_fancyhello.o = $(com32)/libutil/libutil_com.c32 +LDFLAGS_keytest.o = $(com32)/libutil/libutil_com.c32 + all: hello.c32 resolv.c32 serialinfo.c32 \ localboot.c32 \ fancyhello.c32 fancyhello.lnx \ diff --git a/com32/samples/resolv.c b/com32/samples/resolv.c index 3446bd6..bd49d9f 100644 --- a/com32/samples/resolv.c +++ b/com32/samples/resolv.c @@ -22,11 +22,23 @@ #include <stdlib.h> #include <com32.h> -#include <sys...
2012 Aug 14
1
[GIT PULL] elflink fixes
...+14,12 @@ ## samples for syslinux users ## +LIBS = $(com32)/libutil/libutil_com.c32 + topdir = ../.. MAKEDIR = $(topdir)/mk include $(MAKEDIR)/elf.mk -LDFLAGS_fancyhello.o = $(com32)/libutil/libutil_com.c32 -LDFLAGS_keytest.o = $(com32)/libutil/libutil_com.c32 - all: hello.c32 resolv.c32 serialinfo.c32 \ localboot.c32 \ fancyhello.c32 fancyhello.lnx \ diff --git a/com32/samples/resolv.c b/com32/samples/resolv.c index bd49d9f..f4a0e52 100644 --- a/com32/samples/resolv.c +++ b/com32/samples/resolv.c @@ -16,6 +16,7 @@ * Resolve an IP address */ +#include <syslinux/pxe_api.h> #in...
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