aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/busybox/slingbox_1.3.1.bb
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2009-05-01 00:16:54 +0000
committerRod Whitby <rod@whitby.id.au>2009-05-01 00:16:54 +0000
commite8410422c0d3a3621ee5a604cd5a52e80604532f (patch)
tree9fde706f2e6acaa0b1874f9e3cd1f888c5805903 /recipes/busybox/slingbox_1.3.1.bb
parente34ffc1bf774a0a6561d7b9e0e6800e1029c0ef1 (diff)
downloadopenembedded-e8410422c0d3a3621ee5a604cd5a52e80604532f.tar.gz
Unslung: Removed all trace of the unslung distro from OE
Diffstat (limited to 'recipes/busybox/slingbox_1.3.1.bb')
-rw-r--r--recipes/busybox/slingbox_1.3.1.bb52
1 files changed, 0 insertions, 52 deletions
diff --git a/recipes/busybox/slingbox_1.3.1.bb b/recipes/busybox/slingbox_1.3.1.bb
deleted file mode 100644
index 0a9051d447..0000000000
--- a/recipes/busybox/slingbox_1.3.1.bb
+++ /dev/null
@@ -1,52 +0,0 @@
-DESCRIPTION = "SlingBox is a minimal version of BusyBox with just enough functionality \
-to enable ipkg to run on an Unslung NSLU2 device."
-HOMEPAGE = "http://www.busybox.net"
-LICENSE = "GPL"
-SECTION = "base"
-PRIORITY = "required"
-PR = "r4"
-COMPATIBLE_MACHINE = "nslu2"
-
-SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \
- file://defconfig \
- file://mountall \
- file://shadow_h_is_required.patch;patch=1 \
- file://df_rootfs.patch;patch=1 \
- file://lazy_umount.patch;patch=1 \
- file://halt.patch;patch=1 \
- file://fdisk-readhex.patch;patch=1 \
- file://trylink-bash.patch;patch=1 \
- file://slingbox_name.patch;patch=1 \
- file://slingbox.patch;patch=1"
-
-S = "${WORKDIR}/busybox-${PV}"
-
-export EXTRA_CFLAGS = "${CFLAGS}"
-EXTRA_OEMAKE_append = " V=1 ARCH=arm CROSS_COMPILE=${TARGET_PREFIX}"
-
-FILES_${PN} = "/"
-FILES_${PN}-doc = ""
-FILES_${PN}-dev = ""
-FILES_${PN}-locale = ""
-
-inherit cml1
-
-do_configure () {
- install -m 0644 ${WORKDIR}/defconfig ${S}/.config
- cml1_do_configure
-}
-
-do_compile () {
- unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
- base_do_compile
-}
-
-do_install () {
- unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
- oe_runmake "PREFIX=${D}" install
-
- # Just in case fdisk is compiled in, do not overwrite the Linksys one
- rm -f ${S}/_install/sbin/fdisk
-
- cp -pPR ${S}/_install/* ${D}/
-}