diff options
| -rw-r--r-- | meta/classes/bootimg.bbclass | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass index 9df8e9e27c..90bc3a430a 100644 --- a/meta/classes/bootimg.bbclass +++ b/meta/classes/bootimg.bbclass | |||
| @@ -17,40 +17,43 @@ do_rootfs[depends] += "dosfstools-native:do_populate_staging \ | |||
| 17 | mtools-native:do_populate_staging \ | 17 | mtools-native:do_populate_staging \ |
| 18 | cdrtools-native:do_populate_staging" | 18 | cdrtools-native:do_populate_staging" |
| 19 | 19 | ||
| 20 | BDIR = "${WORKDIR}/boot" | 20 | PACKAGES = " " |
| 21 | ISODIR = "${IMAGE_ROOTFS}/isolinux/" | 21 | |
| 22 | HDDDIR = "${S}/hdd/boot" | ||
| 23 | ISODIR = "${S}/cd/isolinux" | ||
| 22 | 24 | ||
| 23 | BOOTIMG_VOLUME_ID ?= "oe" | 25 | BOOTIMG_VOLUME_ID ?= "oe" |
| 24 | BOOTIMG_EXTRA_SPACE ?= "64" | 26 | BOOTIMG_EXTRA_SPACE ?= "64" |
| 25 | 27 | ||
| 26 | # Get the build_syslinux_cfg() function from the syslinux class | 28 | # Get the build_syslinux_cfg() function from the syslinux class |
| 27 | 29 | ||
| 28 | SYSLINUXCFG = "${BDIR}/syslinux.cfg" | 30 | SYSLINUXCFG = "${HDDDIR}/syslinux.cfg" |
| 29 | SYSLINUXMENU = "${BDIR}/menu" | 31 | SYSLINUXMENU = "${HDDDIR}/menu" |
| 30 | 32 | ||
| 31 | inherit syslinux | 33 | inherit syslinux |
| 32 | 34 | ||
| 33 | build_boot_bin() { | 35 | build_boot_bin() { |
| 34 | install -d ${BDIR} | 36 | install -d ${HDDDIR} |
| 35 | install -m 0644 ${STAGING_KERNEL_DIR}/bzImage \ | 37 | install -m 0644 ${STAGING_KERNEL_DIR}/bzImage \ |
| 36 | ${BDIR}/vmlinuz | 38 | ${HDDDIR}/vmlinuz |
| 37 | 39 | ||
| 38 | if [ -n "${INITRD}" ] && [ -s "${INITRD}" ]; then | 40 | if [ -n "${INITRD}" ] && [ -s "${INITRD}" ]; then |
| 39 | install -m 0644 ${INITRD} ${BDIR}/initrd | 41 | install -m 0644 ${INITRD} ${HDDDIR}/initrd |
| 40 | fi | 42 | fi |
| 41 | 43 | ||
| 42 | install -m 444 ${STAGING_DIR}/${BUILD_SYS}/share/syslinux/ldlinux.sys \ | 44 | install -m 444 ${STAGING_DIR}/${BUILD_SYS}/share/syslinux/ldlinux.sys \ |
| 43 | ${BDIR}/ldlinux.sys | 45 | ${HDDDIR}/ldlinux.sys |
| 44 | 46 | ||
| 45 | # Do a little math, bash style | 47 | # Do a little math, bash style |
| 46 | #BLOCKS=`du -s ${BDIR} | cut -f 1` | 48 | #BLOCKS=`du -s ${HDDDIR} | cut -f 1` |
| 47 | BLOCKS=`du -bks ${BDIR} | cut -f 1` | 49 | BLOCKS=`du -bks ${HDDDIR} | cut -f 1` |
| 48 | SIZE=`expr $BLOCKS + ${BOOTIMG_EXTRA_SPACE}` | 50 | SIZE=`expr $BLOCKS + ${BOOTIMG_EXTRA_SPACE}` |
| 49 | 51 | ||
| 50 | mkdosfs -F 12 -n ${BOOTIMG_VOLUME_ID} -d ${BDIR} \ | 52 | mkdosfs -F 12 -n ${BOOTIMG_VOLUME_ID} -d ${HDDDIR} \ |
| 51 | -C ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}-boot.bin $SIZE | 53 | -C ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg $SIZE |
| 52 | 54 | ||
| 53 | syslinux ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}-boot.bin | 55 | syslinux ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg |
| 56 | chmod 644 ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg | ||
| 54 | 57 | ||
| 55 | #Create an ISO if we have an INITRD | 58 | #Create an ISO if we have an INITRD |
| 56 | if [ -n "${INITRD}" ] && [ -s "${INITRD}" ] && [ "${NOISO}" != "1" ] ; then | 59 | if [ -n "${INITRD}" ] && [ -s "${INITRD}" ] && [ "${NOISO}" != "1" ] ; then |
| @@ -63,7 +66,7 @@ build_boot_bin() { | |||
| 63 | 66 | ||
| 64 | # Install the configuration files | 67 | # Install the configuration files |
| 65 | 68 | ||
| 66 | cp ${BDIR}/syslinux.cfg ${ISODIR}/isolinux.cfg | 69 | cp ${HDDDIR}/syslinux.cfg ${ISODIR}/isolinux.cfg |
| 67 | 70 | ||
| 68 | if [ -f ${SYSLINUXMENU} ]; then | 71 | if [ -f ${SYSLINUXMENU} ]; then |
| 69 | cp ${SYSLINUXMENU} ${ISODIR} | 72 | cp ${SYSLINUXMENU} ${ISODIR} |
| @@ -79,7 +82,7 @@ build_boot_bin() { | |||
| 79 | -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.iso \ | 82 | -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.iso \ |
| 80 | -b isolinux/isolinux.bin -c isolinux/boot.cat -r \ | 83 | -b isolinux/isolinux.bin -c isolinux/boot.cat -r \ |
| 81 | -no-emul-boot -boot-load-size 4 -boot-info-table \ | 84 | -no-emul-boot -boot-load-size 4 -boot-info-table \ |
| 82 | ${IMAGE_ROOTFS} | 85 | ${S}/cd/ |
| 83 | fi | 86 | fi |
| 84 | } | 87 | } |
| 85 | 88 | ||
