diff options
| author | Qing He <qing.he@intel.com> | 2010-06-17 17:23:20 +0800 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-30 13:19:03 +0100 |
| commit | 60255c8d281dfefb9c1751e41ca06b13c73664de (patch) | |
| tree | 3c1415ab08806aac71c5fcc9a2f5cdd26889cfdc /meta/packages/syslinux/syslinux_3.86.bb | |
| parent | e7bcb1210e6688fcaf5ebfd27d218a10e06b52d8 (diff) | |
| download | poky-60255c8d281dfefb9c1751e41ca06b13c73664de.tar.gz | |
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.86.bb')
| -rw-r--r-- | meta/packages/syslinux/syslinux_3.86.bb | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/meta/packages/syslinux/syslinux_3.86.bb b/meta/packages/syslinux/syslinux_3.86.bb new file mode 100644 index 0000000000..2fbbf0d0bd --- /dev/null +++ b/meta/packages/syslinux/syslinux_3.86.bb | |||
| @@ -0,0 +1,47 @@ | |||
| 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=28;endline=34;md5=a4607efd4a6392017186d08099e7d546" | ||
| 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" | ||
| 10 | PR = "r0" | ||
| 11 | |||
| 12 | SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2 \ | ||
| 13 | file://cross-build.patch" | ||
| 14 | |||
| 15 | COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)' | ||
| 16 | |||
| 17 | EXTRA_OEMAKE = " \ | ||
| 18 | BINDIR=${bindir} SBINDIR=${sbindir} LIBDIR=${libdir} \ | ||
| 19 | DATADIR=${datadir} MANDIR=${mandir} INCDIR=${includedir} \ | ||
| 20 | " | ||
| 21 | # syslinux uses $LD for linking, strip `-Wl,' so it can work | ||
| 22 | export LDFLAGS = "`echo $LDFLAGS | sed 's/-Wl,//g'`" | ||
| 23 | |||
| 24 | do_configure() { | ||
| 25 | # drop win32 targets or build fails | ||
| 26 | sed -e 's,win32/\S*,,g' -i Makefile | ||
| 27 | |||
| 28 | # clean installer executables included in source tarball | ||
| 29 | oe_runmake clean | ||
| 30 | } | ||
| 31 | |||
| 32 | do_compile() { | ||
| 33 | # Rebuild only the installer; keep precompiled bootloaders | ||
| 34 | # as per author's request (doc/distrib.txt) | ||
| 35 | oe_runmake CC="${CC}" installer | ||
| 36 | } | ||
| 37 | |||
| 38 | NATIVE_INSTALL_WORKS = "1" | ||
| 39 | do_install() { | ||
| 40 | oe_runmake install INSTALLROOT="${D}" | ||
| 41 | |||
| 42 | install -d ${D}${libdir}/syslinux/ | ||
| 43 | install -m 644 ${S}/core/ldlinux.sys ${D}${libdir}/syslinux/ | ||
| 44 | install -m 644 ${S}/core/ldlinux.bss ${D}${libdir}/syslinux/ | ||
| 45 | } | ||
| 46 | |||
| 47 | BBCLASSEXTEND = "native" | ||
