From dd43685e2d0434ad1d8208d7053403d1fee6a064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= Date: Sun, 12 Mar 2023 23:09:07 +0100 Subject: [PATCH] Add catalyst-auto hppa qemu config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas K. Hüttel --- tools/catalyst-auto-qemu-hppa.conf | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 tools/catalyst-auto-qemu-hppa.conf diff --git a/tools/catalyst-auto-qemu-hppa.conf b/tools/catalyst-auto-qemu-hppa.conf new file mode 100644 index 00000000..9870665c --- /dev/null +++ b/tools/catalyst-auto-qemu-hppa.conf @@ -0,0 +1,66 @@ +# This is the config file for the catalyst-auto script. It should be pretty +# self-explanatory. + +UPLOAD_USER=hppa +UPLOAD_KEY=/root/.ssh/id_ed25519 +SPECS_DIR=${REPO_DIR}/releases/specs/hppa + +SETS="hppa11_openrc hppa11_systemd hppa11_systemd_mu" + +SET_hppa11_openrc_SPECS="hppa1.1/stage1-openrc.spec hppa1.1/stage3-openrc.spec" +SET_hppa11_openrc_OPTIONAL_SPECS="installcd-stage1.spec installcd-stage2-minimal.spec netboot-hppa32.spec" + +SET_hppa11_systemd_SPECS="hppa1.1/stage1-systemd.spec hppa1.1/stage3-systemd.spec" + +SET_hppa11_systemd_mu_SPECS="hppa1.1/stage1-systemd-mu.spec hppa1.1/stage3-systemd-mu.spec" + +KCONFIG_DIR=${REPO_DIR}/releases/kconfig/hppa + +EMAIL_SUBJECT_PREPEND="[hppa-qemu-auto]" + +update_symlinks() { + # Symlink the latest stages3 to build from + local d f t + for d in "${BUILD_SRCDIR_BASE}/builds/default" "${BUILD_SRCDIR_BASE}/builds/mergedusr" ; do + mkdir -p "${d}" + pushd "${d}" >/dev/null + for t in hppa1.1 ; do + for f in $(ls stage3-${t}-*xz | grep -v latest | give_latest_from_dates) ; do + local of=$(echo "${f}" | convert_filename) + ln -sf "${f}" "${of}" + done + done + popd >/dev/null + done +} + +post_build() { + local set=$1 spec=$2 + + pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null + case ${spec} in + netboot-hppa32.spec) + ls -l netboot-hppa1.1-${TIMESTAMP}/ + mv -v netboot-hppa1.1-${TIMESTAMP}/hppa32-hppa.lif netboot-hppa1.1-${TIMESTAMP}/netboot-hppa32-${TIMESTAMP}.lif + upload netboot-hppa1.1-${TIMESTAMP}/netboot-hppa32-${TIMESTAMP}.lif + ;; + installcd-stage2-minimal.spec) + upload install-hppa-minimal-*${TIMESTAMP}*.iso* + ;; + hppa1.1/stage3-openrc.spec) + upload stage3-hppa1.1-openrc-${TIMESTAMP}.tar.xz* + ;; + hppa1.1/stage3-systemd.spec) + upload stage3-hppa1.1-systemd-${TIMESTAMP}.tar.xz* + ;; + esac + popd >/dev/null + + pushd "${BUILD_SRCDIR_BASE}/builds/mergedusr" >/dev/null + case ${spec} in + hppa1.1/stage3-systemd-mu.spec) + upload stage3-hppa1.1-systemd-mergedusr-${TIMESTAMP}.tar.xz* + ;; + esac + popd >/dev/null +}