search for: initramfs_fil

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

Did you mean: initramfs_file
2014 Nov 22
3
Use z size specifier for printf-ing size_t variable
Hello. Use the z size specifier to printf-ing size_t variables to get rid of gcc warning format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int? -- MartinS diff --git a/com32/lib/syslinux/initramfs_file.c b/com32/lib/syslinux/initramfs_file.c index 7eb55b5..9f9fa75 100644 --- a/com32/lib/syslinux/initramfs_file.c +++ b/com32/lib/syslinux/initramfs_file.c @@ -126,7 +126,7 @@ int initramfs_mknod(struct initramfs *ihead, const char *filename, if (do_mkdir) bp += initramfs_mkdirs(filename, bp,...
2015 Jan 25
0
Use z size specifier for printf-ing size_t variable
...llo. > > Use the z size specifier to printf-ing size_t variables to get rid of gcc > warning > format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int? Please, add the signed-off line. > > > -- > MartinS > > diff --git a/com32/lib/syslinux/initramfs_file.c b/com32/lib/syslinux/initramfs_file.c > index 7eb55b5..9f9fa75 100644 > --- a/com32/lib/syslinux/initramfs_file.c > +++ b/com32/lib/syslinux/initramfs_file.c > @@ -126,7 +126,7 @@ int initramfs_mknod(struct initramfs *ihead, const char *filename, > if (do_mkdir) >...
2012 Oct 26
2
[PATCH] 4 Patches for initrd+= and initrdfile= Options
...c72626ff8f70dc45f Mon Sep 17 00:00:00 2001 From: Shao Miller <sha0.miller at gmail.com> Date: Fri, 26 Oct 2012 02:14:28 -0400 Subject: [PATCH 4/4] initramfs chain handling: Accounting fixes for padding, etc. Signed-off-by: Shao Miller <sha0.miller at gmail.com> --- com32/lib/syslinux/initramfs_file.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-linux.c32-Move-some-initrd-x-y-z-code-out-of-main.patch Type: application/octet-stream Size: 3251 bytes Desc: not available URL: <htt...
2013 Jun 25
0
Syslinux 6.00 released
.../shuffle_rm.o syslinux/zonelist.o syslinux/dump_mmap.o syslinux/dump_movelist.o syslinux/run_default.o syslinux/run_command.o syslinux/cleanup.o syslinux/localboot.o syslinux/runimage.o syslinux/loadfile.o syslinux/floadfile.o syslinux/zloadfile.o syslinux/load_linux.o syslinux/initramfs.o syslinux/initramfs_file.o syslinux/initramfs_loadfile.o syslinux/initramfs_archive.o sys/libansi.o sys/gpxe.o atexit.o onexit.o abort.o ld: i386 architecture of input file `zlib/adler32.o' is incompatible with i386:x86-64 output ld: i386 architecture of input file `zlib/compress.o' is incompatible with i386:x86-6...
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
2016 Mar 20
0
[PATCH 0/1] EFI image booting capabilities
...prN a/mk/lib.mk b/mk/lib.mk > --- a/mk/lib.mk 2014-10-06 10:27:44.000000000 -0600 > +++ b/mk/lib.mk 2015-02-18 20:15:07.333776455 -0700 > @@ -161,7 +161,9 @@ LIBLOAD_OBJS = \ > \ > syslinux/load_linux.o syslinux/initramfs.o \ > syslinux/initramfs_file.o syslinux/initramfs_loadfile.o \ > - syslinux/initramfs_archive.o > + syslinux/initramfs_archive.o \ > + syslinux/load_efi.o > + > > LIBMODULE_OBJS = \ > sys/module/common.o sys/module/$(ARCH)/elf_module.o...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
....Dhcpv4, pkt_len); + Print(L"\n"); /* diff -uprN a/mk/lib.mk b/mk/lib.mk --- a/mk/lib.mk 2014-10-06 10:27:44.000000000 -0600 +++ b/mk/lib.mk 2015-02-18 20:15:07.333776455 -0700 @@ -161,7 +161,9 @@ LIBLOAD_OBJS = \ \ syslinux/load_linux.o syslinux/initramfs.o \ syslinux/initramfs_file.o syslinux/initramfs_loadfile.o \ - syslinux/initramfs_archive.o + syslinux/initramfs_archive.o \ + syslinux/load_efi.o + LIBMODULE_OBJS = \ sys/module/common.o sys/module/$(ARCH)/elf_module.o \ -------------- next part -------------- A non-text attachment was scrubbed... Name: boot_efi...