From b8ebdffc56dbefaa2d3256ce20c54bf033f8d5df Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Mon, 3 Jul 2023 14:09:32 +0200 Subject: [PATCH] install stage 1: remove squashfs-tools from packages to install at the start squashfs-tools will be installed and used in the chroot --- install-stage1.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install-stage1.sh b/install-stage1.sh index 2587b2a..fcba501 100644 --- a/install-stage1.sh +++ b/install-stage1.sh @@ -65,7 +65,6 @@ usable from Windows or MacOS. Before we begin, the following packages need to be installed (if not installed already): - xmirror -- squashfs-tools - wget " press_any_key @@ -74,7 +73,7 @@ echo -n "Ensuring that XBPS is up-to-date... " xbps-install --yes --sync --update xbps >> $LOGFILE 2>&1 echo "done" echo -n "Installing xmirror, squashfs-tools, wget... " -xbps-install --yes xmirror squashfs-tools wget >> $LOGFILE 2>&1 +xbps-install --yes xmirror wget >> $LOGFILE 2>&1 echo "done" #TODO: If going down the path of extracting routines from void-installer, that should be done here