All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] arago-test: define system test packagegroup and image
@ 2013-07-01 16:30 Denys Dmytriyenko
  2013-07-01 16:30 ` [PATCH 2/2] arago-test-image: fixes for RAMDISK usage Denys Dmytriyenko
  2013-07-01 17:52 ` [PATCH 1/2] arago-test: define system test packagegroup and image Maupin, Chase
  0 siblings, 2 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2013-07-01 16:30 UTC (permalink / raw)
  To: meta-arago

From: Carlos Hernandez <ceh@ti.com>

Signed-off-by: Carlos Hernandez <ceh@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../recipes-core/images/arago-test-image.bb         | 21 +++++++++++++++++++++
 .../packagegroups/packagegroup-arago-test-addons.bb | 20 ++++++++++++++++++++
 2 files changed, 41 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..49e5a8d
--- /dev/null
+++ b/meta-arago-distro/recipes-core/images/arago-test-image.bb
@@ -0,0 +1,21 @@
+# Arago System Test image
+# gives you test applications
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
+
+require arago-image.inc
+
+COMPATIBLE_MACHINE = "omap3|dm365|omapl138|ti813x|ti814x|ti816x|omap4|ti33x"
+
+IMAGE_INSTALL += "\
+    packagegroup-arago-base \
+    packagegroup-arago-console \
+    packagegroup-arago-base-tisdk \
+    packagegroup-arago-tisdk-crypto \
+    packagegroup-arago-tisdk-multimedia \
+    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] 5+ messages in thread

* [PATCH 2/2] arago-test-image: fixes for RAMDISK usage
  2013-07-01 16:30 [PATCH 1/2] arago-test: define system test packagegroup and image Denys Dmytriyenko
@ 2013-07-01 16:30 ` Denys Dmytriyenko
  2013-07-01 17:52   ` Maupin, Chase
  2013-07-01 17:52 ` [PATCH 1/2] arago-test: define system test packagegroup and image Maupin, Chase
  1 sibling, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2013-07-01 16:30 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

* 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

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Cc: Carlos Hernandez <ceh@ti.com>
---
 meta-arago-distro/recipes-core/images/arago-test-image.bb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-core/images/arago-test-image.bb b/meta-arago-distro/recipes-core/images/arago-test-image.bb
index 49e5a8d..403041f 100644
--- a/meta-arago-distro/recipes-core/images/arago-test-image.bb
+++ b/meta-arago-distro/recipes-core/images/arago-test-image.bb
@@ -5,14 +5,13 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
 
 require arago-image.inc
 
-COMPATIBLE_MACHINE = "omap3|dm365|omapl138|ti813x|ti814x|ti816x|omap4|ti33x"
+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-multimedia \
     packagegroup-arago-tisdk-addons \
     packagegroup-arago-test \
     packagegroup-arago-test-addons \
-- 
1.8.2.1



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

* Re: [PATCH 1/2] arago-test: define system test packagegroup and image
  2013-07-01 16:30 [PATCH 1/2] arago-test: define system test packagegroup and image Denys Dmytriyenko
  2013-07-01 16:30 ` [PATCH 2/2] arago-test-image: fixes for RAMDISK usage Denys Dmytriyenko
@ 2013-07-01 17:52 ` Maupin, Chase
  1 sibling, 0 replies; 5+ messages in thread
From: Maupin, Chase @ 2013-07-01 17:52 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago@arago-project.org

>-----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 11:30 AM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 1/2] arago-test: define system test
>packagegroup and image
>
>From: Carlos Hernandez <ceh@ti.com>
>

Commit message would be nice for why this image exists.

>Signed-off-by: Carlos Hernandez <ceh@ti.com>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> .../recipes-core/images/arago-test-image.bb         | 21
>+++++++++++++++++++++
> .../packagegroups/packagegroup-arago-test-addons.bb | 20
>++++++++++++++++++++
> 2 files changed, 41 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..49e5a8d
>--- /dev/null
>+++ b/meta-arago-distro/recipes-core/images/arago-test-image.bb
>@@ -0,0 +1,21 @@
>+# Arago System Test image
>+# gives you test applications
>+LICENSE = "MIT"
>+LIC_FILES_CHKSUM =
>"file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
>+
>+require arago-image.inc
>+
>+COMPATIBLE_MACHINE =
>"omap3|dm365|omapl138|ti813x|ti814x|ti816x|omap4|ti33x"
>+
>+IMAGE_INSTALL += "\
>+    packagegroup-arago-base \
>+    packagegroup-arago-console \
>+    packagegroup-arago-base-tisdk \
>+    packagegroup-arago-tisdk-crypto \
>+    packagegroup-arago-tisdk-multimedia \
>+    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] 5+ messages in thread

* Re: [PATCH 2/2] arago-test-image: fixes for RAMDISK usage
  2013-07-01 16:30 ` [PATCH 2/2] arago-test-image: fixes for RAMDISK usage Denys Dmytriyenko
