blob: af5a2dabbd589dafa5ada5e0e947f3649c06ca4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DEFAULT_PREFERENCE_unslung = "-1"
DESCRIPTION = "Linksys NSLU2 Stock Firmware Ramdisk."
PACKAGE_ARCH = "nslu2"
SECTION = "base"
PRIORITY = "required"
PR = "r0"
SRC_URI = "http://www.you-need-to-create-this-yourself.com/nslu2-linksys-ramdisk-2.3r63.tar.bz2"
do_install () {
( cd ${S} ; tar cvf - . ) | ( cd ${D} ; tar xvf - )
}
PACKAGES = "${PN}"
FILES_${PN} = "/"
python () {
# Don't build unless we're targeting an nslu2
if bb.data.getVar("MACHINE", d, 1) != "nslu2":
raise bb.parse.SkipPackage("NSLU2 ramdisk only builds for the Linksys NSLU2")
}
|