2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2026-09-09 22:46:44 +00:00

docs(xcat-dep): name riscv64 in the publish invocations

The build guides published with --expect-arch "amd64 ppc64el". An explicit
set bypasses staged-architecture discovery, and the assembly writes the
Packages indexes and Release metadata only for that set, so following them
produced a repository with no riscv64 index even when the build staged it.
This commit is contained in:
Vinícius Ferrão
2026-09-05 16:33:42 -03:00
parent e6ee2f9d4a
commit 099c2bccec
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -265,7 +265,7 @@ The APT side takes the same option, on the run that **publishes**:
```bash
./sbuild-all.pl --skip-build --skip-genesis \
--publish --expect-arch "amd64 ppc64el" \
--publish --expect-arch "amd64 ppc64el riscv64" \
--genesis-release /path/to/xcat-genesis-release \
--gpg-sign --gpg-key-id <id> --gpg-home <gpg-home>
```
@@ -678,7 +678,7 @@ the two hosts can run at the same time. `--dists` may be omitted entirely — wi
```bash
./sbuild-all.pl --skip-build --skip-genesis \
--publish --expect-arch "amd64 ppc64el" \
--publish --expect-arch "amd64 ppc64el riscv64" \
--gpg-sign --gpg-key-id xcat@example.com --gpg-home <gpg-home>
```
+1 -1
View File
@@ -68,7 +68,7 @@ perl ./mockbuild-all.pl \
perl ./sbuild-all.pl \
--genesis-release /path/to/xcat-genesis-release \
--publish --expect-arch "amd64 ppc64el" \
--publish --expect-arch "amd64 ppc64el riscv64" \
[other build options]
```