diff options
author | Koen Kooi <koen@openembedded.org> | 2010-07-29 10:38:25 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-07-29 10:41:09 +0200 |
commit | 9043bdf8e8c9ef03d6f12a506c680a25cb39fe93 (patch) | |
tree | 3eec7dbfdcc52f211f61aec9cbf9bbd4c7328fba | |
parent | 6ff7435ae881ac7b572b618e28fb21fafc1f789b (diff) |
angstrom omap3-mkcard.sh: fix rootfs name
-rwxr-xr-x | contrib/angstrom/omap3-mkcard.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/angstrom/omap3-mkcard.sh b/contrib/angstrom/omap3-mkcard.sh index 1cf681762d..72dce06cab 100755 --- a/contrib/angstrom/omap3-mkcard.sh +++ b/contrib/angstrom/omap3-mkcard.sh @@ -46,11 +46,11 @@ fi if [ -b ${DRIVE}2 ]; then umount ${DRIVE}2 - mke2fs -j -L "rootfs" ${DRIVE}2 + mke2fs -j -L "Angstrom" ${DRIVE}2 else if [ -b ${DRIVE}p2 ]; then umount ${DRIVE}p2 - mke2fs -j -L "rootfs" ${DRIVE}p2 + mke2fs -j -L "Angstrom" ${DRIVE}p2 else echo "Cant find rootfs partition in /dev" fi |