补充资料.
Signed-off-by: chen.yang <chen.yang@yuzhen-iot.com>
This commit is contained in:
parent
8d44b258fb
commit
08bdf74235
|
@ -61,6 +61,35 @@ Clone: exit status 128 - fatal: unable to access 'xxxxxxxxx.git/': SSL certifica
|
|||
git config --global http.sslVerify false
|
||||
```
|
||||
|
||||
### 1.3. Git 代理设置
|
||||
|
||||
```bash
|
||||
# 设置 Git 全局代理
|
||||
git config --global http.proxy "socks5://<proxy addr>:<port>"
|
||||
git config --global https.proxy "socks5://<proxy addr>:<port>"
|
||||
|
||||
# 取消全局代理
|
||||
git config --global --unset http.proxy
|
||||
git config --global --unset https.proxy
|
||||
|
||||
# 只针对谋网站进行代理
|
||||
git config --global http.https://github.com.proxy "socks5://<proxy addr>:<port>"
|
||||
# 取消代理谋网站的代理
|
||||
git config --global --unset http.https://github.com.proxy
|
||||
```
|
||||
|
||||
还有一种方式就是直接修改 .gitconfig 文件,一般在用户目录下:
|
||||
|
||||
```bash
|
||||
# 全部使用代理
|
||||
[http]
|
||||
proxy = socks5://<proxy addr>:<port>
|
||||
|
||||
# 只针对谋网站进行代理
|
||||
[http "https://github.com"]
|
||||
proxy = socks5://<proxy addr>:<port>
|
||||
```
|
||||
|
||||
## 2. 创建仓库
|
||||
|
||||
软件版本管理依赖于软件仓库的概念,一个软件仓库包容了要进行版本管理的源码和 Release 发布等内容。
|
||||
|
|
|
@ -16,6 +16,12 @@ source <sdk root>/oe-init-build-env
|
|||
bitbake -s
|
||||
```
|
||||
|
||||
yocto 定义了一些基础目标:
|
||||
|
||||
* core-image-minimal:仅支持设备启动的小镜像
|
||||
* core-image-base:目标设备硬件的只支持控制台的镜像
|
||||
* core-image-sato:支持 X11 与 Sato 主题和使用 Pimlico 应用程序
|
||||
|
||||
## 在 build 目录下进行编译
|
||||
|
||||
```bash
|
||||
|
|
Loading…
Reference in New Issue