diff options
-rwxr-xr-x | build_all.sh | 1 | ||||
-rwxr-xr-x | build_one.sh | 1 | ||||
-rwxr-xr-x | update_pcmemtest_files.sh | 25 |
3 files changed, 27 insertions, 0 deletions
diff --git a/build_all.sh b/build_all.sh index 860dea6..331ab04 100755 --- a/build_all.sh +++ b/build_all.sh @@ -18,6 +18,7 @@ case $(hostname) in esac ./update_bootloader_files.sh +./update_pcmemtest_files.sh for arch in $archs; do for desktop in ${desktops[$arch]}; do isoname=$distro-$release-Live-$desktop-$arch diff --git a/build_one.sh b/build_one.sh index dff302d..6e32fbb 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 draklive2 $* 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 |