diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-25 14:08:12 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-25 14:08:12 +0000 |
commit | 91f093a2b26d4574cd5ce68171a2e872ac000047 (patch) | |
tree | 7e7a9a398c220cb71e29559216d2b302058c0612 /meta/packages | |
parent | 7ccc04673294c966cb9d212e401b1d90bde0f59f (diff) | |
download | openembedded-core-91f093a2b26d4574cd5ce68171a2e872ac000047.tar.gz openembedded-core-91f093a2b26d4574cd5ce68171a2e872ac000047.tar.bz2 openembedded-core-91f093a2b26d4574cd5ce68171a2e872ac000047.zip |
syslinux: Convert to BBCLASSEXTEND, clean up recipe and staging function
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/syslinux/syslinux-installer-native_3.36.bb | 27 | ||||
-rw-r--r-- | meta/packages/syslinux/syslinux_3.36.bb | 29 |
2 files changed, 13 insertions, 43 deletions
diff --git a/meta/packages/syslinux/syslinux-installer-native_3.36.bb b/meta/packages/syslinux/syslinux-installer-native_3.36.bb deleted file mode 100644 index c304a2d293..0000000000 --- a/meta/packages/syslinux/syslinux-installer-native_3.36.bb +++ /dev/null @@ -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}/ -} diff --git a/meta/packages/syslinux/syslinux_3.36.bb b/meta/packages/syslinux/syslinux_3.36.bb index 8db2055dc9..5073ac358a 100644 --- a/meta/packages/syslinux/syslinux_3.36.bb +++ b/meta/packages/syslinux/syslinux_3.36.bb @@ -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_compile_virtclass-native () { + oe_runmake installer +} + +NATIVE_INSTALL_WORKS = "1" 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 + 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" |