Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bins/packages/rfs/rfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ RFS_VERSION_V1="1.1.1"
RFS_VERSION_V2="2.0.6"
RFS_CHECKSUM_V1="974b8dc45ae9c1b00238a79b0f4fc9de"
RFS_CHECKSUM_V2="9e37743dfe94b4577ccf90c573c07638"
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"
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"

download_rfs() {
download_file ${RFS_LINK_V1} ${RFS_CHECKSUM_V1} rfs-${RFS_VERSION_V1}
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/bootstrap/src/hub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct ZosConfig {
}

fn get_hub_url(runmode: &RunMode) -> Result<Vec<String>> {
let base_url = "https://github.com/threefoldtech/zos-config/raw/main/";
let base_url = "https://github.com/threefoldtech/zos_config/raw/main/";
let config_filename = match runmode {
RunMode::Prod => "production.json",
RunMode::Dev => "development.json",
Expand Down
4 changes: 2 additions & 2 deletions scripts/debug_image.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/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/zos_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
Expand Down Expand Up @@ -101,7 +101,7 @@ NOTE:
- **rfs**

```bash
wget https://github.com/threefoldtech/rfs/releases/download/v1.1.1/rfs
wget https://github.com/threefoldtech/zos_rfs/releases/download/v1.1.1/rfs
chmod +x ./rfs

sudo ln -s $(realpath ./rfs) /usr/local/bin/rfs1
Expand Down
2 changes: 1 addition & 1 deletion scripts/debug_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ check_or_install_deps() {
fi

if ! command -v rfs1 &>/dev/null; then
wget https://github.com/threefoldtech/rfs/releases/download/v1.1.1/rfs
wget https://github.com/threefoldtech/zos_rfs/releases/download/v1.1.1/rfs
chmod +x rfs
sudo ln -s $(realpath ./rfs) /usr/local/bin/rfs1
fi
Expand Down
Loading