All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] packagegroup-arago-tisdk-graphics-sdk-host: Add omapdrm-pvr-src for omap-a15
@ 2015-09-10 16:02 Jacob Stiffler
  2015-09-10 16:02 ` [PATCH 2/2] ti-tisdk-makefile: Add omapdrm-pvr makefile fragment Jacob Stiffler
  0 siblings, 1 reply; 3+ messages in thread
From: Jacob Stiffler @ 2015-09-10 16:02 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-graphics-sdk-host.bb        | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-host.bb
index b601495..2dae8ba 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-host.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-host.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install graphics sources in SDK"
 LICENSE = "MIT"
-PR = "r3"
+PR = "r4"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -10,6 +10,7 @@ GRAPHICS_RDEPENDS = ""
 
 GRAPHICS_RDEPENDS_append_ti33x = " omapdrm-pvr-src"
 GRAPHICS_RDEPENDS_append_ti43x = " omapdrm-pvr-src"
+GRAPHICS_RDEPENDS_append_omap-a15 = " omapdrm-pvr-src"
 
 RDEPENDS_${PN} = "\
     ${GRAPHICS_RDEPENDS} \
-- 
1.9.1



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

* [PATCH 2/2] ti-tisdk-makefile: Add omapdrm-pvr makefile fragment
  2015-09-10 16:02 [PATCH 1/2] packagegroup-arago-tisdk-graphics-sdk-host: Add omapdrm-pvr-src for omap-a15 Jacob Stiffler
@ 2015-09-10 16:02 ` Jacob Stiffler
  2015-09-10 16:03   ` Jacob Stiffler
  0 siblings, 1 reply; 3+ messages in thread
From: Jacob Stiffler @ 2015-09-10 16:02 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../ti-tisdk-makefile/Makefile_omapdrm-pvr         | 26 ++++++++++++++++++++++
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |  6 ++++-
 2 files changed, 31 insertions(+), 1 deletion(-)
 create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr
new file mode 100644
index 0000000..80699ef
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr
@@ -0,0 +1,26 @@
+# omapdrm-pvr module
+omapdrm-pvr: linux
+	@echo ================================
+	@echo      Building omapdrm-pvr
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "omapdrm-pvr*" -type d`; \
+	make -C ./eurasia_km/eurasiacon/build/linux2/omap5430_linux ARCH=arm KERNELDIR=$(LINUXKERNEL_INSTALL_DIR)
+
+omapdrm-pvr_clean:
+	@echo ================================
+	@echo      Cleaning omapdrm-pvr
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "omapdrm-pvr*" -type d`; \
+	make -C ./eurasia_km/eurasiacon/build/linux2/omap5430_linux ARCH=arm KERNELDIR=$(LINUXKERNEL_INSTALL_DIR) clean
+
+omapdrm-pvr_install:
+	@echo ================================
+	@echo      Installing omapdrm-pvr
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "omapdrm-pvr*" -type d`; \
+	cd ./eurasia_km/eurasiacon/binary2_omap5430_linux_release/target/kbuild; \
+	make -C $(LINUXKERNEL_INSTALL_DIR) SUBDIRS=`pwd` INSTALL_MOD_PATH=$(DESTDIR) PREFIX=$(SDK_PATH_TARGET) modules_install
+
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index 8eafcc1..4ac02b3 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -38,9 +38,10 @@ SRC_URI = "\
     file://Makefile_cmem-mod \
     file://Makefile_debugss-module-drv \
     file://Makefile_gdbserverproxy-module-drv \
+    file://Makefile_omapdrm-pvr \
 "
 
-PR = "r49"
+PR = "r50"
 
 MAKEFILES_COMMON = "linux \
                     matrix-gui \
@@ -74,6 +75,7 @@ MAKEFILES_append_ti33x = " u-boot-spl \
                            wireless \
                            cryptodev \
                            sgx-modules \
+                           omapdrm-pvr \
 "
 MAKEFILES_append_ti43x = " u-boot-spl \
                            ${QUICK_PLAYGROUND} \
@@ -84,6 +86,7 @@ MAKEFILES_append_ti43x = " u-boot-spl \
                            sgx-modules \
                            dual-camera-demo \
                            image-gallery \
+                           omapdrm-pvr \
 "
 
 MAKEFILES_append_dra7xx = " cryptodev \
@@ -96,6 +99,7 @@ MAKEFILES_append_omap-a15 = " u-boot-spl \
                               omapconf \
                               linux-dtbs \
                               cmem-mod \
+                              omapdrm-pvr \
 "
 MAKEFILES_append_am180x-evm = " pru \
                                 u-boot-legacy \
-- 
1.9.1



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

