From 492457a85abbd41d7a37efe76108ecde3c72d307 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Fri, 3 Dec 2004 19:51:24 +0000 Subject: Don't build switchbox and slingbox unless you're targeting an NSLU2. BKrev: 41b0c3bcHWKv3tvxOM48uMvcxtkj-w --- busybox/slingbox_1.00.oe | 45 +++++++++++++++++++++++++++++++++++++++++++++ busybox/switchbox_1.00.oe | 6 ++++++ 2 files changed, 51 insertions(+) (limited to 'busybox') diff --git a/busybox/slingbox_1.00.oe b/busybox/slingbox_1.00.oe index e69de29bb2..20f85813c1 100644 --- a/busybox/slingbox_1.00.oe +++ b/busybox/slingbox_1.00.oe @@ -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 +} diff --git a/busybox/switchbox_1.00.oe b/busybox/switchbox_1.00.oe index 42b82d8a9d..e2d9385d44 100644 --- a/busybox/switchbox_1.00.oe +++ b/busybox/switchbox_1.00.oe @@ -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}" -- cgit v1.2.3