Displaying 6 results from an estimated 6 matches for "dpng_no_console_io".
2008 Sep 26
3
SYSLINUX 3.72 released
Well, it has to happen at some point, so I have officially pushed out
SYSLINUX 3.72. The big news in this release is of course the ISOLINUX
hybrid mode support (a single image which can be booted either from a
CD-ROM or from a hard disk/USB stick), but there are plenty of more
goodies in here, including the label listing (not technically
completion) on the Tab key.
As usual, huge thanks to
2018 Aug 02
1
[PATCH 1/2] Add fabs() implementation
When we add -ffreestanding the compiler won't get to inline this any more.
Signed-off-by: David Woodhouse <dwmw2 at infradead.org>
---
com32/lib/math/fabs.S | 15 +++++++++++++++
mk/lib.mk | 2 +-
2 files changed, 16 insertions(+), 1 deletion(-)
create mode 100644 com32/lib/math/fabs.S
diff --git a/com32/lib/math/fabs.S b/com32/lib/math/fabs.S
new file mode 100644
index
2013 Jun 25
0
Syslinux 6.00 released
...inux-6.00/com32/include/sys -I/tmp/syslinux-6.00/core/include
-I/tmp/syslinux-6.00/com32/lib/ -I/tmp/syslinux-6.00/com32/lib/sys/
module -I/tmp/syslinux-6.00/efi64/com32/lib//../.. -W -Wall -Wstrict-
prototypes -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Winline
-DDYNAMIC_CRC_TABLE -DPNG_NO_CONSOLE_IO -DPNG_NO_WRITE_SUPPORTED -
DPNG_NO_MNG_FEATURES -DPNG_NO_READ_tIME -DPNG_NO_WRITE_tIME -c -o
abort.o /tmp/syslinux-6.00/com32/lib/abort.c
rm -f libcom32.elf
ld -shared -m elf_x86_64 --hash-style=gnu -T /tmp/syslinux-6.00/com32/lib/x86_64/elf.ld -soname libcom32.c32 -o libcom32.elf zlib/adler32....
2013 Jun 25
4
Syslinux 6.00 released
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 problem.
You shouldn't need ia64 files to build ia32 and x86-64 versions of
gnu-efi or Syslinux.
--
Matt Fleming, Intel Open Source Technology Center
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi,
These patches contain support for some features that are already in
Syslinux 4 but weren't working properly on the elflink branch. It's
another step closer to feature parity with Syslinux 4.
Having to jump through the comboot API for localboot support is less
than ideal and I'll eventually fix that, probably when we move a big
chunk of code from asm to C.
Also, there's a
2015 Sep 24
0
[PATCH] com32/disk: add UEFI support
..." -a -f "$objdir/lib/libefi.a"
exit 1
fi
+ popd >/dev/null
else
printf "skip gnu-efi build/install\n"
fi
diff --git a/mk/lib.mk b/mk/lib.mk
index ceb95bd..f00dd94 100644
--- a/mk/lib.mk
+++ b/mk/lib.mk
@@ -38,6 +38,31 @@ LIBFLAGS = -DDYNAMIC_CRC_TABLE -DPNG_NO_CONSOLE_IO \
-DPNG_NO_MNG_FEATURES \
-DPNG_NO_READ_tIME -DPNG_NO_WRITE_tIME
+ifdef EFI_BUILD
+
+ifeq ($(ARCH),i386)
+ ARCHOPT = -m32 -march=i386
+ EFI_SUBARCH = ia32
+endif
+ifeq ($(ARCH),x86_64)
+ ARCHOPT = -m64 -march=x86-64
+ EFI_SUBARCH = $(ARCH)
+endif
+
+EFI_OBJDIR = $(OBJ)/../..
+EFIINC = $...