Displaying 6 results from an estimated 6 matches for "corelibobjs".
2012 Sep 04
0
[PATCH] console: Close stdin, stdout, stderr on ldlinux.c32 unload
...nsole(void)
+{
+ int i;
+
+ for (i = 0; i <= 2; i++)
+ close(i);
+}
+
int main(int argc __unused, char **argv __unused)
{
const void *adv;
diff --git a/com32/lib/Makefile b/com32/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...
2019 Feb 06
4
syslinux-6.04-pre2
On Wed, 2019-02-06 at 11:34 -0800, H. Peter Anvin wrote:
> On 2/6/19 9:17 AM, Joakim Tjernlund via Syslinux wrote:
> > On Wed, 2019-02-06 at 16:00 +0100, Joakim Tjernlund wrote:
> > > On Tue, 2019-02-05 at 14:07 -0800, H. Peter Anvin via Syslinux wrote:
> > > > CAUTION: This email originated from outside of the organization. Do not click links or open attachments
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
...0;
+}
diff --git a/efi/Makefile b/efi/Makefile
index bbf23f2..0c18d14 100644
--- a/efi/Makefile
+++ b/efi/Makefile
@@ -42,6 +42,7 @@ CORE_OBJS += $(addprefix $(OBJ)/../core/, \
fs/pxe/ftp.o fs/pxe/ftp_readdir.o fs/pxe/http.o fs/pxe/http_readdir.o)
LIB_OBJS = $(addprefix $(objdir)/com32/lib/,$(CORELIBOBJS)) \
+ $(addprefix $(objdir)/com32/lib/,$(LIBOTHER_OBJS)) \
$(LIBEFI)
CSRC = $(wildcard $(SRC)/*.c)
diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh
index 7d99e9a..67fe67d 100755
--- a/efi/check-gnu-efi.sh
+++ b/efi/check-gnu-efi.sh
@@ -25,6 +25,7 @@ if [ ! \( -f "$objdir/include/e...
2012 Jun 26
2
[GIT PULL] elflink bug fixes
....o \
strtoumax.o vprintf.o vsprintf.o \
asprintf.o vasprintf.o \
@@ -133,7 +134,7 @@ LIBOTHER_OBJS = \
skipspace.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...
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