summaryrefslogtreecommitdiff
path: root/packages/nslu2-binary-only/nslu2-switchbox-firmware.bb
blob: 0ed74e207a39eafef6004ea31e51d5090acdeab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SECTION = "base"
DEPENDS = ""
PACKAGES = ""
INHIBIT_DEFAULT_DEPS = "1"
PR = "r15"

SRC_URI = "http://nslu.sf.net/downloads/switchbox-4.7.tar.gz"
S = "${WORKDIR}"

python () {
	# Don't build switchbox firmware unless we're targeting an nslu2
	mach = bb.data.getVar("MACHINE", d, 1)
	if mach != 'nslu2':
		raise bb.parse.SkipPackage("Switchbox is only relevant for the Linksys NSLU2")
}

do_compile () {
	install -d ${STAGING_LIBDIR}/nslu2-binaries
	install -m 0755 switchbox.ext2.gz ${STAGING_LIBDIR}/nslu2-binaries/switchbox.ext2.gz
}