diff --git a/docs/README.md b/docs/README.md index a459e3a..2edc202 100644 --- a/docs/README.md +++ b/docs/README.md @@ -8,10 +8,10 @@ The following dependencies are required: - | DistrOS | | | | | - |:-------------------:|--------------------------------------------------------------------------------|------------|--------------|--------------------| - | Debian | `lzip patchelf e2fsprogs python3 python3-pip aria2 p7zip-full attr unzip sudo` | `whiptail` | `qemu-utils` | `python3-venv` | - | openSUSE Tumbleweed | Same as above | `dialog` | `qemu-tools` | `python3-venvctrl` | + | DistrOS | | | | | + |:-------------------:|--------------------------------------------------------------------------------------------|------------|--------------|--------------------| + | Debian | `lzip patchelf e2fsprogs python3 python3-pip aria2 p7zip-full attr unzip sudo erofs-utils` | `whiptail` | `qemu-utils` | `python3-venv` | + | openSUSE Tumbleweed | Same as above | `dialog` | `qemu-tools` | `python3-venvctrl` | The python3 library `requests` is used. diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index be4a4fe..4eda263 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -50,6 +50,7 @@ check_dependencies() { command -v unzip >/dev/null 2>&1 || NEED_INSTALL+=("unzip") command -v qemu-img >/dev/null 2>&1 || NEED_INSTALL+=("qemu-utils") command -v sudo >/dev/null 2>&1 || NEED_INSTALL+=("sudo") + command -v mkfs.erofs >/dev/null 2>&1 || NEED_INSTALL+=("erofs-utils") python3 -c "import venv" >/dev/null 2>&1 || NEED_INSTALL+=("python3-venv") } check_dependencies