search for: lstrdup

Displaying 5 results from an estimated 5 matches for "lstrdup".

Did you mean: strdup
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...dt/hdt-common.h | 3 - com32/include/com32.h | 2 +- com32/include/klibc/compiler.h | 7 ++ com32/include/sys/module.h | 32 +++---- com32/lib/getcwd.c | 1 + com32/lib/lmalloc.c | 9 -- com32/lib/lstrdup.c | 2 +- com32/lib/sys/fileclose.c | 1 + com32/lib/sys/fileread.c | 1 + com32/lib/sys/module/common.c | 9 +- com32/lib/sys/module/common.h | 8 ++ com32/lib/sys/module/elf_module.c | 20 ++-- com32/lib/sys/module/el...
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...k.o strtol.o strtoll.o strtoul.o strtoull.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...
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com> Since we can't use __intcall() for EFI, and since we can now have the ELF module code resolve all our symbols at runtime, we should delete as many references to __intcall() as possible and just access the symbols directly. The most interesting patch is the support for weak symbols. We need to be able to reference derivative-specific
2012 Aug 14
1
[GIT PULL] elflink fixes
...b/com32/lib/syslinux/run_command.c @@ -28,21 +28,16 @@ #include <syslinux/boot.h> #include <stddef.h> #include <string.h> -#include <com32.h> +#include <core.h> int syslinux_run_command(const char *command) { - static com32sys_t ireg; char *lm_command = lstrdup(command); if (!lm_command) return -1; - ireg.eax.w[0] = 0x0003; - ireg.es = SEG(lm_command); - /* ireg.ebx.w[0] = OFFS(lm_command); */ - - __intcall(0x22, &ireg, NULL); + create_args_and_load(lm_command); /* Should not return even on failure, but in case......
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