summaryrefslogtreecommitdiff
path: root/meta/packages/syslinux/syslinux_3.36.bb
diff options
context:
space:
mode:
authorQing He <qing.he@intel.com>2010-06-17 17:23:20 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-06-30 13:19:03 +0100
commit60255c8d281dfefb9c1751e41ca06b13c73664de (patch)
tree3c1415ab08806aac71c5fcc9a2f5cdd26889cfdc /meta/packages/syslinux/syslinux_3.36.bb
parente7bcb1210e6688fcaf5ebfd27d218a10e06b52d8 (diff)
downloadopenembedded-core-60255c8d281dfefb9c1751e41ca06b13c73664de.tar.gz
openembedded-core-60255c8d281dfefb9c1751e41ca06b13c73664de.tar.bz2
openembedded-core-60255c8d281dfefb9c1751e41ca06b13c73664de.tar.xz
openembedded-core-60255c8d281dfefb9c1751e41ca06b13c73664de.zip
syslinux: upgrade to versin 3.86
from version 3.36 partly based on the recipe from openembedded project changes: - add cross-build.patch to use poky toolchain - mangle LDFLAGS so $LD invocation works - use precompiled version of $BTARGET for target (OE) - stick on ${sbindir} instead of OE's ${base_sbindir} Signed-off-by: Qing He <qing.he@intel.com>
Diffstat (limited to 'meta/packages/syslinux/syslinux_3.36.bb')
-rw-r--r--meta/packages/syslinux/syslinux_3.36.bb35
1 files changed, 0 insertions, 35 deletions
diff --git a/meta/packages/syslinux/syslinux_3.36.bb b/meta/packages/syslinux/syslinux_3.36.bb
deleted file mode 100644
index 9cd24e6bd..000000000
--- a/meta/packages/syslinux/syslinux_3.36.bb
+++ /dev/null
@@ -1,35 +0,0 @@
-DESCRIPTION = "A multi-purpose linux bootloader"
-HOMEPAGE = "http://syslinux.zytor.com/"
-LICENSE = "GPL"
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2"
-PR = "r4"
-
-# If you really want to run syslinux, you need mtools. We just want the
-# ldlinux.* stuff for now, so skip mtools-native
-DEPENDS = "nasm-native"
-
-do_configure() {
- sed -i ${S}/Makefile ${S}/*/Makefile -e 's/\(CC[\t ]*\)=/\1?=/'
-}
-
-COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)'
-
-export BINDIR = "${bindir}"
-export SBINDIR = "${sbindir}"
-export LIBDIR = "${libdir}"
-export INCDIR = "${includedir}"
-
-do_compile_virtclass-native () {
- oe_runmake installer
-}
-
-NATIVE_INSTALL_WORKS = "1"
-do_install() {
- oe_runmake install INSTALLROOT="${D}"
-
- install -d ${D}${libdir}/syslinux/
- install -m 644 ${S}/ldlinux.sys ${D}${libdir}/syslinux/
- install -m 644 ${S}/ldlinux.bss ${D}${libdir}/syslinux/
-}
-
-BBCLASSEXTEND = "native"