Get host arch in dual-boot script and use desktop image

This commit is contained in:
Jeremy Soller 2025-10-21 13:30:19 -06:00
parent 9db52437c6
commit 548c65433f
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA

View File

@ -20,12 +20,12 @@ fi
if [ -z "${ARCH}" ]
then
export ARCH=x86_64
export ARCH="$(uname -m)"
fi
if [ -z "${CONFIG_NAME}" ]
then
export CONFIG_NAME=demo
export CONFIG_NAME=desktop
fi
IMAGE="build/${ARCH}/${CONFIG_NAME}/filesystem.img"