diff options
| author | Saul Wold <sgw@linux.intel.com> | 2014-12-10 10:26:33 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-07 23:35:08 +0000 |
| commit | c4fc5641d3f994b91d685fac2602efd112a0a6a9 (patch) | |
| tree | 86162b99b1839e973a4abce31c4c836b4a94e4d1 /meta/recipes-devtools/syslinux/syslinux_6.01.bb | |
| parent | 31059be9777b6f452bfdaafc56d3fd3ad7fd0c65 (diff) | |
| download | poky-c4fc5641d3f994b91d685fac2602efd112a0a6a9.tar.gz | |
syslinux: Update to 6.0.3
Removed patches that are now committed upstream, rebase parallel make
patch and add a new patch to remove a script that was calling git during
the clean process.
(From OE-Core rev: b53e46bece1c4976ba146d9abf41a8a54c584300)
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 | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/meta/recipes-devtools/syslinux/syslinux_6.01.bb b/meta/recipes-devtools/syslinux/syslinux_6.01.bb deleted file mode 100644 index 20afae95da..0000000000 --- a/meta/recipes-devtools/syslinux/syslinux_6.01.bb +++ /dev/null | |||
| @@ -1,81 +0,0 @@ | |||
| 1 | SUMMARY = "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 | file://0001-movebits-Add-SMT_TERMINAL-a-last-resort-region-type.patch \ | ||
| 13 | file://0002-memscan-build-a-linked-list-of-memory-scanners.patch \ | ||
| 14 | file://0003-PXELINUX-Add-bios-memscan-function.patch \ | ||
| 15 | file://0004-pxe-use-bios_fbm-and-real_base_mem-to-calculate-free.patch \ | ||
| 16 | file://syslinux-fix-parallel-building-issue.patch \ | ||
| 17 | file://isohybrid-fix-overflow-on-32-bit-system.patch \ | ||
| 18 | file://syslinux-libupload-depend-lib.patch \ | ||
| 19 | " | ||
| 20 | |||
| 21 | SRC_URI[md5sum] = "6945ee89e29119d459baed4937bbc534" | ||
| 22 | SRC_URI[sha256sum] = "83a04cf81e6a46b80ee5a321926eea095af3498b04317e3674b46c125c7a5b43" | ||
| 23 | |||
| 24 | COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)' | ||
| 25 | # Don't let the sanity checker trip on the 32 bit real mode BIOS binaries | ||
| 26 | INSANE_SKIP_${PN}-misc = "arch" | ||
| 27 | INSANE_SKIP_${PN}-chain = "arch" | ||
| 28 | |||
| 29 | EXTRA_OEMAKE = " \ | ||
| 30 | BINDIR=${bindir} SBINDIR=${sbindir} LIBDIR=${libdir} \ | ||
| 31 | DATADIR=${datadir} MANDIR=${mandir} INCDIR=${includedir} \ | ||
| 32 | " | ||
| 33 | # syslinux uses $LD for linking, strip `-Wl,' so it can work | ||
| 34 | export LDFLAGS = "`echo $LDFLAGS | sed 's/-Wl,//g'`" | ||
| 35 | |||
| 36 | do_configure() { | ||
| 37 | # drop win32 targets or build fails | ||
| 38 | sed -e 's,win32/\S*,,g' -i Makefile | ||
| 39 | |||
| 40 | # clean installer executables included in source tarball | ||
| 41 | oe_runmake clean firmware="efi32" EFIINC="${includedir}" | ||
| 42 | # NOTE: There is a temporary work around above to specify | ||
| 43 | # the efi32 as the firmware else the pre-built bios | ||
| 44 | # files get erased contrary to the doc/distib.txt | ||
| 45 | # In the future this should be "bios" and not "efi32". | ||
| 46 | } | ||
| 47 | |||
| 48 | do_compile() { | ||
| 49 | # Make sure the recompile is OK. | ||
| 50 | # Though the ${B} should always exist, still check it before find and rm. | ||
| 51 | [ -d "${B}" ] && find ${B} -name '.*.d' -type f -exec rm -f {} \; | ||
| 52 | |||
| 53 | # Rebuild only the installer; keep precompiled bootloaders | ||
| 54 | # as per author's request (doc/distrib.txt) | ||
| 55 | oe_runmake CC="${CC} ${CFLAGS}" LDFLAGS="${LDFLAGS}" firmware="bios" installer | ||
| 56 | } | ||
| 57 | |||
| 58 | do_install() { | ||
| 59 | oe_runmake CC="${CC} ${CFLAGS}" install INSTALLROOT="${D}" firmware="bios" | ||
| 60 | |||
| 61 | install -d ${D}${datadir}/syslinux/ | ||
| 62 | install -m 644 ${S}/bios/core/ldlinux.sys ${D}${datadir}/syslinux/ | ||
| 63 | install -m 644 ${S}/bios/core/ldlinux.bss ${D}${datadir}/syslinux/ | ||
| 64 | } | ||
| 65 | |||
| 66 | PACKAGES += "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc" | ||
| 67 | |||
| 68 | RDEPENDS_${PN} += "mtools" | ||
| 69 | RDEPENDS_${PN}-misc += "perl" | ||
| 70 | |||
| 71 | FILES_${PN} = "${bindir}/syslinux" | ||
| 72 | FILES_${PN}-extlinux = "${sbindir}/extlinux" | ||
| 73 | FILES_${PN}-mbr = "${datadir}/${BPN}/mbr.bin" | ||
| 74 | FILES_${PN}-chain = "${datadir}/${BPN}/chain.c32" | ||
| 75 | FILES_${PN}-isolinux = "${datadir}/${BPN}/isolinux.bin" | ||
| 76 | FILES_${PN}-pxelinux = "${datadir}/${BPN}/pxelinux.0" | ||
| 77 | FILES_${PN}-dev += "${datadir}/${BPN}/com32/lib*${SOLIBS} ${datadir}/${BPN}/com32/include ${datadir}/${BPN}/com32/com32.ld" | ||
| 78 | FILES_${PN}-staticdev += "${datadir}/${BPN}/com32/lib*.a ${libdir}/${BPN}/com32/lib*.a" | ||
| 79 | FILES_${PN}-misc = "${datadir}/${BPN}/* ${libdir}/${BPN}/* ${bindir}/*" | ||
| 80 | |||
| 81 | BBCLASSEXTEND = "native nativesdk" | ||
