File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 15
15
16
16
<tmpl z-lang =" bash " z-input =" checksum " >
17
17
# 包含断点续传
18
- curl -OC - {{endpoint}}/aosp-latest.tar # 下载初始化包
18
+ curl -LOC - {{endpoint}}/aosp-latest.tar # 下载初始化包
19
19
{{#checksum}}
20
20
md5sum aosp-latest.tar
21
- curl -q {{endpoint}}/aosp-latest.tar.md5
21
+ curl -Lq {{endpoint}}/aosp-latest.tar.md5
22
22
{{/checksum}}
23
23
tar xf aosp-latest.tar
24
24
cd AOSP # 解压得到的 AOSP 工程目录
Original file line number Diff line number Diff line change 1
1
## 下载
2
2
3
3
<tmpl z-lang =" bash " >
4
- curl {{endpoint}} -o repo
4
+ curl -L {{endpoint}} -o repo
5
5
chmod +x repo
6
6
</tmpl >
7
7
Original file line number Diff line number Diff line change 5
5
<tmpl z-lang =" bash " >
6
6
# 手动模拟 rosdep init
7
7
{{sudo}}mkdir -p /etc/ros/rosdep/sources.list.d/
8
- {{sudo}}curl -o /etc/ros/rosdep/sources.list.d/20-default.list {{endpoint}}/ros/rosdistro/master/rosdep/sources.list.d/20-default.list
8
+ {{sudo}}curl -o /etc/ros/rosdep/sources.list.d/20-default.list -L {{endpoint}}/ros/rosdistro/master/rosdep/sources.list.d/20-default.list
9
9
</tmpl >
10
10
11
11
### stackage global-hints-cache.yaml
Original file line number Diff line number Diff line change 10
10
11
11
- 单用户安装
12
12
<tmpl z-lang =" bash " >
13
- sh <(curl {{endpoint}}/latest/install)
13
+ sh <(curl -L {{endpoint}}/latest/install)
14
14
</tmpl >
15
15
16
16
- 多用户安装:
17
17
<tmpl z-lang =" bash " >
18
- sh <(curl {{endpoint}}/latest/install) --daemon
18
+ sh <(curl -L {{endpoint}}/latest/install) --daemon
19
19
</tmpl >
20
20
21
21
如果需要,可以在文件列表中手动挑选需要的版本
Original file line number Diff line number Diff line change 9
9
## 单独克隆
10
10
git clone {{endpoint}}/git/riscv-collab/riscv-gnu-toolchain.git
11
11
## 同时克隆子模块,注意路径为 .git 替换为 .sh
12
- curl {{endpoint}}/git/riscv-collab/riscv-gnu-toolchain.sh | bash
12
+ curl -L {{endpoint}}/git/riscv-collab/riscv-gnu-toolchain.sh | bash
13
13
# rocket-tools 及其子模块
14
14
## 单独克隆
15
15
git {{endpoint}}/git/chipsalliance/rocket-tools.git
16
16
## 同时克隆子模块
17
- curl {{endpoint}}/git/chipsalliance/rocket-tools.sh | bash
17
+ curl -L {{endpoint}}/git/chipsalliance/rocket-tools.sh | bash
18
18
</tmpl >
19
19
20
20
已有项目可以在 <tmpl z-inline >{{endpoint}}/git/</tmpl > 中浏览。
You can’t perform that action at this time.
0 commit comments