All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arago-test: define system test packagegroup and image
@ 2013-07-01 19:00 Denys Dmytriyenko
  2013-07-01 20:02 ` Maupin, Chase
  0 siblings, 1 reply; 2+ messages in thread
From: Denys Dmytriyenko @ 2013-07-01 19:00 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

This is based on the original patch from Carlos Hernandez with following mods:
* Build tar.gz and ext2.gz - good for RAMDISK/SD/NFS
* Relax compatibility list to be generic
* Remove large multimedia packagegroup to better fit into RAM

Cc: Carlos Hernandez <ceh@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../recipes-core/images/arago-test-image.bb          | 20 ++++++++++++++++++++
 .../packagegroups/packagegroup-arago-test-addons.bb  | 20 ++++++++++++++++++++
 2 files changed, 40 insertions(+)
 create mode 100644 meta-arago-distro/recipes-core/images/arago-test-image.bb
 create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test-addons.bb

diff --git a/meta-arago-distro/recipes-core/images/arago-test-image.bb b/meta-arago-distro/recipes-core/images/arago-test-image.bb
new file mode 100644
index 0000000..403041f
--- /dev/null
+++ b/meta-arago-distro/recipes-core/images/arago-test-image.bb
@@ -0,0 +1,20 @@
+# Arago System Test image
+# gives you test applications
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
+
+require arago-image.inc
+
+IMAGE_FSTYPES = "tar.gz ext2.gz"
+
+IMAGE_INSTALL += "\
+    packagegroup-arago-base \
+    packagegroup-arago-console \
+    packagegroup-arago-base-tisdk \
+    packagegroup-arago-tisdk-crypto \
+    packagegroup-arago-tisdk-addons \
+    packagegroup-arago-test \
+    packagegroup-arago-test-addons \
+    "
+
+export IMAGE_BASENAME = "arago-test-image"
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test-addons.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test-addons.bb
new file mode 100644
index 0000000..3f44133
--- /dev/null
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test-addons.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "Task to install additional utilities/demos for test image"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+PR = "r0"
+
+ALLOW_EMPTY = "1"
+
+inherit packagegroup
+
+TEST_ADDONS = " \
+    bridge-utils \
+    "
+
+TEST_ADDONS_TI = " \
+    "
+
+RDEPENDS_${PN} = "\
+    ${TEST_ADDONS} \
+    ${TEST_ADDONS_TI} \
+    "
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] arago-test: define system test packagegroup and image
  2013-07-01 19:00 [PATCH] arago-test: define system test packagegroup and image Denys Dmytriyenko
@ 2013-07-01 20:02 ` Maupin, Chase
  0 siblings, 0 replies; 2+ messages in thread
From: Maupin, Chase @ 2013-07-01 20:02 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Acked-by:Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Monday, July 01, 2013 2:00 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH] arago-test: define system test
>packagegroup and image
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>This is based on the original patch from Carlos Hernandez with
>following mods:
>* Build tar.gz and ext2.gz - good for RAMDISK/SD/NFS
>* Relax compatibility list to be generic
>* Remove large multimedia packagegroup to better fit into RAM
>
>Cc: Carlos Hernandez <ceh@ti.com>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> .../recipes-core/images/arago-test-image.bb          | 20
>++++++++++++++++++++
> .../packagegroups/packagegroup-arago-test-addons.bb  | 20
>++++++++++++++++++++
> 2 files changed, 40 insertions(+)
> create mode 100644 meta-arago-distro/recipes-core/images/arago-
>test-image.bb
> create mode 100644 meta-arago-distro/recipes-
>core/packagegroups/packagegroup-arago-test-addons.bb
>
>diff --git a/meta-arago-distro/recipes-core/images/arago-test-
>image.bb b/meta-arago-distro/recipes-core/images/arago-test-
>image.bb
>new file mode 100644
>index 0000000..403041f
>--- /dev/null
>+++ b/meta-arago-distro/recipes-core/images/arago-test-image.bb
>@@ -0,0 +1,20 @@
>+# Arago System Test image
>+# gives you test applications
>+LICENSE = "MIT"
>+LIC_FILES_CHKSUM =
>"file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
>+
>+require arago-image.inc
>+
>+IMAGE_FSTYPES = "tar.gz ext2.gz"
>+
>+IMAGE_INSTALL += "\
>+    packagegroup-arago-base \
>+    packagegroup-arago-console \
>+    packagegroup-arago-base-tisdk \
>+    packagegroup-arago-tisdk-crypto \
>+    packagegroup-arago-tisdk-addons \
>+    packagegroup-arago-test \
>+    packagegroup-arago-test-addons \
>+    "
>+
>+export IMAGE_BASENAME = "arago-test-image"
>diff --git a/meta-arago-distro/recipes-
>core/packagegroups/packagegroup-arago-test-addons.bb b/meta-arago-
>distro/recipes-core/packagegroups/packagegroup-arago-test-
>addons.bb
>new file mode 100644
>index 0000000..3f44133
>--- /dev/null
>+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-
>arago-test-addons.bb
>@@ -0,0 +1,20 @@
>+DESCRIPTION = "Task to install additional utilities/demos for
>test image"
>+LICENSE = "MIT"
>+LIC_FILES_CHKSUM =
>"file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4
>de20420"
>+PR = "r0"
>+
>+ALLOW_EMPTY = "1"
>+
>+inherit packagegroup
>+
>+TEST_ADDONS = " \
>+    bridge-utils \
>+    "
>+
>+TEST_ADDONS_TI = " \
>+    "
>+
>+RDEPENDS_${PN} = "\
>+    ${TEST_ADDONS} \
>+    ${TEST_ADDONS_TI} \
>+    "
>--
>1.8.2.1
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-07-01 20:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-01 19:00 [PATCH] arago-test: define system test packagegroup and image Denys Dmytriyenko
2013-07-01 20:02 ` Maupin, Chase

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.