summaryrefslogtreecommitdiffstats
path: root/board/freescale-mx35-3-stack/env/bin/update_rootfs
blob: 53dd2ca575b6b72e1816a3308e3490d49103af4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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