Don't build switchbox and slingbox unless you're targeting an NSLU2.
authorChris Larson <clarson@kergoth.com>
Fri, 3 Dec 2004 19:51:24 +0000 (19:51 +0000)
committerChris Larson <clarson@kergoth.com>
Fri, 3 Dec 2004 19:51:24 +0000 (19:51 +0000)
BKrev: 41b0c3bcHWKv3tvxOM48uMvcxtkj-w

busybox/slingbox_1.00.oe
busybox/switchbox_1.00.oe

index e69de29..20f8581 100644 (file)
@@ -0,0 +1,45 @@
+DESCRIPTION = "SlingBox version ${PV}. \
+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 = "r1"
+
+SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \
+           file://defconfig \
+           file://slingbox.patch;patch=1"
+          
+S = "${WORKDIR}/busybox-${PV}"
+
+python () {
+       # Don't build slingbox unless we're targeting an nslu2
+       if oe.data.getVar("MACHINE", d, 1) != "nslu2":
+               raise oe.parse.SkipPackage("switchbox only builds for the Linksys NSLU2")
+}
+
+export EXTRA_CFLAGS = "${CFLAGS}"
+EXTRA_OEMAKE_append = " CROSS=${HOST_PREFIX}"
+
+PACKAGES = "${PN}"
+FILES_${PN} = "/bin /sbin"
+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
+       base_do_compile
+}
+
+do_install () {
+       oe_runmake 'PREFIX=${D}' install
+}
index 42b82d8..e2d9385 100644 (file)
@@ -14,6 +14,12 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \
           
 S = "${WORKDIR}/busybox-${PV}"
 
+python () {
+       # Don't build switchbox unless we're targeting an nslu2
+       if oe.data.getVar("MACHINE", d, 1) != "nslu2":
+               raise oe.parse.SkipPackage("switchbox only builds for the Linksys NSLU2")
+}
+
 LDFLAGS =+ "-static"
 
 export EXTRA_CFLAGS = "${CFLAGS}"