summaryrefslogtreecommitdiffstats
path: root/meta/classes/bootimg.bbclass
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2008-11-06 11:25:34 +0100
committerSamuel Ortiz <sameo@linux.intel.com>2008-11-06 11:25:34 +0100
commitfaae7d38e66d1bc32220bffdc62bdd00f8d75656 (patch)
tree78217b27b06a208111f12ae31b1478fdbf8d0ab1 /meta/classes/bootimg.bbclass
parent0e5bc8758bbcb509c2fb45e32069ce6dc5bf6919 (diff)
downloadpoky-faae7d38e66d1bc32220bffdc62bdd00f8d75656.tar.gz
bootimg: As image size grows, we want to switch to FAT16
Diffstat (limited to 'meta/classes/bootimg.bbclass')
-rw-r--r--meta/classes/bootimg.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass
index 1a24ac7187..25fd2ee6c6 100644
--- a/meta/classes/bootimg.bbclass
+++ b/meta/classes/bootimg.bbclass
@@ -54,7 +54,7 @@ build_boot_bin() {
54 BLOCKS=`du -bks ${HDDDIR} | cut -f 1` 54 BLOCKS=`du -bks ${HDDDIR} | cut -f 1`
55 SIZE=`expr $BLOCKS + ${BOOTIMG_EXTRA_SPACE}` 55 SIZE=`expr $BLOCKS + ${BOOTIMG_EXTRA_SPACE}`
56 56
57 mkdosfs -F 12 -n ${BOOTIMG_VOLUME_ID} -d ${HDDDIR} \ 57 mkdosfs -F 16 -n ${BOOTIMG_VOLUME_ID} -d ${HDDDIR} \
58 -C ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg $SIZE 58 -C ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg $SIZE
59 59
60 syslinux ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg 60 syslinux ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg