summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
Diffstat (limited to 'classes')
-rw-r--r--classes/sdcard_image.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/sdcard_image.bbclass b/classes/sdcard_image.bbclass
index 1737ed9f..1f8b2d76 100644
--- a/classes/sdcard_image.bbclass
+++ b/classes/sdcard_image.bbclass
@@ -32,7 +32,7 @@ IMAGE_CMD_sdimg () {
32 # sanity check fstab entry for boot partition mounting 32 # sanity check fstab entry for boot partition mounting
33 if [ "x$(cat /etc/fstab | grep ${LOOPDEV_BOOT} | grep ${WORKDIR}/tmp-mnt-boot | grep user || true)" = "x" ]; then 33 if [ "x$(cat /etc/fstab | grep ${LOOPDEV_BOOT} | grep ${WORKDIR}/tmp-mnt-boot | grep user || true)" = "x" ]; then
34 echo "/etc/fstab entries need to be created with the user flag for the loop devices like:" 34 echo "/etc/fstab entries need to be created with the user flag for the loop devices like:"
35 echo "${LOOPDEV_BOOT} ${WORKDIR}/tmp-mnt-boot msdos user 0 0" 35 echo "${LOOPDEV_BOOT} ${WORKDIR}/tmp-mnt-boot vfat user 0 0"
36 false 36 false
37 fi 37 fi
38 38
@@ -71,7 +71,7 @@ IMAGE_CMD_sdimg () {
71 71
72 ${LOSETUP} ${LOOPDEV_BOOT} ${SDIMG} -o ${BOOT_OFFSET} 72 ${LOSETUP} ${LOOPDEV_BOOT} ${SDIMG} -o ${BOOT_OFFSET}
73 73
74 /sbin/mkfs.msdos ${LOOPDEV_BOOT} -n ${BOOTPARTNAME} $LOOPDEV_BLOCKS 74 /sbin/mkfs.vfat ${LOOPDEV_BOOT} -n ${BOOTPARTNAME} $LOOPDEV_BLOCKS
75 75
76 # Prepare filesystem partition 76 # Prepare filesystem partition
77 # Copy ubi used by flashing scripts 77 # Copy ubi used by flashing scripts