diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-08 08:34:33 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-08 08:34:33 +0000 |
commit | 01f2cbe33c2365af10b0b47542937f702c33221d (patch) | |
tree | ef54653e774936f5092227afcb0e4a3f3308e830 /meta-extras/packages/syslinux/syslinux.inc | |
parent | ff2d75b7ea9e00568d92c84025395d0dc871fe79 (diff) | |
download | openembedded-core-01f2cbe33c2365af10b0b47542937f702c33221d.tar.gz openembedded-core-01f2cbe33c2365af10b0b47542937f702c33221d.tar.bz2 openembedded-core-01f2cbe33c2365af10b0b47542937f702c33221d.zip |
syslinux: imported from OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1890 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras/packages/syslinux/syslinux.inc')
-rw-r--r-- | meta-extras/packages/syslinux/syslinux.inc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-extras/packages/syslinux/syslinux.inc b/meta-extras/packages/syslinux/syslinux.inc new file mode 100644 index 0000000000..41be168d12 --- /dev/null +++ b/meta-extras/packages/syslinux/syslinux.inc @@ -0,0 +1,29 @@ +# 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/" +LICENSE="GPL" + +# 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}" + + +inherit native + +do_stage() { + install -d ${STAGING_BINDIR} + install -m 755 ${S}/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 644 ${S}/ldlinux.sys ${STAGING_DATADIR}/syslinux/ldlinux.sys + install -m 644 ${S}/ldlinux.bss ${STAGING_DATADIR}/syslinux/ldlinux.bss +} |