diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2008-11-10 19:26:19 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2008-11-10 19:26:19 +0100 |
commit | e4374351581fd54ffd1d0da9b11efe7b7f578ff4 (patch) | |
tree | 51ab334af48194c5d17a9206c790ed69da419a3f /meta/classes/bootimg.bbclass | |
parent | 2685507637ba11f25d1e35053d4663add2ad51ef (diff) | |
download | openembedded-core-contrib-e4374351581fd54ffd1d0da9b11efe7b7f578ff4.tar.gz |
bootimg: Let mkdosfs choose between fat12 and fat16
Diffstat (limited to 'meta/classes/bootimg.bbclass')
-rw-r--r-- | meta/classes/bootimg.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass index 25fd2ee6c6b..37a59c2d71a 100644 --- a/meta/classes/bootimg.bbclass +++ b/meta/classes/bootimg.bbclass @@ -54,7 +54,7 @@ build_boot_bin() { BLOCKS=`du -bks ${HDDDIR} | cut -f 1` SIZE=`expr $BLOCKS + ${BOOTIMG_EXTRA_SPACE}` - mkdosfs -F 16 -n ${BOOTIMG_VOLUME_ID} -d ${HDDDIR} \ + mkdosfs -n ${BOOTIMG_VOLUME_ID} -d ${HDDDIR} \ -C ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg $SIZE syslinux ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg |