search for: null_read

Displaying 8 results from an estimated 8 matches for "null_read".

Did you mean: null_pread
2008 Aug 16
1
Minimal COM32 Root Module
...sys/ftell.o \ sys/isatty.o sys/fstat.o LIBGCC_OBJS = \ libgcc/__ashldi3.o \ libgcc/__negdi2.o libgcc/__ashrdi3.o libgcc/__lshrdi3.o \ libgcc/__muldi3.o \ libgcc/__divdi3.o libgcc/__moddi3.o LIBCONSOLE_OBJS = \ sys/colortable.o sys/screensize.o \ \ sys/rawcon_write.o \ sys/null_read.o sys/null_write.o sys/serial_write.o \ \ sys/xserial_write.o \ \ sys/ansi.o \ \ sys/ansicon_write.o sys/ansiserial_write.o \ \ syslinux/serial.o LIBOTHER_OBJS = \ abort.o atexit.o atoi.o atol.o atoll.o calloc.o creat.o \ ctypes.o \ putchar.o setjmp.o \ fread2.o fwrit...
2012 Sep 04
0
[PATCH] console: Close stdin, stdout, stderr on ldlinux.c32 unload
...lib/Makefile index 5d270a4..fc5defc 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -170,7 +170,7 @@ CORELIBOBJS = \ sprintf.o strlcat.o strchr.o strlcpy.o strncasecmp.o ctypes.o \ fputs.o fwrite2.o fwrite.o fgetc.o fclose.o errno.o lmalloc.o \ sys/err_read.o sys/err_write.o sys/null_read.o \ - sys/stdcon_write.o sys/openconsole.o \ + sys/stdcon_write.o \ syslinux/memscan.o strrchr.o \ libgcc/__ashldi3.o libgcc/__udivdi3.o \ libgcc/__negdi2.o libgcc/__ashrdi3.o libgcc/__lshrdi3.o \ diff --git a/core/extern.inc b/core/extern.inc index 3cde286..953be42 100644...
2013 Jun 29
0
Syslinux 6.00 released
...om32/lib/fwrite2.o /tmp/syslinux/efi64/com32/lib/fwrite.o /tmp/syslinux/efi64/com32/lib/fgetc.o /tmp/syslinux/efi64/com32/lib/fclose.o /tmp/syslinux/efi64/com32/lib/lmalloc.o /tmp/syslinux/efi64/com32/lib/sys/err_read.o /tmp/syslinux/efi64/com32/lib/sys/err_write.o /tmp/syslinux/efi64/com32/lib/sys/null_read.o /tmp/syslinux/efi64/com32/lib/sys/stdcon_write.o /tmp/syslinux/efi64/com32/lib/syslinux/memscan.o /tmp/syslinux/efi64/com32/lib/strrchr.o /tmp/syslinux/efi64/com32/lib/strcat.o /tmp/syslinux/efi64/com32/lib/libgcc/__ashldi3.o /tmp/syslinux/efi64/com32/lib/libgcc/__udivdi3.o /tmp/syslinux/efi64/co...
2013 Jun 29
6
Syslinux 6.00 released
On Sat, 29 Jun, at 01:57:58AM, Igor Sverkos wrote: > Hi, > > Matt Fleming wrote: > > On Tue, 25 Jun, at 01:52:00PM, Helmut Hullen wrote: > >> Thanks - now it crashes later ... > > > > What crash are you seeing? > > > >> I don't have the ia64 files which are needed for a complete binary. But > >> maybe that's only my special
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com> The following patch series is available at, git://git.zytor.com/users/mfleming/syslinux.git elflink All patches are against the 'elflink' branch. This series fixes a few serious bugs and some behavioural incompatibilities with the 4.x series. Matt Fleming (19): ldlinux: Initialise 'p' before using it. ldlinux: Parse
2015 Sep 24
0
[PATCH] com32/disk: add UEFI support
...LAGS) $(WARNFLAGS) $(LIBFLAGS) $(FWFLAGS) ifndef EFI_BUILD CFLAGS += -mregparm=3 -DREGPARM=3 endif VPATH = $(SRC) + +LIBSYS_OBJS = \ + sys/line_input.o \ + sys/colortable.o sys/screensize.o \ + \ + sys/stdcon_read.o sys/stdcon_write.o sys/rawcon_read.o \ + sys/rawcon_write.o \ + sys/null_read.o sys/null_write.o sys/serial_write.o \ + \ + sys/xserial_write.o \ + \ + sys/ansi.o \ + \ + sys/ansicon_write.o sys/ansiserial_write.o \ + \ + sys/x86_init_fpu.o math/pow.o math/strtod.o \ + \ + syslinux/setup_data.o + +LIBPCI_OBJS = \ + pci/cfgtype.o pci/scan.o pci/bios.o \ + pci/...
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...e.o \ chrreplace.o \ bufprintf.o \ - inet.o \ + inet.o dhcppack.o dhcpunpack.o \ strreplace.o \ lstrdup.o \ \ @@ -169,7 +170,7 @@ CORELIBOBJS = \ fputs.o fwrite2.o fwrite.o fgetc.o fclose.o errno.o lmalloc.o \ sys/err_read.o sys/err_write.o sys/null_read.o \ sys/stdcon_write.o sys/openconsole.o \ - syslinux/memscan.o \ + syslinux/memscan.o strrchr.o \ libgcc/__ashldi3.o libgcc/__udivdi3.o \ libgcc/__negdi2.o libgcc/__ashrdi3.o libgcc/__lshrdi3.o \ libgcc/__muldi3.o libgcc/__udivmoddi4.o libgcc/__umoddi3.o \ diff --git a/c...
2012 Aug 14
1
[GIT PULL] elflink fixes
Hi Peter, The main part of this pull request includes commits that try to replace as many __intcall() invocations as possible. Some remain, but not many (and eventually they'll be gone too). There's also a patch to make better use of ld's --as-needed option and various other bug fixes/cleanups. The following changes since commit ff7334a2ce536b7f4b1f6d6f93ff4e285a3bd45a: Only