From 55bf0d1dc72a1fe6df19ada57b9c3d3d84eb71f6 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 10 Sep 2023 20:56:54 -0600 Subject: [PATCH] Use filesystem image instead of harddrive image for dual boot script --- scripts/dual-boot.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/dual-boot.sh b/scripts/dual-boot.sh index 38985f1..322ef75 100755 --- a/scripts/dual-boot.sh +++ b/scripts/dual-boot.sh @@ -25,7 +25,7 @@ then export CONFIG_NAME=demo fi -IMAGE="build/${ARCH}/${CONFIG_NAME}/harddrive.img" +IMAGE="build/${ARCH}/${CONFIG_NAME}/filesystem.img" set -x make "${IMAGE}" sudo popsicle "${IMAGE}" "${DISK}" @@ -49,3 +49,5 @@ EOF set +x sync + +echo "Finished installing Redox OS dual boot"