build-rootfs: fix arg order.

This commit is contained in:
Juan RP 2015-02-22 09:46:05 +01:00
parent 00b4452a2a
commit 6bf0ef18f6
1 changed files with 1 additions and 1 deletions

View File

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