Topic: Building latest code with AWS
Sorry, next stupid question...
I've tried a few times to build, but only seemed to succeed with an old version of the AMI.
I have grabbed ami-c0b3f692, which I believe to be the current one...
First hurdle is trying to bring code up to date - I had to force git to pull:
ubuntu@ip-172-31-27-87:~/chumby-oe$ git submodule init
ubuntu@ip-172-31-27-87:~/chumby-oe$ git submodule update
remote: Counting objects: 519, done.
remote: Compressing objects: 100% (224/224), done.
remote: Total 519 (delta 309), reused 471 (delta 280)
Receiving objects: 100% (519/519), 202.85 KiB | 185 KiB/s, done.
Resolving deltas: 100% (309/309), done.
From github.com/sutajiokousagi/meta-chumby
7598311..53d4698 master -> origin/master
error: You have local changes to 'recipes/images/chumby-netv-image.bb'; cannot switch branches.
Unable to checkout 'f07f06bd8f8efe7d3d245f604bf0491cada87ff8' in submodule path 'meta-chumby'
ubuntu@ip-172-31-27-87:~/chumby-oe$ cd meta-chumby/
ubuntu@ip-172-31-27-87:~/chumby-oe/meta-chumby$ git fetch --all
Fetching origin
Fetching master
From github.com/sutajiokousagi/meta-chumby
* [new branch] master -> master/master
ubuntu@ip-172-31-27-87:~/chumby-oe/meta-chumby$ git reset --hard origin/master
HEAD is now at 53d4698 linux-silvermoon-chumby8: Fix SRC_URI
ubuntu@ip-172-31-27-87:~/chumby-oe/meta-chumby$
ubuntu@ip-172-31-27-87:~/chumby-oe/meta-chumby$ cd ..
ubuntu@ip-172-31-27-87:~/chumby-oe$ git submodule update
Submodule path 'meta-chumby': checked out '6004679394c2133b43668104906bdc079a893a13'
remote: Counting objects: 13, done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 13 (delta 5), reused 12 (delta 5)
Unpacking objects: 100% (13/13), done.
From github.com/sutajiokousagi/openembedded
be1a1c5..85fbeaf master -> origin/master
d22d74e..8b3ee4e org.openembedded.dev -> origin/org.openembedded.dev
Submodule path 'openembedded': checked out 'e5c44eeb0c372d6856204f43756b6d62accd4200'
Which is fine, just checking that was the correct thing to do...
However, when I try to build, I get:
ubuntu@ip-172-31-27-87:~/chumby-oe$ bitbake chumby-image
Loading cache: 100% |################################################################################################################################################################################| Time: 00:00:09
Loaded 7228 entries from dependency cache.
ERROR: Error parsing /home/ubuntu/chumby-oe/meta-chumby/recipes/chumby-netvserver/chumby-netvserver_1.0.bb: Fetch command export HOME="/home/ubuntu"; export PATH="/home/ubuntu/chumby-oe/meta-chumby-private/bin:/home/ubuntu/chumby-oe/meta-chumby/bin:/home/ubuntu/chumby-oe/openembedded/bin:/home/ubuntu/chumby-oe/output-angstrom-.9/sysroots/i686-linux/usr/armv5te/bin:/home/ubuntu/chumby-oe/output-angstrom-.9/sysroots/i686-linux/usr/sbin:/home/ubuntu/chumby-oe/output-angstrom-.9/sysroots/i686-linux/usr/bin:/home/ubuntu/chumby-oe/output-angstrom-.9/sysroots/i686-linux/sbin:/home/ubuntu/chumby-oe/output-angstrom-.9/sysroots/i686-linux//bin:/home/ubuntu/chumby-oe/bitbake-1.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; git ls-remote h-t-t-p-github.com/sutajiokousagi/chumby-netvserver master failed with signal 128, output:
error: Protocol https not supported or disabled in libcurl while accessing h-t-t-p-github.com/sutajiokousagi/chumby-netvserver/info/refs
(Just to help confuse things, this forum does not allow me to post the full URL, so I've ofuscated the "h-t-t-p" in the above git command and error message)
Note that running 'git ls-remote etc.' works fine from the command line, so the problem must be somewhere on the included path, and therefore in the bitbake innards somewhere...