diff options
author | Jonathan Liu <net147@gmail.com> | 2013-05-09 13:24:02 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-16 00:09:46 +0300 |
commit | badd71825352f4a2aaf40707154f4d5f506a45f6 (patch) | |
tree | ef2ca1fa4baa6a72fc3bacdbd4e0290562712fc6 /meta/classes/boot-directdisk.bbclass | |
parent | fb89bb369be0863d7c1175fcf10c4860e547fd9c (diff) | |
download | poky-badd71825352f4a2aaf40707154f4d5f506a45f6.tar.gz |
syslinux: Update to 4.06
Patches are now part of upstream or no longer needed.
Added new util-linux dependency for isohybrid.
Paths updated to reflect directory structure changes.
Add CFLAGS and LDFLAGS overrides.
[YOCTO #4438]
(From OE-Core rev: 17e7ac0c5e75245d17a90e5cc49ade3d18a168ba)
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/boot-directdisk.bbclass')
-rw-r--r-- | meta/classes/boot-directdisk.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass index 2a8823da20..a3c9a876c1 100644 --- a/meta/classes/boot-directdisk.bbclass +++ b/meta/classes/boot-directdisk.bbclass | |||
@@ -48,7 +48,7 @@ build_boot_dd() { | |||
48 | install -d ${HDDDIR} | 48 | install -d ${HDDDIR} |
49 | install -m 0644 ${STAGING_KERNEL_DIR}/bzImage ${HDDDIR}/vmlinuz | 49 | install -m 0644 ${STAGING_KERNEL_DIR}/bzImage ${HDDDIR}/vmlinuz |
50 | install -m 0644 ${S}/syslinux.cfg ${HDDDIR}/syslinux.cfg | 50 | install -m 0644 ${S}/syslinux.cfg ${HDDDIR}/syslinux.cfg |
51 | install -m 444 ${STAGING_LIBDIR}/syslinux/ldlinux.sys ${HDDDIR}/ldlinux.sys | 51 | install -m 444 ${STAGING_DATADIR}/syslinux/ldlinux.sys ${HDDDIR}/ldlinux.sys |
52 | 52 | ||
53 | BLOCKS=`du -bks ${HDDDIR} | cut -f 1` | 53 | BLOCKS=`du -bks ${HDDDIR} | cut -f 1` |
54 | BLOCKS=`expr $BLOCKS + ${BOOTDD_EXTRA_SPACE}` | 54 | BLOCKS=`expr $BLOCKS + ${BOOTDD_EXTRA_SPACE}` |
@@ -82,7 +82,7 @@ build_boot_dd() { | |||
82 | parted $IMAGE print | 82 | parted $IMAGE print |
83 | 83 | ||
84 | OFFSET=`expr $END2 / 512` | 84 | OFFSET=`expr $END2 / 512` |
85 | dd if=${STAGING_LIBDIR}/syslinux/mbr.bin of=$IMAGE conv=notrunc | 85 | dd if=${STAGING_DATADIR}/syslinux/mbr.bin of=$IMAGE conv=notrunc |
86 | dd if=${HDDIMG} of=$IMAGE conv=notrunc seek=1 bs=512 | 86 | dd if=${HDDIMG} of=$IMAGE conv=notrunc seek=1 bs=512 |
87 | dd if=${ROOTFS} of=$IMAGE conv=notrunc seek=$OFFSET bs=512 | 87 | dd if=${ROOTFS} of=$IMAGE conv=notrunc seek=$OFFSET bs=512 |
88 | 88 | ||