diff options
author | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-05-12 18:40:19 +0000 |
---|---|---|
committer | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-05-12 18:40:19 +0000 |
commit | 0b3bd5340a4c764267075732e55a95df1b5c4adc (patch) | |
tree | c4532ba36467ec35ca06a1d0e06492c8bd6a44db | |
parent | ac7b48a031649c6926ba36adb7878aa1f329dadb (diff) |
packages/images/minimal-image.bb : Add a minimal-image that contains only the nessesary progs to boot
and an ssh daemon for systems with limited flash resources
-rw-r--r-- | packages/images/minimal-image.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/images/minimal-image.bb b/packages/images/minimal-image.bb new file mode 100644 index 0000000000..235cdbcdcf --- /dev/null +++ b/packages/images/minimal-image.bb @@ -0,0 +1,22 @@ +#Create a minimal image for devices with little flash +#gives you a small images with ssh access +LICENSE = "MIT" +PR = "r0" + +ANGSTROM_EXTRA_INSTALL ?= "" +DISTRO_SSH_DAEMON ?= "dropbear" + +DEPENDS = "task-base \ + ${DISTRO_SSH_DAEMON} \ + " + +RDEPENDS = "task-boot \ + ${DISTRO_SSH_DAEMON} \ + " + +export IMAGE_BASENAME = "minimal-image" +export IMAGE_LINGUAS = "" +export PACKAGE_INSTALL = "${RDEPENDS}" + +inherit image + |