search for: mboot

Displaying 20 results from an estimated 221 matches for "mboot".

Did you mean: boot
2010 Mar 21
6
[PATCH] mboot: set boot loader name
Set a pointer to syslinux_version()->version_string in mbinfo. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> diff --git a/com32/mboot/mboot.c b/com32/mboot/mboot.c index 8425e06..76ef7a0 100644 --- a/com32/mboot/mboot.c +++ b/com32/mboot/mboot.c @@ -222,6 +222,13 @@ int main(int argc, char *argv[]) /* Add auxilliary information */ mboot_make_memmap(); mboot_apm(); + + /* Set boot loader name */ + const struct...
2010 Apr 04
1
[PATCH] mboot: set boot device
Set the boot device based on the derivative information. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> diff --git a/com32/mboot/mboot.c b/com32/mboot/mboot.c index d008da0..526d10a 100644 --- a/com32/mboot/mboot.c +++ b/com32/mboot/mboot.c @@ -224,6 +224,14 @@ int main(int argc, char *argv[]) mboot_apm(); mboot_syslinux_info(); + /* Set boot device info */ + const union syslinux_derivative_info *sdi; +...
2019 Mar 12
2
syslinux-6.03 failed to boot ESXI 6.7
Hello, list, I'm buiding syslinux6.3 with ESXI6.7, but it says, * failed to load COM32 File http://172.16.234.112/images/esxi67/mboot.c32* Here is my config: ------------------ label esxi menu label ESXI-6.7 ^Installer kernel http://172.16.234.112/images/esxi67/mboot.c32 append -c http://172.16.234.112/images/esxi67/boot.cfg -------------------- Seeing from http access log, mboot.c32 was loading successfully. 172.16.235...
2009 Jul 21
2
mboot.c32, NUMA and tgz
Hi all, I'm attempting to PXE boot ESXi, which uses the syslinux mboot.c32 module. The mboot.c32 included with ESXi seems to be an older version that runs into an "out of memory loading.." problem halfway through, even though the box has 8GB memory. This may be related to NUMA, since it works fine on an older box but not the newer blade. I saw that some non-...
2015 Oct 10
3
[PATCH] Extend Multiboot1 with support for ELF64 file format
...ected, improved) and eventually accepted and merged in the official Syslinux code. Please don't leave this patch awaiting another 2 years. TIA, Ady. [1]: http://bugzilla.syslinux.org/show_bug.cgi?id=28 Extend Multiboot1 with support for ELF64 file format diff U3 syslinux-6.03/com32/mboot/map.c syslinux-6.03_mbootELF64/com32/mboot/map.c --- syslinux-6.03/com32/mboot/map.c Mon Oct 06 19:27:44 2014 +++ syslinux-6.03_mbootELF64/com32/mboot/map.c Sat Oct 10 09:13:45 2015 @@ -106,6 +106,11 @@ Elf32_Ehdr *eh = ptr; Elf32_Phdr *ph; Elf32_Shdr *sh; + + Elf64_Ehdr *eh64 = p...
2019 Mar 13
1
Fwd: syslinux-6.03 failed to boot ESXI 6.7
...n share some working examples for a USB Thumb drive and PXE servers using chain loading, but it will take me some time. If you are interested in my working configs allow me some time to better document what I have done. Going off on a tangent with this, the source code to VMWare's version of mboot is available when you get the source code from their site. It's a giant DVD ISO file; in it a file called efiboot-....tgz has it. I did a google search and found a file here: https://github.com/xcat2/xcat-dep/tree/master/esxboot It's GPL 2 In case someone want's to look at it. On...
2009 Sep 22
1
mboot.c32 and FreeBSD
Hi, I'm trying to get FreeBSD 7.2 booting using mboot module from syslinux 3.82. Unfortunately it doesn't seem to work. Here is my pxelinux config: === 8< === label freebsd72-i386-mboot kernel mboot.c32 append /kernels/freebsd/7.2/i386/boot/kernel/kernel single --- /kernels/freebsd/7.2/i386/boot/mfsroot === 8< === Here is the error...
2015 Feb 06
1
VMWare ESX mboot.c32
Hi. VMWare has an own/modified mboot.c32, which is capable of using Configfiles. This mboot.c32 is on every Installsystem for their ESXi hypervisor install-iso. Until syslinux 4.07 this works with pxelinux out of the box. Since 5.x this mboot.c32 will not work anymore. There seem to be more modifications than only a parameter "-c...
2015 Aug 19
2
efi mboot xen linux problem
Hi, I am trying to get xen booted on a new mainboard I bought using efi-syslinux/mboot. No success so far. When I choose the xen menu entry except from some characters being wiped from the bottom of the screen nothing is happening. I have made a typo in the xen kernel filename. Nothing changed, no errors about wrong a filename were displayed Initially I compiled syslinux 6.03 (s...
2009 Apr 26
1
Need help trying out new mboot.c32
Hi all, I've started writing a new mboot.c32 using the Syslinux native APIs; it is currently on the new-mboot branch of the Syslinux git repository. However, I don't have a huge number of things which use Multiboot set up to test, so I'd really appreciate it if you're a user of mboot.c32 to help me try this and report back po...
2016 Jun 14
2
Mboot.c32 and LUKS
Hello. I want to make ESXi on LUKS encrypted partition. ESXi uses Mboot.c32. Can the Mboot.c32 work with luks-encrypted? If it is possible, where i can see an example? Thank you!
2007 Mar 13
2
mboot.c32/Xen compatible
Hello all, I'm new on the list and hope this question isn't out of order. I'm booting Xen with mboot.c32 but with 100mb/s cards. I want to upgrade to 1000mb/s. I haven't got the biggest budget to trial and error new network cards so I'd like to buy the right card first time. I think this can be a bit tricky from 100mb/s card experience. A 3c905CX-TXM (03-0247-000 E) wouldn't boot but...
2012 Aug 02
1
[PATCH] fix typo in comment
Signed-off-by: Frediano Ziglio <frediano.ziglio at citrix.com> --- com32/mboot/mboot.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/com32/mboot/mboot.c b/com32/mboot/mboot.c index 35450e0..10e6701 100644 --- a/com32/mboot/mboot.c +++ b/com32/mboot/mboot.c @@ -198,7 +198,7 @@ int main(int argc, char *argv[]) } if (init_map()) - return 1...
2006 Mar 11
5
mboot.c32, weird e820 map on HP blade machine, possible memory corruption
I'm seeing this on a HP Blade and i'm not sure why this is happning since the nature of the issue is so wierd. I compiled mboot.c with a DEBUG defined in the mboot.c file. In the funciton init_mmap(), it prints the e820 map and on the HP blade this map values come out to be totally random. Some weird numbers which dont make any sense at all. However, if i add a while(1); or a exit(1); at the end of init_mmap() function, I...
2015 Oct 10
2
[PATCH 2/2] com32/mboot/map.c: removed trailing spaces
From: Geert Stappers <stappers at nero.gpm.stappers.nl> They were introduced by the patch for ELF64 support. --- com32/mboot/map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/com32/mboot/map.c b/com32/mboot/map.c index 2e8641f..1992f14 100644 --- a/com32/mboot/map.c +++ b/com32/mboot/map.c @@ -281,7 +281,7 @@ struct multiboot_header *map_image(void *ptr, size_t len) sh[i].sh_addr = addr;...
2006 May 24
3
[PATCH 1/1] mboot.c32: fix register constraints bug
From: Tim Deegan <Tim.Deegan at cl.cam.ac.uk> Fix register constraints of final jump to kernel entry. When compiled with some GCC versions, mboot.c32 would clobber the kernel load address and try to jump to 0x2badb002. Signed-off-by: Tim Deegan <Tim.Deegan at cl.cam.ac.uk> --- --- syslinux-3.20-pre8/com32/modules/mboot.c.orig 2006-05-22 11:06:17.000000000 +0100 +++ syslinux-3.20-pre8/com32/modules/mboot.c 2006-05-24 09:37:14.00000000...
2006 Jan 14
3
Patch to add Symbols/segments loader for mboot.c
Hello, I use Tim's mboot.c32 to load multiboot kernels over pxelinux. However, some kernels require the symbol table and other information in the ELF section header table to be able to load properly. This functionality is not present in mboot.c now, so I added support for it. The patch is attached. It would be great if yo...
2008 Dec 03
2
mboot.c32 loses connection when loading the Kernel
Hi, I'm hope I'm right here. I'm trying to boot a XEN 3.2.1 via PXEBoot using the following config: LABEL xen_3.2_amd64 kernel mboot.c32 append images/debian/xen_3.2/amd64/xen-3.2-1-amd64.gz \ --- images/debian/xen_3.2/amd64/vmlinuz-2.6.26-bpo.1-xen-amd64 rw root=/dev/nfs nfsroot=172.16.0.1:/var/lib/tftpboot/clientroot panic=0 \ --- images/debian/xen_3.2/amd64/initrd.img-2.6.26-bpo.1-xen-amd64 Its an AMD64 Ma...
2007 May 01
1
Using pxelinux mboot.c32 to multiboot Solaris
Hi All, Now that we have multiboot capable pxelinux, thanks to mboot.c32, I decided to try and remove pxegrub from my x86 jumpstart infrastructure since, in theory, pxelinux can now do it all. The problem I'm having is I'm not very sure I'm following Tim's documentation correctly... I'm not 100% what comes after the --- and whether the Sun kerne...
2006 May 25
1
pxelinux/mboot confused about e820 memory maps on HP Proliant BIOS's
...005:86d8246c6aff (XEN) Command line: kernels/xen-debug.gz console=vga (XEN) WARNING: Buggy e820 map detected and fixed (truncated length fields). (XEN) Physical RAM map: (XEN) Not enough memory to stash the DOM0 kernel image. ... ------ After some diagnosing this turned out to be a problem with mboot and the HP Proliant DL360 & HP Proliant DL380 systems we have. When mboot was querying the BIOS for their E820 memory maps they were getting gobbly gook and not the proper memory maps. We did not see this problem with our Dell Proliant 1750's. I found a fix which I've applied to mboot...