From 6755fa69c4ac53601c383ba00414adea4d5d5525 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sun, 22 Feb 2015 09:40:25 +0100 Subject: build-arm-images: only build the images, the rootfs must be available. --- build-arm-images.sh.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-arm-images.sh.in b/build-arm-images.sh.in index 463eae7..c1f02a9 100644 --- a/build-arm-images.sh.in +++ b/build-arm-images.sh.in @@ -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 -- cgit 1.4.1