On Wed, Nov 27, 2013 at 5:16 PM, <[email protected]> wrote: > Hi Robert, > > I just started to play around with your omap-image-builder scripts. What I'm > essentially trying to achieve is a customized version of your BBB flasher > image which creates three instead of two partitions. I tried to edit > beaglebone-black-copy-eMMC-to-microSD.sh on the flasher SD, thinking that I > can "smuggle" my partition in there, but it didn't work. Maybe I simply > failed at the sfdisk arguments, but I'm really not sure where to go from > here. Can you give me a hint?
By default i'm calling sfdisk via: 1,96,0xe,* ,,,- So if you want a 3rd partition of 100MB, this should do it: 1,96,0xe,* ,196,, ,,,- > Right now, when I run ./build_image.sh, the > scripts seems to download a lot from ubuntu's package servers, not for > debian. I tried to edit .project according to my needs but I'm kinda stuck > and I don't think I'm doing it right. ;-) "./build_image.sh" by default is setup to push out all my release, 3 ubuntu ones and 2 debian ones.. If you compare directly compare the new "beagleboard.org_image.sh" with "build_image.sh" you can see where i limited it to only debian wheezy and one kernel.. Note that script does a few other things too, it is defintelly not qemu safe, run on pure armv7 hardware (multi core).. > > Another question, once I have a stable system on my beagle bone, can I > create a flasher microSD directly from the running system which contains my > custom debian install so I can then install it on another beagle bone, too? > What would be a way to achieve that? I've tried to do that with this: https://github.com/RobertCNelson/tools/blob/master/scripts/beaglebone-black-make-microSD-flasher-from-eMMC.sh but it'll only work if you used one of my image as a base, as it relies on a boot script i had installed by default and a custom uEnv.txt.. Regards, -- Robert Nelson http://www.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 [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
