build-rootfs: new script to build all rootfs tarballs.

This commit is contained in:
Juan RP 2015-02-22 09:40:53 +01:00
parent 6755fa69c4
commit 00b4452a2a

9
build-rootfs.sh.in Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
set -e
PLATFORMS="beaglebone cubieboard2 odroid-u2 rpi rpi2"
for f in ${PLATFORMS}; do
./mkrootfs.sh $f $@
done