Closed erikj closed 7 years ago
Your u-boot-rpi3 is too old, the packages have not been updated yet. What version of FreeBSD are you running?
What version of FreeBSD are you running?
Thanks.
11.0-RELEASE-p2
Have you tried updating the sysutils/u-boot-rpi3
package recently? I think that file should be present in the pre-built packages by now.
The u-boot-rpi3 in the FreeBSD-11.0 pkg repository is version 2016.11. The u-boot-rpi3 in the ports collection is version 2017.01.
The later indeed contains all required files to complete a building of RPi3 image.
Unfortunately, it does not boot. Probably, because the filenames on the BOOT partition are all uppercase and 8.3 truncated. But that's another issue.
@kientzle @rozmansi Thank you, I will give the build another try.
I fixed the 8+3 FAT filename problem by modifying lib/disk.sh:
mount_msdosfs disk_fat_device $2
$1
to
mount_msdosfs -l disk_fat_device $2
$1
I've made a commit be549bbfc1953dfd7bbfeaba3e24fc868cd403bd which was pulled in. So this issue should be closed as "resolved".
Thanks.
Greetings-
Attempting to build an image for RaspberryPi3 results in the following error:
I am attempting build via
It looks like the error is produced by code from 43dd6a45, which was recently merged into
master
.I have installed
aarch64-binutils
andsysutils/u-boot-rpi3
packages and theu-boot-rpi3
directory has the following contents:I am relatively new to FreeBSD and this is my first attempt @ building an image w/
crochet
, so if I am doing something wrong and you can provide guidance, it would be appreciated.Thank you for supporting this cool project :)