build-arm-images: only build the images, the rootfs must be available.

This commit is contained in:
Juan RP 2015-02-22 09:40:25 +01:00
parent 3d30dbb7a6
commit 6755fa69c4
1 changed files with 5 additions and 5 deletions

View File

@ -2,10 +2,10 @@
set -e
date=$(date '+%Y%m%d')
PLATFORMS="beaglebone cubieboard2 odroid-u2 rpi rpi2"
DATE=$(date '+%Y%m%d')
for f in beaglebone cubieboard2 odroid-u2 rpi rpi2; do
./mkrootfs.sh $f
./mkimage.sh void-${f}-rootfs-${date}.tar.xz
pixz -9 void-${f}-${date}.img
for f in ${PLATFORMS}; do
./mkimage.sh void-${f}-rootfs-${DATE}.tar.xz
xz -T0 void-${f}-${DATE}.img
done