search for: found_part

Displaying 8 results from an estimated 8 matches for "found_part".

Did you mean: find_part
2013 Dec 14
4
[PATCH 1/2] Match comment with code
...omment 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 information */ + - bootable partition, type EFI (ED), no CHS information */ xorl %eax,%eax movb $0x80,%al stosl -- 1.8.4.2
2013 Dec 29
2
[PATCH 2/2] Remove some whitespace
...-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 8ab6b50..7d98aee 100644 > --- a/mbr/gptmbr.S > +++ b/mbr/gptmbr.S > @@ -213,7 +213,7 @@ found_part: > > movzwl %cx,%eax /* Length of GPT entry */ > stosl > - > + > rep; movsb /* GPT entry follows MBR entry */ > popw %si > The removal of that trailing tab character is valid change. What is needed to get the patch applied in the leading git repository?...
2013 Dec 15
3
[PATCH 1/2] Match comment with code
...viewing your patch revealed other mismatch. Please rework your patch and submit it again to the mailinglist. Groeten Geert Stappers -- $ git diff -U5 mbr/gptmbr.S diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S index 7f450d3..327cfa1 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -191,12 +191,12 @@ found_part: xchgw %ax,%cx /* Set up %cx for rep movsb further down */ movw $dssi_out,%di pushw %di - /* 80 00 00 00 ee 00 00 00 - - bootable partition, type EFI (EE), no CHS information */ + /* 80 00 00 00 ed 00 00 00 + - bootable partit...
2013 Dec 14
0
[PATCH 2/2] Remove some whitespace
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 8ab6b50..7d98aee 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -213,7 +213,7 @@ found_part: movzwl %cx,%eax /* Length of GPT entry */ stosl - + rep; movsb /* GPT entry follows MBR entry */ popw %si -- 1.8.4.2
2013 Dec 15
0
[PATCH 1/2] Match comment with code
...atch and submit it again to the mailinglist. > > > > Groeten > Geert Stappers > > -- > $ git diff -U5 mbr/gptmbr.S > diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S > index 7f450d3..327cfa1 100644 > --- a/mbr/gptmbr.S > +++ b/mbr/gptmbr.S > @@ -191,12 +191,12 @@ found_part: > xchgw %ax,%cx /* Set up %cx for rep movsb further down */ > > movw $dssi_out,%di > pushw %di > > - /* 80 00 00 00 ee 00 00 00 > - - bootable partition, type EFI (EE), no CHS information */ > + /* 80 00 00 00...
2013 Dec 30
0
[PATCH 2/2] Remove some whitespace
...enkerkhof.com> >> --- >> mbr/gptmbr.S | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S >> index 8ab6b50..7d98aee 100644 >> --- a/mbr/gptmbr.S >> +++ b/mbr/gptmbr.S >> @@ -213,7 +213,7 @@ found_part: >> >> movzwl %cx,%eax /* Length of GPT entry */ >> stosl >> - >> + >> rep; movsb /* GPT entry follows MBR entry */ >> popw %si >> > > The removal of that trailing tab character is...
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.
2012 Sep 10
19
Initial support for sector size >512
This set of patches add some support for sector size >512. Currently it fixes extlinux, MBR for GPT and ext partitions. Other code is unaffected. This set of patches has been tested on a read Dell machine running a beta firmware.