summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/syslinux/syslinux_6.01.bb
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2014-12-10 10:26:33 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-01-07 23:35:08 +0000
commitc4fc5641d3f994b91d685fac2602efd112a0a6a9 (patch)
tree86162b99b1839e973a4abce31c4c836b4a94e4d1 /meta/recipes-devtools/syslinux/syslinux_6.01.bb
parent31059be9777b6f452bfdaafc56d3fd3ad7fd0c65 (diff)
downloadpoky-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.bb81
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 @@
1SUMMARY = "Multi-purpose linux bootloader"
2HOMEPAGE = "http://syslinux.zytor.com/"
3LICENSE = "GPLv2+"
4LIC_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
9DEPENDS = "nasm-native util-linux"
10
11SRC_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
21SRC_URI[md5sum] = "6945ee89e29119d459baed4937bbc534"
22SRC_URI[sha256sum] = "83a04cf81e6a46b80ee5a321926eea095af3498b04317e3674b46c125c7a5b43"
23
24COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)'
25# Don't let the sanity checker trip on the 32 bit real mode BIOS binaries
26INSANE_SKIP_${PN}-misc = "arch"
27INSANE_SKIP_${PN}-chain = "arch"
28
29EXTRA_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
34export LDFLAGS = "`echo $LDFLAGS | sed 's/-Wl,//g'`"
35
36do_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
48do_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
58do_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
66PACKAGES += "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc"
67
68RDEPENDS_${PN} += "mtools"
69RDEPENDS_${PN}-misc += "perl"
70
71FILES_${PN} = "${bindir}/syslinux"
72FILES_${PN}-extlinux = "${sbindir}/extlinux"
73FILES_${PN}-mbr = "${datadir}/${BPN}/mbr.bin"
74FILES_${PN}-chain = "${datadir}/${BPN}/chain.c32"
75FILES_${PN}-isolinux = "${datadir}/${BPN}/isolinux.bin"
76FILES_${PN}-pxelinux = "${datadir}/${BPN}/pxelinux.0"
77FILES_${PN}-dev += "${datadir}/${BPN}/com32/lib*${SOLIBS} ${datadir}/${BPN}/com32/include ${datadir}/${BPN}/com32/com32.ld"
78FILES_${PN}-staticdev += "${datadir}/${BPN}/com32/lib*.a ${libdir}/${BPN}/com32/lib*.a"
79FILES_${PN}-misc = "${datadir}/${BPN}/* ${libdir}/${BPN}/* ${bindir}/*"
80
81BBCLASSEXTEND = "native nativesdk"