From afa4e8c71fd47e624acdebfd900f1b28e2f516da Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sun, 31 May 2020 20:25:11 +0100 Subject: Update build scripts to unpack pcmemtest binaries inrepository. --- build_all.sh | 1 + build_one.sh | 1 + update_pcmemtest_files.sh | 25 +++++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100755 update_pcmemtest_files.sh diff --git a/build_all.sh b/build_all.sh index d95287d..a14ec26 100755 --- a/build_all.sh +++ b/build_all.sh @@ -12,6 +12,7 @@ case $(hostname) in esac ./update_bootloader_files.sh +./update_pcmemtest_files.sh for arch in $archs; do isoname=$distro-$release-$arch $sudo drakclassic --clean --all --define arch=$arch diff --git a/build_one.sh b/build_one.sh index 4454ed6..079e9ba 100755 --- a/build_one.sh +++ b/build_one.sh @@ -5,6 +5,7 @@ case $(hostname) in esac ./update_bootloader_files.sh +./update_pcmemtest_files.sh if [ $# -gt 0 ] ; then $sudo drakclassic $* else diff --git a/update_pcmemtest_files.sh b/update_pcmemtest_files.sh new file mode 100755 index 0000000..6ebc987 --- /dev/null +++ b/update_pcmemtest_files.sh @@ -0,0 +1,25 @@ +#!/bin/sh +repository=$(grep repository config/settings.cfg | sed s/repository=//) +echo "Unpacking pcmemtest file in $repository" + +case $(hostname) in + *.mageia.org) sudo="sudo -u bcd";; +esac + +archs="i586 x86_64" +for arch in $archs; do + path=`ls -1v $repository/$arch/media/core/{release,updates}/pcmemtest*.rpm 2> /dev/null | tail -1` + if [ -z $path ] ; then + echo "ERROR: couldn't find $arch pcmemtest RPM in $repository." + exit 1 + else + echo "Unpacking $arch pcmemtest file in repository." + rpm2cpio $path | cpio -idm --quiet + if [ $? -ne 0 ] ; then + echo "ERROR: failed to extract files from archive." + exit 1 + fi + fi + $sudo cp -u boot/pcmemtest $repository/$arch/isolinux/pcmemtest + rm -r boot etc usr +done -- cgit v1.2.1