Displaying 9 results from an estimated 9 matches for "libcom32min".
2014 Jan 18
4
Makefiles: includes and rule prerequisites
...ome/gene/s/g/bios/memdump'
make[2]: *** [memdump] Error 2
2) For recursive prerequisites, is it better to list the directory as
a prerequisite (simple and current approach) or would it be better to
have a more complex set of rules like the following:
--In com32/Makefile:
lib/libcom32.c32 lib/libcom32min.a lib/libcom32core.a: lib
libutil/libutil.c32: libutil
--In com32/rosh/Makefile:
rosh.c32: lib/libcom32.c32 libutil/libutil.c32
--
-Gene
2014 Jan 19
1
Makefiles: includes and rule prerequisites
...est rule)
>> 2) For recursive prerequisites, is it better to list the directory as
>> a prerequisite (simple and current approach) or would it be better to
>> have a more complex set of rules like the following:
>>
>> --In com32/Makefile:
>> lib/libcom32.c32 lib/libcom32min.a lib/libcom32core.a: lib
>> libutil/libutil.c32: libutil
>>
>> --In com32/rosh/Makefile:
>> rosh.c32: lib/libcom32.c32 libutil/libutil.c32
>>
>
> You *have* to use a PHONY target, e.g. the directory name. Otherwise
> you may end up with a dependency getting...
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
2014 Jan 18
0
Makefiles: includes and rule prerequisites
...*** [memdump] Error 2
>
>
> 2) For recursive prerequisites, is it better to list the directory as
> a prerequisite (simple and current approach) or would it be better to
> have a more complex set of rules like the following:
>
> --In com32/Makefile:
> lib/libcom32.c32 lib/libcom32min.a lib/libcom32core.a: lib
> libutil/libutil.c32: libutil
>
> --In com32/rosh/Makefile:
> rosh.c32: lib/libcom32.c32 libutil/libutil.c32
>
> --
> -Gene
Hello Gene,
I did get your observation, but I didn't get what you
are expecting from the mailinglist.
I do see that y...
2014 Jan 18
0
Makefiles: includes and rule prerequisites
...or 2
>
Oops. My bad.
>
> 2) For recursive prerequisites, is it better to list the directory as
> a prerequisite (simple and current approach) or would it be better to
> have a more complex set of rules like the following:
>
> --In com32/Makefile:
> lib/libcom32.c32 lib/libcom32min.a lib/libcom32core.a: lib
> libutil/libutil.c32: libutil
>
> --In com32/rosh/Makefile:
> rosh.c32: lib/libcom32.c32 libutil/libutil.c32
>
You *have* to use a PHONY target, e.g. the directory name. Otherwise
you may end up with a dependency getting skipped simply due to the file
y...
2012 Sep 04
0
[PATCH] console: Close stdin, stdout, stderr on ldlinux.c32 unload
...cause ansicon_counter was reinitialised).
The most logical way to deal with this is to close stdin, stdout and
stderr when unloading ldlinux.c32.
It also turns out that sys/openconsole.o was present in two Makefile
variables which lead to duplication of code, data, etc. We only need
it present in libcom32min.a and not in the core since the core never
handles opening consoles, at least not now that we've deleted
printf_init() which is safe because we always open a console in
ldlinux.c32 anyway.
Signed-off-by: Matt Fleming <matt.fleming at intel.com>
---
com32/elflink/ldlinux/ldlinux.c | 12...
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
2012 Nov 02
10
[PATCH 0/9] elflink fixes
From: Matt Fleming <matt.fleming at intel.com>
Here are the patches that I've got queued up based on the very helpful
feedback I received from people testing Syslinux 5.00-pre9. Unless
anyone has any concerns these will make it into Syslinux 5.00-pre10.
Matt Fleming (9):
pxe: Don't call open_config() from the pxe core
ldlinux: Print a warning if no config file is found
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...m32/include/bls.h
create mode 100644 com32/menu/bls.c
diff --git a/com32/elflink/ldlinux/Makefile b/com32/elflink/ldlinux/Makefile
index 87c0d362..ac4587dd 100644
--- a/com32/elflink/ldlinux/Makefile
+++ b/com32/elflink/ldlinux/Makefile
@@ -18,7 +18,7 @@ LIBS = --whole-archive $(objdir)/com32/lib/libcom32min.a
OBJS = ldlinux.o cli.o readconfig.o refstr.o colors.o getadv.o adv.o \
execute.o chainboot.o kernel.o get_key.o advwrite.o setadv.o \
- loadhigh.o msg.o
+ loadhigh.o msg.o bls.o
BTARGET = $(LDLINUX)
diff --git a/com32/elflink/ldlinux/bls.c b/com32/elflink/ldlinux/bls.c
new file mode 100...