All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] packagegroups: Add new packagegroup for glsdk console
@ 2013-07-01 15:47 Siddharth Heroor
  2013-07-01 16:09 ` Denys Dmytriyenko
  0 siblings, 1 reply; 2+ messages in thread
From: Siddharth Heroor @ 2013-07-01 15:47 UTC (permalink / raw)
  To: meta-arago

* GLSDK supports a virtual console using KMS and GBM. This
  packagegroup builds on top of the arago-console packagegroup.
* For OMAP5, we append ABE firmware.
* KMSCube is used as demonstration application

Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
Signed-off-by: Siddharth Heroor <heroor@ti.com>
---
 .../packagegroup-arago-glsdk-console.bb            |   35 ++++++++++++++++++++
 1 files changed, 35 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb
new file mode 100644
index 0000000..da16db7
--- /dev/null
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb
@@ -0,0 +1,35 @@
+DESCRIPTION = "Extended task to get more basic and console apps in GLSDK"
+LICENSE = "MIT"
+PR = "r1"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+inherit packagegroup
+
+ARAGO_GLSDK_CONSOLE = "\
+    libdrm \
+    libdrm-kms \
+    libgbm-glsdk \
+    cairo \
+    pixman \
+    expat \
+    omap5-sgx-ddk-um-linux \
+    omapdrm-pvr \
+    "
+
+ARAGO_GLSDK_CONSOLE_append_omap5-evm = "\
+    abefw \
+    "
+
+ARAGO_GLSDK_CONSOLE_DEMOS = "\
+    kmscube \
+    "
+
+RDEPENDS_${PN} = "\
+    ${ARAGO_GLSDK_CONSOLE} \
+    ${ARAGO_GLSDK_CONSOLE_DEMOS} \
+    "
+
+RRECOMMENDS_${PN} = "\
+    kernel-modules \
+    "
-- 
1.7.0.4



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

* Re: [PATCH 1/2] packagegroups: Add new packagegroup for glsdk console
  2013-07-01 15:47 [PATCH 1/2] packagegroups: Add new packagegroup for glsdk console Siddharth Heroor
@ 2013-07-01 16:09 ` Denys Dmytriyenko
  0 siblings, 0 replies; 2+ messages in thread
From: Denys Dmytriyenko @ 2013-07-01 16:09 UTC (permalink / raw)
  To: Siddharth Heroor; +Cc: meta-arago

On Mon, Jul 01, 2013 at 09:17:57PM +0530, Siddharth Heroor wrote:
> * GLSDK supports a virtual console using KMS and GBM. This
>   packagegroup builds on top of the arago-console packagegroup.
> * For OMAP5, we append ABE firmware.
> * KMSCube is used as demonstration application

So, what machines do you have in GLSDK? I thought those were all omap-a15 ones 
(omap5-evm and dra7xx-evm).

Can we just make those as machine-overrides in original packagegroup and image 
recipes instead of creating new ones? Is there a use-case to have both 
versions of console packagegroup/image - one with KMS/GBM and one w/o?


> Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
> Signed-off-by: Siddharth Heroor <heroor@ti.com>
> ---
>  .../packagegroup-arago-glsdk-console.bb            |   35 ++++++++++++++++++++
>  1 files changed, 35 insertions(+), 0 deletions(-)
>  create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb
> new file mode 100644
> index 0000000..da16db7
> --- /dev/null
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-glsdk-console.bb
> @@ -0,0 +1,35 @@
> +DESCRIPTION = "Extended task to get more basic and console apps in GLSDK"
> +LICENSE = "MIT"
> +PR = "r1"
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +inherit packagegroup
> +
> +ARAGO_GLSDK_CONSOLE = "\
> +    libdrm \
> +    libdrm-kms \
> +    libgbm-glsdk \
> +    cairo \
> +    pixman \
> +    expat \
> +    omap5-sgx-ddk-um-linux \
> +    omapdrm-pvr \
> +    "
> +
> +ARAGO_GLSDK_CONSOLE_append_omap5-evm = "\
> +    abefw \
> +    "
> +
> +ARAGO_GLSDK_CONSOLE_DEMOS = "\
> +    kmscube \
> +    "
> +
> +RDEPENDS_${PN} = "\
> +    ${ARAGO_GLSDK_CONSOLE} \
> +    ${ARAGO_GLSDK_CONSOLE_DEMOS} \
> +    "
> +
> +RRECOMMENDS_${PN} = "\
> +    kernel-modules \
> +    "
> -- 
> 1.7.0.4
> 
> _______________________________________________
> 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 16:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-01 15:47 [PATCH 1/2] packagegroups: Add new packagegroup for glsdk console Siddharth Heroor
2013-07-01 16:09 ` Denys Dmytriyenko

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.