search for: mbr

Displaying 20 results from an estimated 1996 matches for "mbr".

Did you mean: mb
2012 Feb 15
2
[PATCH] isohybrid: Generate MBR even when in EFI mode
Various EFI systems insist that there be no active flag in the pMBR in order to parse the GPT. The only way around this is to also generate a valid MBR - the firmware will then pick that up and use the system partition provided there. In order to deal with other EFI "sanity" checks, the partition type for the non-EFI partitions is set to 0 to skip the fir...
2014 May 09
3
[PATCH 1/2] tests/syslinux: factorize search for mbr.bin
....pl b/tests/syslinux/test-syslinux.pl index d86c095..8a227d4 100755 --- a/tests/syslinux/test-syslinux.pl +++ b/tests/syslinux/test-syslinux.pl @@ -29,13 +29,20 @@ my $bootloader = $ENV{BOOTLOADER} || "syslinux"; my $disk = "$bootloader-guest.img"; # Find prerequisites. -my $mbr = "/usr/share/syslinux/mbr.bin"; -unless (-f $mbr) { - $mbr = "/usr/lib/syslinux/mbr.bin"; - unless (-f $mbr) { - print "$0: mbr.bin (from SYSLINUX) not found, skipping test\n"; - exit 77; - } +my $mbr; +my @mbr_paths = ( + "/usr/share/sysl...
2012 May 26
2
[PATCH] Update diag/mbr instruction to match the current filename.
From: Jean-Christian de Rivaz <jc at eclis.ch> I suspect that some instructions about how to use the diag/mbr was not updated when the source file was renamed to handoff.S. Here is a simple proposition to fix that. Jean-Christian de Rivaz --- diag/mbr/README | 4 ++-- diag/mbr/handoff.S | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/diag/mbr/README b/diag/mbr/README ind...
2015 Nov 19
3
[PATCH] Refactor checksize.pl
- Remove padsize argument as it is never used. - Add an usage printed when $file is not set or --help, -h is the first argument. - Add basic tests for this script. --- mbr/checksize.pl | 27 ++++++++++++++++++--------- mbr/checksize_test.sh | 22 ++++++++++++++++++++++ 2 files changed, 40 insertions(+), 9 deletions(-) create mode 100644 mbr/checksize_test.sh diff --git a/mbr/checksize.pl b/mbr/checksize.pl index 4b42327..cbca5b2 100755 --- a/mbr/checksize.pl +...
2015 Oct 15
2
[PATCH 2/4] Remove unused linker scripts
...ned-off-by: Sylvain Gault <sylvain.gault at gmail.com> > --- > core/syslinux.ld | 414 ------------------------------------------------ > core/x86_64/syslinux.ld | 389 --------------------------------------------- > efi/syslinux.ld | 176 -------------------- > mbr/mbr.ld | 73 --------- > memdisk/memdisk.ld | 140 ---------------- > 5 files changed, 1192 deletions(-) > delete mode 100644 core/syslinux.ld > delete mode 100644 core/x86_64/syslinux.ld > delete mode 100644 efi/syslinux.ld > delete mode 100644 mbr/mbr.ld &...
2015 Nov 19
1
[PATCH] Refactor checksize.pl
Le Jeudi 19 novembre 2015 18h43, Celelibi <celelibi at gmail.com> a ?crit : 2015-11-19 17:30 UTC+01:00, Nicolas Cornu via Syslinux <syslinux at zytor.com>: > - Remove padsize argument as it is never used. > - Add an usage printed when $file is not set or --help, -h > is the first argument. &gt...
2015 Oct 15
2
[PATCH 2/4] Remove unused linker scripts
> As the commit line say, it removes unused linker scripts. This commit > intended to be really dumb: unused = delete. And mbr/mbr.ld isn't > used. I think it's detter delete this one and then move > mbr/i386/mbr.ld to mbr/mbr.ld in a second commit. Which I didn't do > because I wasn't sure of that. > > I didn't delete mbr/x86_64/mbr.ld because I wasn't sure it wouldn't be > us...
2016 Feb 22
1
How to understand partition table on hybrid ISO image?
Hi, if I inspect an hybrid ISO with tools like fdisk and gdisk, then looks like hybrid ISO has both the MBR and GPT in order to support both the BIOS and UEFI: # gdisk -l /dev/sdb GPT fdisk (gdisk) version 0.8.10 Partition table scan: MBR: MBR only BSD: not present APM: not present GPT: present Found valid MBR and GPT. Which do you want to use? 1 - MBR 2 - GPT 3 - Create blank GPT Your ans...
2007 Dec 14
3
SYSLINUX doesn't build on RedHat 4
I grabbed the new SYSLINUX 3.54, but it refuses to build on my RedHat RHEL4 system: # make set -e ; for i in mbr ; do make DATE=0x47606c42 HEXDATE=0x47606c42 -C $i all ; done make[1]: Entering directory `/scratch/syslinux-3.54/mbr' gcc -m32 -ffreestanding -march=i386 -Wa,-a=mbr.lst -c -o mbr.o mbr.S as: option `-alternate' doesn't allow an argument make[1]: *** [mbr.o] Error 1 make[1]: Leaving d...
2013 Dec 14
4
[PATCH 1/2] Match comment with code
The handover protocol uses ED as partition type but the comment above it still mentions EE Signed-off-by: Ruben Kerkhof <ruben at rubenkerkhof.com> --- mbr/gptmbr.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S index 7f450d3..8ab6b50 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -194,7 +194,7 @@ found_part: pushw %di /* 80 00 00 00 ee 00 00 00 - - bootable partition, type EFI (EE), no CHS in...
2009 Mar 30
3
[PATCH 0/3] v2: mbr: Ctrl-key press forces load from first hard disk
Version 2 of these patches includes optimisations suggested by H Peter Alvin to save bytes: * Use memory-mapped I/O register to read keyboard shift flags * Don't reload DX from memory; move immediate byte to register Tested using mbr.bin. TJ (3): mbr: Ctrl-key press forces load from first hard disk gptmbr: Ctrl-key press forces load from first hard disk isohdpfx: Ctrl-key press forces load from first hard disk mbr/gptmbr.S | 14 ++++++++++++-- mbr/isohdpfx.S | 10 ++++++++++ mbr/mbr.S | 10 ++++++++++ 3 fi...
2018 Nov 29
2
Discard .note.gnu.property section to fix build failure (patch)
> There's 0 need to build MBRs for > EFI At least gptmbr.bin might come to mind (after all, GPT is part of the UEFI specs). Isohybrid with UEFI options perhaps too? > and I'm looking at why utils/ depends on mbr/ isohybrid(.pl) and mkdiskimage come to mind here? I'm not saying for certain these are the...
2009 Mar 30
2
[PATCH 1/1] v3: Add Diagnostic MBR for trouble-shooting BIOS boot-order problems.
--- mbr/Makefile | 6 +- mbr/mbr-diag.S | 377 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 382 insertions(+), 1 deletions(-) create mode 100644 mbr/mbr-diag.S diff --git a/mbr/Makefile b/mbr/Makefile index 0bdf7e3..b9d743d 100644 --- a/mbr/Makefile +++ b/mbr/Makefile @...
2004 Oct 10
4
grub in the mbr
hi, i ve grub in the mbr of my usb stick and now i am not longer able to use the syslinux bootmanager. i tried to delete grub from mbr with: dd if=/dev/null of=/dev/sda bs=512 count=1 but nothing changed grub is still in the mbr hope somebody can help me thx so long
2010 Dec 23
1
Report: Acer Travelmat stupid MBR check
Just in case we get a report like this when the Syslinux MBR is used together with an Acer Travelmate: ============================================================================ I have an Acer Travelmate and had the known ?Unregistered Exception Handler? error at boot time. Short Explanation: The laptop starts up bios and when the bios wants to boot from...
2008 Dec 12
2
Custom MBR
Hi, Is it possible to always load syslinux from whichever partition it?s installed on, regardless of whether it?s active or not (and even if it?s a logical partition), just like grub? The MBR code that ships with syslinux (much like dos/windows default MBR) would only boot the active primary partition. It would be nice if you could provide a custom MBR such that one could set one byte in the MBR indicating which partition should be booted (0,1,2,3 for primary/extended and 4,5,6,? for lo...
2009 Mar 30
2
[PATCH 1/1] v2 Add Diagnostic MBR for trouble-shooting
--- mbr/Makefile | 6 +- mbr/mbr-diag.S | 372 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 377 insertions(+), 1 deletions(-) create mode 100644 mbr/mbr-diag.S diff --git a/mbr/Makefile b/mbr/Makefile index 0bdf7e3..b9d743d 100644 --- a/mbr/Makefile +++ b/mbr/Makefile @...
2015 Nov 19
0
[PATCH] Refactor checksize.pl
2015-11-19 17:30 UTC+01:00, Nicolas Cornu via Syslinux <syslinux at zytor.com>: > - Remove padsize argument as it is never used. > - Add an usage printed when $file is not set or --help, -h > is the first argument. > - Add basic tests for this script. > --- > mbr/checksize.pl | 27 ++++++++++++++++++--------- > mbr/checksize_test.sh | 22 ++++++++++++++++++++++ > 2 files changed, 40 insertions(+), 9 deletions(-) > create mode 100644 mbr/checksize_test.sh > > diff --git a/mbr/checksize.pl b/mbr/checksize.pl > index 4b42327..cbca5b2 10...
2013 Feb 11
3
Installing FreeBSD 9.1 amd64 on IBM x3550 M3
Hello, I'm trying to install FreeBSD 9.1 amd64 on an IBM x3550 M3 server. Installation went smoothly, RAID controller and network cards were successfully recognised. But, after the installation, the server fails to boot from disk. There were some posts, about two years ago, in this list implying that the problem lies in UEFI but I couldn't find any clear solution. Any suggestions would
2013 Feb 08
6
[PATCH] 4k_sector: Support dynamic sectors in GPT MBR
This patches add support for dynamic sectors to GPT MBR code. First 3 patches are trick and optimizations to gain some space for the forth patch. I have a modified version of SeaBIOS, some code and some script o test it I'll send on a different mail.