After creating an SD Card image with "Download Debian image https://rcn-ee.com/rootfs/bb.org/testing/2016-09-11/console/BBB-blank-debian-8.5-console-armhf-2016-09-11-2gb.img.xz" and trying to load it on a BBB Rev A6 (2gb) the flashed image does not appear to load. Has this image been tested on Rev A6? Is there another build, or how can this build be changed into an SD Card OS?
You need to be a member of diydrones to add comments!
Replies
Hi, just FYI
I ran into the same error. This worked for me, Thanks!
Steve
Hi Justin,
added to the instruction, thanks!
Regards
Mirko
Justin C said:
So in conclusion in order to get the 9-21-16 build to work for a BBB Rev A6 (2GB), I used an SD card and did as Mirko suggested:
You can use the SD card as file system as well, you have to change the last line from /boot/uEnv.txt from
cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
to
#cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
I also had to add the following step during the compile:
"sudo apt-get install pkg-config"
Many thanks to Mirko and Linus.
:)
"sudo apt-get install pkg-config" seems to work for the Debian build. This may need to be added to the instructions.
Linus,
Thanks for your input. However I get:
Unable to locate package pkg-config-arm-linux-gnueabihf
when trying to run this.
Justin
Linus said:
Hi Justin,
i ran into this as well today:
I had a look at the logfile and then just installed it:
linus@desk:~/ardupilot$ arm-linux-gnueabihf-pkg-config
The program 'arm-linux-gnueabihf-pkg-config' is currently not installed. You can install it by typing:
sudo apt-get install pkg-config-arm-linux-gnueabihf
linus@desk:~/ardupilot$ sudo apt-get install pkg-config-arm-linux-gnueabihf
and ideed it compiles now.
I use Ubuntu 14.04 still, maybe it helps.
Cheers
Linus
The error message is saying that it looked in /usr/bin, and arm-linux-gnueabihf-pkg-config does exist there, so I'm not clear on whether there is a find error, or it is failing on the symbolic link not resolving as there is no pkg-config anywhere. Per my earlier note, my guess is that it is pkg-config that is not being found.
Justin C said:
Mirko,
Per my earlier note from an hour ago, there is evidence that I did execute this step 11 successfully:
"lrwxrwxrwx 1 root root 10 Sep 23 09:13 /usr/bin/arm-linux-gnueabihf-pkg-config -> pkg-config"
Yet the 'waf config step' fails. (As the link already exists I can't execute step 11 again.)
Thanks for your all your help.
Any ideas on what to do next?
Justin
Mirko Denecke said:
Hi Justin,
follow Step 11 from https://github.com/mirkix/BBBMINI/blob/master/doc/software/software.md
Regards
Mirko
The file does appear to be on the path at /usr/bin and is a link:
lrwxrwxrwx 1 root root 10 Sep 23 09:13 /usr/bin/arm-linux-gnueabihf-pkg-config -> pkg-config
Yet the linked to file pkg-config does appear to be missing.
Justin C said: