summaryrefslogtreecommitdiff
path: root/meta-extras/packages/syslinux/syslinux.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-10-11 21:40:26 +0000
committerRichard Purdie <richard@openedhand.com>2007-10-11 21:40:26 +0000
commitfeb7067476a59ceebe3a30ca35dee2e793a13aa9 (patch)
treeebeb042f65f9a42c6444f2a968326cb6041c19aa /meta-extras/packages/syslinux/syslinux.inc
parent8eec39221db38df319874d2b55532dff217c4b1c (diff)
downloadopenembedded-core-feb7067476a59ceebe3a30ca35dee2e793a13aa9.tar.gz
openembedded-core-feb7067476a59ceebe3a30ca35dee2e793a13aa9.tar.bz2
openembedded-core-feb7067476a59ceebe3a30ca35dee2e793a13aa9.tar.xz
openembedded-core-feb7067476a59ceebe3a30ca35dee2e793a13aa9.zip
syslinux, nasm: Move from meta-extras to meta
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2864 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras/packages/syslinux/syslinux.inc')
-rw-r--r--meta-extras/packages/syslinux/syslinux.inc29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta-extras/packages/syslinux/syslinux.inc b/meta-extras/packages/syslinux/syslinux.inc
deleted file mode 100644
index 41be168d1..000000000
--- a/meta-extras/packages/syslinux/syslinux.inc
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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
-}