Remove obsolete build scripts

This commit is contained in:
Michael Aldridge 2017-08-19 00:20:35 -07:00
parent 4288c890a3
commit eeb2a810ee
2 changed files with 0 additions and 46 deletions

View File

@ -1,21 +0,0 @@
#!/bin/sh
TARGET="$1"
[ -n "$TARGET" ] && shift
: ${PLATFORMS:="beaglebone cubieboard2 odroid-c2 odroid-u2 rpi rpi2 rpi3 usbarmory"}
DATE=$(date '+%Y%m%d')
for f in ${PLATFORMS} x ${PLATFORMS} ; do
if [ "$f" = "x" ]; then
musl=1
continue
fi
target=$f
if [ -n "$musl" ]; then
target=${f}-musl
fi
if [ -z "$TARGET" -o "$TARGET" = "$target" ]; then
./mkrootfs.sh $@ $target && ./mkimage.sh void-${target}-rootfs-${DATE}.tar.xz && xz -T0 -9 void-${target}-${DATE}.img
fi
done

View File

@ -1,25 +0,0 @@
#!/bin/sh
TARGET="$1"
[ -n "$TARGET" ] && shift
: ${PLATFORMS:="beaglebone cubieboard2 odroid-u2 rpi rpi2 usbarmory x86_64 i686"}
DATE=$(date '+%Y%m%d')
for f in ${PLATFORMS} x ${PLATFORMS}; do
if [ "$f" = "x" ]; then
musl=1
continue
fi
target=$f
if [ -n "$musl" ]; then
target=${f}-musl
fi
if [ "$target" = "i686-musl" ]; then
# XXX no i686-musl repo yet
continue
fi
if [ -z "$TARGET" -o "$TARGET" = "$target" ]; then
./mkrootfs.sh $@ $target
fi
done