All of lore.kernel.org
 help / color / mirror / Atom feed
* [morty/krogoth][PATCH 1/2] packagegroup-*-graphics: complete gc320 integration
@ 2017-02-01 19:45 Jacob Stiffler
  2017-02-01 19:45 ` [morty/krogoth][PATCH 2/2] ti-tisdk-makefile: add gc320 driver makefile fragment Jacob Stiffler
  0 siblings, 1 reply; 2+ messages in thread
From: Jacob Stiffler @ 2017-02-01 19:45 UTC (permalink / raw)
  To: meta-arago

* add to libs to devkit and driver sources to SDK

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-graphics-sdk-host.bb     | 6 +++++-
 .../packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb   | 6 +++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

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 b987947..d2dce0d 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,11 +1,15 @@
 DESCRIPTION = "Task to install graphics sources in SDK"
 LICENSE = "MIT"
-PR = "r5"
+PR = "r6"
 
 inherit packagegroup
 
 GRAPHICS_RDEPENDS = "ti-sgx-ddk-km-src"
 
+GRAPHICS_RDEPENDS_append_omap-a15 = "\
+    ti-gc320-driver-src \
+"
+
 RDEPENDS_${PN} = "\
     ${GRAPHICS_RDEPENDS} \
 "
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb
index 484baab..573601b 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install graphics binaries on sdk target"
 LICENSE = "MIT"
-PR = "r7"
+PR = "r8"
 
 inherit packagegroup
 
@@ -9,6 +9,10 @@ GRAPHICS_RDEPENDS = "\
     ti-sgx-ddk-um-dev \
     "
 
+GRAPHICS_RDEPENDS_append_omap-a15 = "\
+    ti-gc320-libs-dev \
+"
+
 RDEPENDS_${PN} = "\
     ${GRAPHICS_RDEPENDS} \
 "
-- 
2.7.4



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

* [morty/krogoth][PATCH 2/2] ti-tisdk-makefile: add gc320 driver makefile fragment
  2017-02-01 19:45 [morty/krogoth][PATCH 1/2] packagegroup-*-graphics: complete gc320 integration Jacob Stiffler
@ 2017-02-01 19:45 ` Jacob Stiffler
  0 siblings, 0 replies; 2+ messages in thread
From: Jacob Stiffler @ 2017-02-01 19:45 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../ti-tisdk-makefile/Makefile_ti-gc320-driver     | 25 ++++++++++++++++++++++
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |  4 +++-
 2 files changed, 28 insertions(+), 1 deletion(-)
 create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-gc320-driver

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-gc320-driver b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-gc320-driver
new file mode 100644
index 0000000..d72d1c0
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-gc320-driver
@@ -0,0 +1,25 @@
+# ti-gc320-driver module
+ti-gc320-driver: linux
+	@echo ================================
+	@echo      Building ti-gc320-driver
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "ti-gc320-driver*" -type d`; \
+	make -f Kbuild AQROOT=`pwd` KERNEL_DIR=${LINUXKERNEL_INSTALL_DIR} ARCH_TYPE=arm
+
+ti-gc320-driver_clean:
+	@echo ================================
+	@echo      Cleaning ti-gc320-driver
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "ti-gc320-driver*" -type d`; \
+	make -f Kbuild AQROOT=`pwd` KERNEL_DIR=${LINUXKERNEL_INSTALL_DIR} ARCH_TYPE=arm clean
+
+ti-gc320-driver_install:
+	@echo ================================
+	@echo      Installing ti-gc320-driver
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "ti-gc320-driver*" -type d`; \
+	make -C $(LINUXKERNEL_INSTALL_DIR) SUBDIRS=`pwd` INSTALL_MOD_PATH=$(DESTDIR) PREFIX=$(SDK_PATH_TARGET) INSTALL_MOD_STRIP=$(INSTALL_MOD_STRIP) 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 202078c..25cde69 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
@@ -46,9 +46,10 @@ SRC_URI = "\
     file://Makefile_ipsecmgr-mod \
     file://Makefile_openmpacc-examples \
     file://Makefile_linalg-examples \
+    file://Makefile_ti-gc320-driver \
 "
 
-PR = "r75"
+PR = "r76"
 
 MAKEFILES_MATRIX_GUI = "matrix-gui-browser \
                         refresh-screen \
@@ -114,6 +115,7 @@ MAKEFILES_append_omap-a15 = " u-boot-spl \
                               ti-sgx-ddk-km \
                               cmem-mod \
                               pru-icss \
+                              ti-gc320-driver \
 "
 MAKEFILES_append_am180x-evm = " pru \
                                 u-boot-legacy \
-- 
2.7.4



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

end of thread, other threads:[~2017-02-01 19:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-01 19:45 [morty/krogoth][PATCH 1/2] packagegroup-*-graphics: complete gc320 integration Jacob Stiffler
2017-02-01 19:45 ` [morty/krogoth][PATCH 2/2] ti-tisdk-makefile: add gc320 driver makefile fragment 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.