commit: daca1362f42c6a15a1eb7417616183732f2ca362
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 31 15:51:55 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Jul 31 15:51:55 2021 +0000
URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=daca1362
Remove unused arm non-qemu config file
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
tools/catalyst-auto-arm.conf | 105 -------------------------------------------
1 file changed, 105 deletions(-)
diff --git a/tools/catalyst-auto-arm.conf b/tools/catalyst-auto-arm.conf
deleted file mode 100644
index a323f33d..00000000
--- a/tools/catalyst-auto-arm.conf
+++ /dev/null
@@ -1,105 +0,0 @@
-# This is the config file for the catalyst-auto script. It should be pretty
-# self-explanatory.
-
-UPLOAD_USER=arm
-UPLOAD_KEY=/root/.ssh/id_ed25519
-host=$(hostname)
-
-SPECS_DIR=${REPO_DIR}/releases/specs/arm
-
-EMAIL_SUBJECT_PREPEND="[arm-auto]"
-
-SETS="
- armv4tl
- armv5tel
- armv6j_hf
- armv6j_sf
- armv7a_hf
- armv7a_sf
- armv4tl_systemd
- armv5tel_systemd
- armv6j_hf_systemd
- armv6j_sf_systemd
- armv7a_hf_systemd
- armv7a_sf_systemd
-"
-
-SET_armv4tl_SPECS="armv4tl/stage1.spec armv4tl/stage3.spec"
-SET_armv4tl_systemd_SPECS="armv4tl/stage1-systemd.spec
armv4tl/stage3-systemd.spec"
-
-SET_armv5tel_SPECS="armv5tel/stage1.spec armv5tel/stage3.spec"
-SET_armv5tel_systemd_SPECS="armv5tel/stage1-systemd.spec
armv5tel/stage3-systemd.spec"
-
-SET_armv6j_hf_SPECS="armv6j/stage1-hardfloat.spec armv6j/stage3-hardfloat.spec"
-SET_armv6j_sf_SPECS="armv6j/stage1.spec armv6j/stage3.spec"
-SET_armv6j_hf_systemd_SPECS="armv6j/stage1-hardfloat-systemd.spec
armv6j/stage3-hardfloat-systemd.spec"
-SET_armv6j_sf_systemd_SPECS="armv6j/stage1-systemd.spec
armv6j/stage3-systemd.spec"
-
-SET_armv7a_hf_SPECS="armv7a/stage1-hardfloat.spec armv7a/stage3-hardfloat.spec"
-SET_armv7a_sf_SPECS="armv7a/stage1.spec armv7a/stage3.spec"
-SET_armv7a_hf_systemd_SPECS="armv7a/stage1-hardfloat-systemd.spec
armv7a/stage3-hardfloat-systemd.spec"
-SET_armv7a_sf_systemd_SPECS="armv7a/stage1-systemd.spec
armv7a/stage3-systemd.spec"
-
-
-update_symlinks() {
- # Symlink the latest stages3 to build from
- local d f
- for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do
- pushd "${d}" >/dev/null
- for f in $(ls stage3*xz | grep -v latest |
give_latest_from_dates) ; do
- local of=$(echo "${f}" | convert_filename)
- ln -sf "${f}" "${of}"
- done
- popd >/dev/null
- done
-}
-
-post_build() {
- local set=$1 spec=$2
-
- pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
-
- case ${spec} in
- armv4tl/stage3.spec)
- upload stage3-armv4tl-${TIMESTAMP}*.xz*
- ;;
- armv4tl/stage3-systemd.spec)
- upload stage3-armv4tl-systemd-${TIMESTAMP}*.xz*
- ;;
- armv5tel/stage3.spec)
- upload stage3-armv5tel-${TIMESTAMP}*.xz*
- ;;
- armv5tel/stage3-systemd.spec)
- upload stage3-armv5tel-systemd-${TIMESTAMP}*.xz*
- ;;
- armv6j/stage3.spec)
- upload stage3-armv6j-${TIMESTAMP}*.xz*
- ;;
- armv6j/stage3-systemd.spec)
- upload stage3-armv6j-systemd-${TIMESTAMP}*.xz*
- ;;
- armv6j/stage3-hardfloat.spec)
- upload stage3-armv6j_hardfp-${TIMESTAMP}*.xz*
- ;;
- armv6j/stage3-hardfloat-systemd.spec)
- upload stage3-armv6j_hardfp-systemd-${TIMESTAMP}*.xz*
- ;;
- armv7a/stage3.spec)
- upload stage3-armv7a-${TIMESTAMP}*.xz*
- ;;
- armv7a/stage3-systemd.spec)
- upload stage3-armv7a-systemd-${TIMESTAMP}*.xz*
- ;;
- armv7a/stage3-hardfloat.spec)
- upload stage3-armv7a_hardfp-${TIMESTAMP}*.xz*
- ;;
- armv7a/stage3-hardfloat-systemd.spec)
- upload stage3-armv7a_hardfp-systemd-${TIMESTAMP}*.xz*
- ;;
- *)
- echo "Finished ${spec}"
- ;;
- esac
-
- popd >/dev/null
-}