From 3528083198a2c3274f68864e7b98e50a87c83bbb Mon Sep 17 00:00:00 2001 From: ashraffouda Date: Thu, 9 Jul 2026 14:06:01 +0200 Subject: [PATCH] Revert zinit/rfs URL rename (repos renamed back to zinit/rfs) The zinit and rfs repos were renamed back to their original names, so point zos_zinit -> zinit and zos_rfs -> rfs. Other repo renames are left intact. Co-Authored-By: Claude Opus 4.8 (1M context) --- bins/packages/rfs/rfs.sh | 4 ++-- qemu/README.md | 2 +- scripts/debug_image.md | 4 ++-- scripts/debug_image.sh | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bins/packages/rfs/rfs.sh b/bins/packages/rfs/rfs.sh index 6780affd..64419495 100755 --- a/bins/packages/rfs/rfs.sh +++ b/bins/packages/rfs/rfs.sh @@ -2,8 +2,8 @@ RFS_VERSION_V1="1.1.4" RFS_VERSION_V2="2.0.6" RFS_CHECKSUM_V1="e13b70eae20f1bdf5c205c6252192ef2" RFS_CHECKSUM_V2="9e37743dfe94b4577ccf90c573c07638" -RFS_LINK_V1="https://github.com/threefoldtech/zos_rfs/releases/download/v${RFS_VERSION_V1}/rfs" -RFS_LINK_V2="https://github.com/threefoldtech/zos_rfs/releases/download/v${RFS_VERSION_V2}/rfs" +RFS_LINK_V1="https://github.com/threefoldtech/rfs/releases/download/v${RFS_VERSION_V1}/rfs" +RFS_LINK_V2="https://github.com/threefoldtech/rfs/releases/download/v${RFS_VERSION_V2}/rfs" download_rfs() { download_file ${RFS_LINK_V1} ${RFS_CHECKSUM_V1} rfs-${RFS_VERSION_V1} diff --git a/qemu/README.md b/qemu/README.md index ff18a8ea..dc974833 100644 --- a/qemu/README.md +++ b/qemu/README.md @@ -22,7 +22,7 @@ This will download the latest prebuilt kernel from our server. In order to use the full power of theses scripts, you'll need in addition: -- A self compiled version of [z-init](https://github.com/threefoldtech/zos_zinit/) +- A self compiled version of [z-init](https://github.com/threefoldtech/zinit/) - All the binaries from this repository compiled - A working qemu with ipv6 internet reachability diff --git a/scripts/debug_image.md b/scripts/debug_image.md index 8c70eeac..31d3002e 100644 --- a/scripts/debug_image.md +++ b/scripts/debug_image.md @@ -49,7 +49,7 @@ NOTE: - [cloud-hypervisor](https://github.com/cloud-hypervisor/cloud-hypervisor): hypervisor that booting the machine - [virtiofsd](https://gitlab.com/muhamad.azmy/virtiofsd/): used to share a host directory for the rootfs. we are using a forked version -- [rfs v1](https://github.com/threefoldtech/zos_rfs/tree/v1): mounts the flist file into a directory serving as the lower layer of the overlay file system. +- [rfs v1](https://github.com/threefoldtech/rfs/tree/v1): mounts the flist file into a directory serving as the lower layer of the overlay file system. - `overlayfs`: mounts a read-write layer on the rootfs ## Script Walkthrough @@ -101,7 +101,7 @@ NOTE: - **rfs** ```bash - wget https://github.com/threefoldtech/zos_rfs/releases/download/v1.1.1/rfs + wget https://github.com/threefoldtech/rfs/releases/download/v1.1.1/rfs chmod +x ./rfs sudo ln -s $(realpath ./rfs) /usr/local/bin/rfs1 diff --git a/scripts/debug_image.sh b/scripts/debug_image.sh index 4da604a7..af1666ad 100755 --- a/scripts/debug_image.sh +++ b/scripts/debug_image.sh @@ -106,7 +106,7 @@ check_or_install_deps() { fi if ! command -v rfs1 &>/dev/null; then - wget https://github.com/threefoldtech/zos_rfs/releases/download/v1.1.1/rfs + wget https://github.com/threefoldtech/rfs/releases/download/v1.1.1/rfs chmod +x rfs sudo ln -s $(realpath ./rfs) /usr/local/bin/rfs1 fi