@ 2013-07-01 17:52   ` Maupin, Chase
  2013-07-01 18:55     ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Maupin, Chase @ 2013-07-01 17:52 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago@arago-project.org

>-----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 11:30 AM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 2/2] arago-test-image: fixes for
>RAMDISK usage
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>* 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
>

Why not squash this with the previous patch?

>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>Cc: Carlos Hernandez <ceh@ti.com>
>---
> meta-arago-distro/recipes-core/images/arago-test-image.bb | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
>diff --git a/meta-arago-distro/recipes-core/images/arago-test-
>image.bb b/meta-arago-distro/recipes-core/images/arago-test-
>image.bb
>index 49e5a8d..403041f 100644
>--- a/meta-arago-distro/recipes-core/images/arago-test-image.bb
>+++ b/meta-arago-distro/recipes-core/images/arago-test-image.bb
>@@ -5,14 +5,13 @@ LIC_FILES_CHKSUM =
>"file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
>
> require arago-image.inc
>
>-COMPATIBLE_MACHINE =
>"omap3|dm365|omapl138|ti813x|ti814x|ti816x|omap4|ti33x"
>+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-multimedia \
>     packagegroup-arago-tisdk-addons \
>     packagegroup-arago-test \
>     packagegroup-arago-test-addons \
>--
>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] 5+ messages in thread

* Re: [PATCH 2/2] arago-test-image: fixes for RAMDISK usage
  2013-07-01 17:52   ` Maupin, Chase
@ 2013-07-01 18:55     ` Denys Dmytriyenko
  0 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2013-07-01 18:55 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago@arago-project.org

On Mon, Jul 01, 2013 at 05:52:32PM +0000, Maupin, Chase wrote:
> >-----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 11:30 AM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 2/2] arago-test-image: fixes for
> >RAMDISK usage
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >* 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
> >
> 
> Why not squash this with the previous patch?

The first patch was from Carlos, so I didn't want to hack it up right away so 
he gets a proper credit... But I guess I can squash them and mention that in 
the commit message...


> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >Cc: Carlos Hernandez <ceh@ti.com>
> >---
> > meta-arago-distro/recipes-core/images/arago-test-image.bb | 3 +--
> > 1 file changed, 1 insertion(+), 2 deletions(-)
> >
> >diff --git a/meta-arago-distro/recipes-core/images/arago-test-
> >image.bb b/meta-arago-distro/recipes-core/images/arago-test-
> >image.bb
> >index 49e5a8d..403041f 100644
> >--- a/meta-arago-distro/recipes-core/images/arago-test-image.bb
> >+++ b/meta-arago-distro/recipes-core/images/arago-test-image.bb
> >@@ -5,14 +5,13 @@ LIC_FILES_CHKSUM =
> >"file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
> >
> > require arago-image.inc
> >
> >-COMPATIBLE_MACHINE =
> >"omap3|dm365|omapl138|ti813x|ti814x|ti816x|omap4|ti33x"
> >+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-multimedia \
> >     packagegroup-arago-tisdk-addons \
> >     packagegroup-arago-test \
> >     packagegroup-arago-test-addons \
> >--
> >1.8.2.1
> >
> >_______________________________________________
> >meta-arago mailing list
> >meta-arago@arago-project.org
> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-01 16:30 [PATCH 1/2] arago-test: define system test packagegroup and image Denys Dmytriyenko
2013-07-01 16:30 ` [PATCH 2/2] arago-test-image: fixes for RAMDISK usage Denys Dmytriyenko
2013-07-01 17:52   ` Maupin, Chase
2013-07-01 18:55     ` Denys Dmytriyenko
2013-07-01 17:52 ` [PATCH 1/2] arago-test: define system test packagegroup and image 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.