From: Christian Heller Date: Wed, 14 May 2025 07:11:15 +0000 (+0200) Subject: Fix. X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/%22https:/validator.w3.org/test.html?a=commitdiff_plain;h=908b7919372170045fcfffc635dc14150ed529a6;p=config Fix. --- diff --git a/trixie/aptmark/reform_qemu b/trixie/aptmark/reform_qemu index f28a0bb..998764d 100644 --- a/trixie/aptmark/reform_qemu +++ b/trixie/aptmark/reform_qemu @@ -2,6 +2,8 @@ nftables # for getting images wget +# for running emulate.sh +parted # qemu stuff qemu-system-aarch64 ipxe-qemu diff --git a/trixie/copy/reform_qemu/home/plom/run.sh b/trixie/copy/reform_qemu/home/plom/run.sh index 5041ca8..7fef770 100755 --- a/trixie/copy/reform_qemu/home/plom/run.sh +++ b/trixie/copy/reform_qemu/home/plom/run.sh @@ -5,16 +5,17 @@ URL_REPO="https://source.mnt.re/reform/${NAME_REPO}" NAME_IMG='pocket-reform-system-rk3588.img' NAME_IMG_GZ="${NAME_IMG}.gz" URL_IMG="${URL_REPO}/-/jobs/9939/artifacts/raw/${NAME_IMG_GZ}" -PATH_EMULATE_SH="${NAME_REPO}/emulate.sh" +NAME_SCRIPT='emulate.sh' cd if [ ! -e "${NAME_REPO}" ]; then git clone "${URL_REPO}" sed -i 's/-vnc :94,share=force-shared/-vnc :94,share=ignore/' "${PATH_EMULATE_SH}" fi +cd "${NAME_REPO}" if [ ! -e "${NAME_IMG}" ]; then wget "${URL_IMG}" gunzip "${NAME_IMG_GZ}" fi -"${PATH_EMULATE_SH}" "${NAME_IMG}" +"${NAME_SCRIPT}" "${NAME_IMG}"