summaryrefslogtreecommitdiff
path: root/packages/syslinux/syslinux.inc
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2009-01-15 16:31:18 -0200
committerOtavio Salvador <otavio@ossystems.com.br>2009-01-22 18:50:55 -0200
commitf01e6cb9955e8a7304abf8b391ed97385eacdb3b (patch)
tree6a98c83578442699f89dce2a4cf12a526dbb3231 /packages/syslinux/syslinux.inc
parentf487f048698f634f321acc80fce2e648b35a328e (diff)
syslinux-native: leave only 3.63 version
The only user (or a possible one) of it was OpenMoko but they were preferring the version 3.36 that is not available; so looks safe to bump it to 3.63 since it was't notice by them. The versions that has been droped are 2.11, 3.11 and 3.31.
Diffstat (limited to 'packages/syslinux/syslinux.inc')
-rw-r--r--packages/syslinux/syslinux.inc29
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/syslinux/syslinux.inc b/packages/syslinux/syslinux.inc
deleted file mode 100644
index 41be168d12..0000000000
--- a/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
-}