Hi Alexander, This will take a few tweaks, give me a day or so
On Thu, Nov 13, 2014 at 4:47 AM, Alexander Rössler <[email protected]> wrote: > The Debian images include a fat partition for sharing drivers and > documentation. Is there a way to increase the size of this partition? We > would like to use the FAT partition to deploy our applications within the > product. > > I already tried using GParted to move the root partition and increasing the > FAT partition. Booting still worked. However, GParted was not able to resize > the FAT partition. fat is hardcoded to 96Mb when "--beagleboard.org-production" is passed to setup_sdcard.sh https://github.com/RobertCNelson/omap-image-builder/blob/master/tools/setup_sdcard.sh#L463 this value is copied (thru /boot/SOC.sh) and used by the flasher script: https://github.com/RobertCNelson/boot-scripts/blob/master/tools/eMMC/init-eMMC-flasher-v3.sh#L399 So we just need an override for boot size... > Renaming the partition is possible with GParted. However, for some reason > after flashing the image to the eMMC the name of the partition is BEAGLEBONE > again. Any idea how to solve that? For the partition name, well this is hard coded in the flasher: https://github.com/RobertCNelson/boot-scripts/blob/master/tools/eMMC/init-eMMC-flasher-v3.sh#L249 for setup_sdcard.sh we have the label option: "--boot_label" i just need to pass it thru /boot/SOC.sh and pass it to the flasher.. https://github.com/RobertCNelson/omap-image-builder/blob/master/tools/setup_sdcard.sh#L1297 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/d/optout.
