diff options
| author | Jason Wessel <jason.wessel@windriver.com> | 2013-09-17 13:32:13 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-30 22:11:56 +0100 |
| commit | ec9f4c3c25544e7613058113f283658ce604c937 (patch) | |
| tree | 9819fea83603b342cbeb9230cc6e6983b8a8992e /meta/recipes-devtools/syslinux/syslinux_6.01.bb | |
| parent | fde291198386dae7eca868276d5e1a7b069fda58 (diff) | |
| download | poky-ec9f4c3c25544e7613058113f283658ce604c937.tar.gz | |
syslinux.bbclass, syslinux: Update to syslinux 6.01
A newer version of syslinux is required for an EFI enabled isohybrid.
This is used for the the capability to generate 3 types of ISO images,
all of which can be booted off a USB device or HDD if copied with dd.
1) PC BIOS only ISO
2) EFI only ISO
3) EFI + PC BIOS ISO
The syslinux.bbclass required a minor tweak because a few .c32
libraries require dynamic loading from the created media as of
syslinux 5 and up. This was a good time to also fix the
duplication of the AUTO_SYSLINUXMENU block.
[YOCTO #4100]
(From OE-Core rev: 17d74fbd09e377e100423e1a73b9d4ce761a21d7)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/syslinux/syslinux_6.01.bb')
| -rw-r--r-- | meta/recipes-devtools/syslinux/syslinux_6.01.bb | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/meta/recipes-devtools/syslinux/syslinux_6.01.bb b/meta/recipes-devtools/syslinux/syslinux_6.01.bb new file mode 100644 index 0000000000..4438ea8330 --- /dev/null +++ b/meta/recipes-devtools/syslinux/syslinux_6.01.bb | |||
| @@ -0,0 +1,68 @@ | |||
| 1 | DESCRIPTION = "A multi-purpose linux bootloader" | ||
| 2 | HOMEPAGE = "http://syslinux.zytor.com/" | ||
| 3 | LICENSE = "GPLv2+" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | ||
| 5 | file://README;beginline=35;endline=41;md5=558f2c71cb1fb9ba511ccd4858e48e8a" | ||
| 6 | |||
| 7 | # If you really want to run syslinux, you need mtools. We just want the | ||
| 8 | # ldlinux.* stuff for now, so skip mtools-native | ||
| 9 | DEPENDS = "nasm-native util-linux" | ||
| 10 | |||
| 11 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/boot/syslinux/6.xx/syslinux-${PV}.tar.bz2" | ||
| 12 | |||
| 13 | SRC_URI[md5sum] = "6945ee89e29119d459baed4937bbc534" | ||
| 14 | SRC_URI[sha256sum] = "83a04cf81e6a46b80ee5a321926eea095af3498b04317e3674b46c125c7a5b43" | ||
| 15 | |||
| 16 | COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)' | ||
| 17 | # Don't let the sanity checker trip on the 32 bit real mode BIOS binaries | ||
| 18 | INSANE_SKIP_${PN}-misc = "arch" | ||
| 19 | INSANE_SKIP_${PN}-chain = "arch" | ||
| 20 | |||
| 21 | EXTRA_OEMAKE = " \ | ||
| 22 | BINDIR=${bindir} SBINDIR=${sbindir} LIBDIR=${libdir} \ | ||
| 23 | DATADIR=${datadir} MANDIR=${mandir} INCDIR=${includedir} \ | ||
| 24 | " | ||
| 25 | # syslinux uses $LD for linking, strip `-Wl,' so it can work | ||
| 26 | export LDFLAGS = "`echo $LDFLAGS | sed 's/-Wl,//g'`" | ||
| 27 | |||
| 28 | do_configure() { | ||
| 29 | # drop win32 targets or build fails | ||
| 30 | sed -e 's,win32/\S*,,g' -i Makefile | ||
| 31 | |||
| 32 | # clean installer executables included in source tarball | ||
| 33 | oe_runmake clean firmware="efi32" EFIINC="${includedir}" | ||
| 34 | # NOTE: There is a temporary work around above to specify | ||
| 35 | # the efi32 as the firmware else the pre-built bios | ||
| 36 | # files get erased contrary to the doc/distib.txt | ||
| 37 | # In the future this should be "bios" and not "efi32". | ||
| 38 | } | ||
| 39 | |||
| 40 | do_compile() { | ||
| 41 | # Rebuild only the installer; keep precompiled bootloaders | ||
| 42 | # as per author's request (doc/distrib.txt) | ||
| 43 | oe_runmake CC="${CC} ${CFLAGS}" LDFLAGS="${LDFLAGS}" firmware="bios" installer | ||
| 44 | } | ||
| 45 | |||
| 46 | do_install() { | ||
| 47 | oe_runmake install INSTALLROOT="${D}" firmware="bios" | ||
| 48 | |||
| 49 | install -d ${D}${datadir}/syslinux/ | ||
| 50 | install -m 644 ${S}/bios/core/ldlinux.sys ${D}${datadir}/syslinux/ | ||
| 51 | install -m 644 ${S}/bios/core/ldlinux.bss ${D}${datadir}/syslinux/ | ||
| 52 | } | ||
| 53 | |||
| 54 | PACKAGES += "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc" | ||
| 55 | |||
| 56 | RDEPENDS_${PN} += "mtools" | ||
| 57 | |||
| 58 | FILES_${PN} = "${bindir}/syslinux" | ||
| 59 | FILES_${PN}-extlinux = "${sbindir}/extlinux" | ||
| 60 | FILES_${PN}-mbr = "${datadir}/${BPN}/mbr.bin" | ||
| 61 | FILES_${PN}-chain = "${datadir}/${BPN}/chain.c32" | ||
| 62 | FILES_${PN}-isolinux = "${datadir}/${BPN}/isolinux.bin" | ||
| 63 | FILES_${PN}-pxelinux = "${datadir}/${BPN}/pxelinux.0" | ||
| 64 | FILES_${PN}-dev += "${datadir}/${BPN}/com32/lib*${SOLIBS} ${datadir}/${BPN}/com32/include ${datadir}/${BPN}/com32/com32.ld" | ||
| 65 | FILES_${PN}-staticdev += "${datadir}/${BPN}/com32/lib*.a ${libdir}/${BPN}/com32/lib*.a" | ||
| 66 | FILES_${PN}-misc = "${datadir}/${BPN}/* ${libdir}/${BPN}/* ${bindir}/*" | ||
| 67 | |||
| 68 | BBCLASSEXTEND = "native" | ||
