aboutsummaryrefslogtreecommitdiffstats
path: root/packages/meta/openslug-image.bb
blob: c9da288034b5d55336a54ba6c73585af9d5cc642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
PR = "r7"

IMAGE_BASENAME = "openslug"

IMAGE_LINGUAS = ""
USE_DEVFS = "1"

OPENSLUG_HIDDEN_PACKAGES = "ipkg-native ipkg-utils-native fakeroot-native ${PATCH_DEPENDS} virtual/armeb-linux-uclibc-gcc \
	virtual/libc makedevs-native mtd-utils-native slugimage-native nslu2-linksys-firmware nslu2-switchbox-firmware "

DEPENDS = "virtual/kernel base-files base-passwd-3.5.9 \
        busybox dropbear hotplug-ng initscripts netbase \
        sysvinit tinylogin lrzsz portmap \
        ixp4xx-csr ixp425-eth openslug-init \
	module-init-tools modutils-initscripts \
        ipkg-collateral ipkg ipkg-link diffutils \
	cpio findutils e2fsprogs mtd-utils \
        ${OPENSLUG_EXTRA_DEPENDS}"

IPKG_INSTALL = "base-files base-passwd \
        busybox dropbear hotplug-ng initscripts netbase \
        update-modules sysvinit tinylogin lrzsz portmap \
        ixp4xx-csr ixp425-eth openslug-init \
	module-init-tools modutils-initscripts \
        ipkg-collateral ipkg ipkg-link diffutils \
	cpio findutils e2fsprogs-mke2fs \
	e2fsprogs-fsck e2fsprogs-e2fsck \
	kernel-module-nfs kernel-module-sunrpc kernel-module-lockd  \
        ${OPENSLUG_EXTRA_INSTALL}"

inherit image_ipk

python () {
	# Don't build openslug images unless we're targeting an nslu2
	mach = bb.data.getVar("MACHINE", d, 1)
	dist = bb.data.getVar("DISTRO", d, 1)
	if mach != 'nslu2' or dist != 'openslug':
		raise bb.parse.SkipPackage("OpenSlug only builds for the Linksys NSLU2")
}
LICENSE = MIT