syslinux: Convert to BBCLASSEXTEND, clean up recipe and staging function

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2010-03-25 14:08:12 +00:00
parent 7ccc046732
commit 91f093a2b2
2 changed files with 14 additions and 44 deletions

View File

@ -1,27 +0,0 @@
# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
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 "
DEPENDS = "nasm-native"
S = "${WORKDIR}/syslinux-${PV}"
STAGE_TEMP = "${WORKDIR}/stage_temp"
inherit native
do_compile() {
oe_runmake installer
}
NATIVE_INSTALL_WORKS = "1"
do_install() {
install -d ${STAGE_TEMP}
oe_runmake install INSTALLROOT="${STAGE_TEMP}"
install -d ${D}${bindir}/
install -m 755 ${STAGE_TEMP}/usr/bin/syslinux ${D}${bindir}/
install -m 755 ${STAGE_TEMP}/sbin/extlinux ${D}${bindir}/
}

View File

@ -2,32 +2,29 @@ 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 = "r1"
PR = "r3"
# 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"
S = "${WORKDIR}/syslinux-${PV}"
do_configure() {
sed -i ${S}/Makefile ${S}/*/Makefile -e 's/\(CC[\t ]*\)=/\1?=/'
}
STAGE_TEMP = "${WORKDIR}/stage_temp"
COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)'
do_install() {
install -d ${STAGE_TEMP}
oe_runmake install INSTALLROOT="${STAGE_TEMP}"
# When building media, the syslinux binary isn't nearly as useful
# as the DOS data files, so we copy those into a special location
# for usage during a image build stage
install -d ${D}${datadir}/syslinux/
install -m 0644 ${STAGE_TEMP}/usr/lib/syslinux/isolinux.bin ${D}${datadir}/syslinux/isolinux.bin
install -m 644 ${S}/ldlinux.sys ${D}${datadir}/syslinux/ldlinux.sys
install -m 644 ${S}/ldlinux.bss ${D}${datadir}/syslinux/ldlinux.bss
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"