diff options
-rw-r--r-- | packages/meta/nylon-feed.bb | 2 | ||||
-rw-r--r-- | packages/meta/nylon-image-base.bb | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/packages/meta/nylon-feed.bb b/packages/meta/nylon-feed.bb index a0fd32f408..2fa45b1292 100644 --- a/packages/meta/nylon-feed.bb +++ b/packages/meta/nylon-feed.bb @@ -40,7 +40,7 @@ maradns \ mc \ mobilemesh \ modutils \ -mtd \ +mtd-utils \ mtr \ nano \ ncurses \ diff --git a/packages/meta/nylon-image-base.bb b/packages/meta/nylon-image-base.bb index e69de29bb2..742ce0db74 100644 --- a/packages/meta/nylon-image-base.bb +++ b/packages/meta/nylon-image-base.bb @@ -0,0 +1,23 @@ +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 \ + ${NYLON_BASE} ${BOOTSTRAP_EXTRA_DEPENDS}" + +RDEPENDS = "kernel modutils-depmod modutils-modinfo \ + ${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 |