On Wed, Oct 5, 2016 at 9:36 AM, Sylvain Lamontagne
<sylvain.lamonta...@gmail.com> wrote:
> Hi Robert,
>
> a very big thank for your help, but it is still not working.
> I've traced the script and generated a pastebin http://pastebin.com/h9eRtZC1
> We can see that sfdisk is creating a partition layout with 96MB fat
> partition for boot but then create a partition of only 3MB that will be used
> for rootfs.
>
> This leads to the failures described earlier.
> Do you have any idea why this is happening ?

Ah yes, this is a new problem, since we increased the 1MB hole to 4MB
at the start of the drive, (for an ever increasing u-boot)..

Our dual partition sfdisk command changed from:

sudo sfdisk /dev/sde <<-__EOF__
1M,12M,0xE,*
,,,-
__EOF__

Which created:

Device     Boot Start     End Sectors  Size Id Type
/dev/sde1  *     2048   26623   24576   12M  e W95 FAT16 (LBA)
/dev/sde2       26624 7733247 7706624  3.7G 83 Linux

to:

sudo sfdisk /dev/sde <<-__EOF__
4M,12M,0xE,*
,,,-
__EOF__

Which created:

Device     Boot Start   End Sectors Size Id Type
/dev/sde1  *     8192 32767   24576  12M  e W95 FAT16 (LBA)
/dev/sde2        2048  8191    6144   3M 83 Linux

yuk...

we should be doing, so i better add 4+12... ;)

sudo sfdisk /dev/sde <<-__EOF__
4M,12M,0xE,*
16M,,,-
__EOF__

Device     Boot Start     End Sectors  Size Id Type
/dev/sde1  *     8192   32767   24576   12M  e W95 FAT16 (LBA)
/dev/sde2       32768 7733247 7700480  3.7G 83 Linux

Regards,

-- 
Robert Nelson
https://rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CAOCHtYhBFW-yhX8YWnCcGUAjg-H4Cp6iES4cSjqTJCggZqvM_Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to