search for: printmsg

Displaying 7 results from an estimated 7 matches for "printmsg".

2011 Mar 16
0
[GIT PULL] elflink compiler warning fixes
...com32/elflink/modules/background.c | 3 +++ com32/elflink/modules/hello.c | 3 +-- com32/elflink/modules/menu.c | 1 + com32/elflink/modules/menu.h | 3 +++ com32/elflink/modules/mytest.c | 1 + com32/elflink/modules/passwd.c | 1 + com32/elflink/modules/printmsg.c | 1 + core/elflink/core-elf.h | 4 ++-- core/elflink/execute.c | 2 ++ core/elflink/kernel.c | 4 ++-- 17 files changed, 30 insertions(+), 33 deletions(-) diff --git a/com32/elflink/ldlinux/Makefile b/com32/elflink/ldlinux/Makefile index 339e13e...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
...| 977 -------------------- com32/elflink/modules/modules.dep | 19 - com32/elflink/modules/mytest.c | 30 - com32/elflink/modules/passwd.c | 112 --- com32/elflink/modules/pcitest.c | 156 ---- com32/elflink/modules/printmsg.c | 116 --- com32/elflink/modules/refstr.h | 40 - com32/elflink/modules/sha1.h | 18 - com32/elflink/modules/sha1hash.c | 347 ------- com32/elflink/modules/sha256crypt.c | 559 ----------- com32/e...
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...const int); + +#endif /* BLS_H */ diff --git a/com32/menu/Makefile b/com32/menu/Makefile index 7c2d5927..383ca6f0 100644 --- a/com32/menu/Makefile +++ b/com32/menu/Makefile @@ -23,7 +23,7 @@ MODULES = menu.c32 vesamenu.c32 TESTFILES = COMMONOBJS = menumain.o readconfig.o passwd.o drain.o \ - printmsg.o colors.o background.o refstr.o + printmsg.o colors.o background.o refstr.o bls.o all: $(MODULES) $(TESTFILES) diff --git a/com32/menu/bls.c b/com32/menu/bls.c new file mode 100644 index 00000000..16e8bf18 --- /dev/null +++ b/com32/menu/bls.c @@ -0,0 +1,230 @@ +/* + * bls.c + * + * Source fi...
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 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
2011 Feb 17
5
[PATCH 0/4] Reduce core size
From: Matt Fleming <matt.fleming at linux.intel.com> These patches are based on the elflink branch. This set of patches is my attempt at moving the command-line interface functionality out of the core and into an ELF module to reduce the size of the core. The most interesting patch is [PATCH 4/4] which moves the cli code out of core/elflink and into com32/elflink/modules. [PATCH 4/4] is
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing