diff options
author | Raymond Danks <raymond@edanks.com> | 2006-04-18 01:43:43 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-18 01:43:43 +0000 |
commit | 5a8ed083b17f8f337e6e550b4b065a935e154986 (patch) | |
tree | 72649b82fdad80252148cd69a1e43b300ac5af93 /packages/syslinux/syslinux-native_3.11.bb | |
parent | c2a4b021eb04924f8c8b0e0af1fac337a04cbcae (diff) |
syslinux: Upgrade to 3.11
Diffstat (limited to 'packages/syslinux/syslinux-native_3.11.bb')
-rw-r--r-- | packages/syslinux/syslinux-native_3.11.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/syslinux/syslinux-native_3.11.bb b/packages/syslinux/syslinux-native_3.11.bb new file mode 100644 index 0000000000..f3a040b874 --- /dev/null +++ b/packages/syslinux/syslinux-native_3.11.bb @@ -0,0 +1,40 @@ +# syslinux-native OE build file +# 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/" +MAINTAINER = "Raymond Danks <raymondd@ia.amd.com>" +LICENSE="GPL" + +PR="r1" + +SRC_URI="http://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2 " + +S="${WORKDIR}/syslinux-${PV}" + +# 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" + +inherit native + +STAGE_TEMP=${WORKDIR}/stage_temp + +do_stage() { + install -d ${STAGE_TEMP} + oe_runmake install INSTALLROOT="${STAGE_TEMP}" + + install -d ${STAGING_BINDIR} + install -m 755 ${STAGE_TEMP}/usr/bin/syslinux ${STAGING_BINDIR} + + # 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 ${STAGING_DATADIR}/syslinux + install -m 0644 ${STAGE_TEMP}/usr/lib/syslinux/isolinux.bin ${STAGING_DATADIR}/syslinux/isolinux.bin + install -m 644 ${S}/ldlinux.sys ${STAGING_DATADIR}/syslinux/ldlinux.sys + install -m 644 ${S}/ldlinux.bss ${STAGING_DATADIR}/syslinux/ldlinux.bss +} |