我正在冒险进入 Android 嵌入式开发领域,并为自己获得了BeagleBone Black。我正在遵循Andrew Henderson 的指南,但被卡住了。我进入了内核部分,并安装了CA 证书,但是当我运行build_kernel.sh
脚本时,我得到 了
+ Detected build host []
+ host: [x86_64]
+ git HEAD commit: [3b8714a41677a022608ba1f4838c94c8c172e496]
Installing: gcc-linaro-arm-linux-gnueabihf
-----------------------------
--2013-11-13 14:54:12-- https://launchpad.net/linaro-toolchain-binaries/trunk/2013.04/+download/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux.tar.xz
Resolving launchpad.net... 91.189.89.222, 91.189.89.223
Connecting to launchpad.net|91.189.89.222|:443... connected.
ERROR: cannot verify launchpad.net's certificate, issued by `/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./OU=http://certificates.godaddy.com/repository/CN=Go Daddy Secure Certification Authority/serialNumber=07969287':
Self-signed certificate encountered.
To connect to launchpad.net insecurely, use `--no-check-certificate'.
Unable to establish SSL connection.
[Process completed]
我试过以 root 和普通用户身份运行,结果相同。有任何想法吗?提前致谢。
编辑1:
正如输出建议的那样,我使用 --no-check-certificate 标志运行,并得到了
sh-3.2# ./build_kernel.sh --no-check-certificate
+ Detected build host []
+ host: [x86_64]
+ git HEAD commit: [3b8714a41677a022608ba1f4838c94c8c172e496]
Installing: gcc-linaro-arm-linux-gnueabihf
-----------------------------
--2013-11-14 09:06:35-- https://launchpad.net/linaro-toolchain-binaries/trunk/2013.04/+download/gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux.tar.xz
Resolving launchpad.net... 91.189.89.223, 91.189.89.222
Connecting to launchpad.net|91.189.89.223|:443... connected.
Unable to establish SSL connection.
我绝不是 Linux 专业人士,但我正在学习。我--no-check-certificate
是否正确使用了标志?