Newer
Older
barebox / arch / arm / boards / freescale-mx35-3-stack / env / bin / update_rootfs
@Jean-Christophe PLAGNIOL-VILLARD Jean-Christophe PLAGNIOL-VILLARD on 23 Jul 2010 295 bytes move boards to arch/<architecure>/boards
#!/bin/sh

. /env/config

if [ $rootfs_type = ubifs ]; then
	image=${rootfs}.ubi
else
	image=${rootfs}.$rootfs_type
fi

if [ x$1 = xnand ]; then
	part=/dev/nand0.root.bb
elif [ x$1 = xnor ]; then
	part=/dev/nor0.root
else
	echo "usage: $0 nor|nand [imagename]"
	exit 1
fi

. /env/bin/_update $2