* Re: [PATCH 2/2] ti-tisdk-makefile: Add omapdrm-pvr makefile fragment
  2015-09-10 16:02 ` [PATCH 2/2] ti-tisdk-makefile: Add omapdrm-pvr makefile fragment Jacob Stiffler
@ 2015-09-10 16:03   ` Jacob Stiffler
  0 siblings, 0 replies; 3+ messages in thread
From: Jacob Stiffler @ 2015-09-10 16:03 UTC (permalink / raw)
  To: meta-arago

Disregard this for now. This will need some enhancements as this will 
only compile for omap-a15.

On 9/10/2015 12:02 PM, Jacob Stiffler wrote:
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
>   .../ti-tisdk-makefile/Makefile_omapdrm-pvr         | 26 ++++++++++++++++++++++
>   .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |  6 ++++-
>   2 files changed, 31 insertions(+), 1 deletion(-)
>   create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr
>
> diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr
> new file mode 100644
> index 0000000..80699ef
> --- /dev/null
> +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapdrm-pvr
> @@ -0,0 +1,26 @@
> +# omapdrm-pvr module
> +omapdrm-pvr: linux
> +	@echo ================================
> +	@echo      Building omapdrm-pvr
> +	@echo ================================
> +	@cd board-support/extra-drivers; \
> +	cd `find . -maxdepth 1 -name "omapdrm-pvr*" -type d`; \
> +	make -C ./eurasia_km/eurasiacon/build/linux2/omap5430_linux ARCH=arm KERNELDIR=$(LINUXKERNEL_INSTALL_DIR)
> +
> +omapdrm-pvr_clean:
> +	@echo ================================
> +	@echo      Cleaning omapdrm-pvr
> +	@echo ================================
> +	@cd board-support/extra-drivers; \
> +	cd `find . -maxdepth 1 -name "omapdrm-pvr*" -type d`; \
> +	make -C ./eurasia_km/eurasiacon/build/linux2/omap5430_linux ARCH=arm KERNELDIR=$(LINUXKERNEL_INSTALL_DIR) clean
> +
> +omapdrm-pvr_install:
> +	@echo ================================
> +	@echo      Installing omapdrm-pvr
> +	@echo ================================
> +	@cd board-support/extra-drivers; \
> +	cd `find . -maxdepth 1 -name "omapdrm-pvr*" -type d`; \
> +	cd ./eurasia_km/eurasiacon/binary2_omap5430_linux_release/target/kbuild; \
> +	make -C $(LINUXKERNEL_INSTALL_DIR) SUBDIRS=`pwd` INSTALL_MOD_PATH=$(DESTDIR) PREFIX=$(SDK_PATH_TARGET) modules_install
> +
> diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
> index 8eafcc1..4ac02b3 100644
> --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
> +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
> @@ -38,9 +38,10 @@ SRC_URI = "\
>       file://Makefile_cmem-mod \
>       file://Makefile_debugss-module-drv \
>       file://Makefile_gdbserverproxy-module-drv \
> +    file://Makefile_omapdrm-pvr \
>   "
>   
> -PR = "r49"
> +PR = "r50"
>   
>   MAKEFILES_COMMON = "linux \
>                       matrix-gui \
> @@ -74,6 +75,7 @@ MAKEFILES_append_ti33x = " u-boot-spl \
>                              wireless \
>                              cryptodev \
>                              sgx-modules \
> +                           omapdrm-pvr \
>   "
>   MAKEFILES_append_ti43x = " u-boot-spl \
>                              ${QUICK_PLAYGROUND} \
> @@ -84,6 +86,7 @@ MAKEFILES_append_ti43x = " u-boot-spl \
>                              sgx-modules \
>                              dual-camera-demo \
>                              image-gallery \
> +                           omapdrm-pvr \
>   "
>   
>   MAKEFILES_append_dra7xx = " cryptodev \
> @@ -96,6 +99,7 @@ MAKEFILES_append_omap-a15 = " u-boot-spl \
>                                 omapconf \
>                                 linux-dtbs \
>                                 cmem-mod \
> +                              omapdrm-pvr \
>   "
>   MAKEFILES_append_am180x-evm = " pru \
>                                   u-boot-legacy \



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

end of thread, other threads:[~2015-09-10 16:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-10 16:02 [PATCH 1/2] packagegroup-arago-tisdk-graphics-sdk-host: Add omapdrm-pvr-src for omap-a15 Jacob Stiffler
2015-09-10 16:02 ` [PATCH 2/2] ti-tisdk-makefile: Add omapdrm-pvr makefile fragment Jacob Stiffler
2015-09-10 16:03   ` Jacob Stiffler

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.