blob: 4e7711e6c79595abbbc4e02b22a5671af9a78439 (
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
|
inherit image_ipk nylon-image
LICENSE = MIT
export IMAGE_BASENAME = "nylon-base"
NYLON_BASE = "base-files base-passwd bash busybox \
ipkg initscripts less \
modutils modutils-initscripts mtd-utils \
nano ncurses netbase \
openssh sysvinit \
timezones tinylogin"
DEPENDS += "virtual/kernel less nano"
RDEPENDS = "kernel modutils-depmod modutils-modinfo less nano \
${NYLON_BASE} ${BOOTSTRAP_EXTRA_RDEPENDS}"
export IPKG_INSTALL = "${RDEPENDS}"
IMAGE_LINGUAS = ""
# we dont need the kernel in the image
ROOTFS_POSTPROCESS_COMMAND = "rm -f ${IMAGE_ROOTFS}/tmp/zImage*"
inherit image_ipk nylon-image
|