freebsd / crochet

Build FreeBSD images for RaspberryPi, BeagleBone, PandaBoard, and others.
BSD 2-Clause "Simplified" License
609 stars 187 forks source link

bananapi write failed, filesystem is full #204

Closed ric96 closed 6 years ago

ric96 commented 6 years ago

while building default image for bananapi using

$ sudo /bin/sh crochet.sh -b BananaPi

After compilation the image file created is too small, easiest solution is to edit the board/BananaPi/setup.sh file. some like this i did to get 7gb image, although 2gb should be enough.

IMAGE_SIZE=$((1000 * 1000 * 1000 * 7))
kientzle commented 6 years ago

Is 1900MB sufficient? (That would fit onto common "2GB" media.)

IMAGE_SIZE=$((1000 * 1000 * 1900))

If you could test this for me, I can quickly make that change.

ric96 commented 6 years ago

yup, works fine for me...

kientzle commented 6 years ago

Good. I just pushed a commit changing the default to 1.9GB.

Thanks!