All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] matrix-gui-apps-git: Bump SRCREV for openssl_perf fix
@ 2015-11-16 15:38 Jacob Stiffler
  2015-11-16 15:38 ` [PATCH 2/2] matrix-gui-crypto-demos: Remove openssl_perf patch Jacob Stiffler
  0 siblings, 1 reply; 2+ messages in thread
From: Jacob Stiffler @ 2015-11-16 15:38 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
index 32fdf86..94766a9 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
@@ -4,9 +4,9 @@ LICENSE_CHECKSUM = "LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9"
 LIC_FILES_CHKSUM := "file://../${LICENSE_CHECKSUM}"
 
 SRC_URI = "git://git.ti.com/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=git;branch=${BRANCH}"
-SRCREV = "216a6f092ce9e15965faf61fa17f94c9ca57d108"
+SRCREV = "02d7a2b8d9aaf4be19d6c20936161ce6ced63215"
 BRANCH = "master"
-INC_PR = "r38"
+INC_PR = "r39"
 
 # Pull in the base package for installing matrix applications
 require matrix-gui-apps.inc
-- 
1.9.1



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

* [PATCH 2/2] matrix-gui-crypto-demos: Remove openssl_perf patch
  2015-11-16 15:38 [PATCH 1/2] matrix-gui-apps-git: Bump SRCREV for openssl_perf fix Jacob Stiffler
@ 2015-11-16 15:38 ` Jacob Stiffler
  0 siblings, 0 replies; 2+ messages in thread
From: Jacob Stiffler @ 2015-11-16 15:38 UTC (permalink / raw)
  To: meta-arago

* The patch has been upstreamed

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 ...penssl_perf.sh-remove-module-manipulation.patch | 107 ---------------------
 .../matrix/matrix-gui-crypto-demos_2.0.bb          |   4 +-
 2 files changed, 1 insertion(+), 110 deletions(-)
 delete mode 100644 meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos/0001-openssl_perf.sh-remove-module-manipulation.patch

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos/0001-openssl_perf.sh-remove-module-manipulation.patch b/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos/0001-openssl_perf.sh-remove-module-manipulation.patch
deleted file mode 100644
index f538a86..0000000
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos/0001-openssl_perf.sh-remove-module-manipulation.patch
+++ /dev/null
@@ -1,107 +0,0 @@
-From 04607c9d12330f72e96733582734155cb1a32a37 Mon Sep 17 00:00:00 2001
-From: Denys Dmytriyenko <denys@ti.com>
-Date: Tue, 17 Dec 2013 19:43:16 -0500
-Subject: [PATCH] openssl_perf.sh: remove module manipulation
-
-Signed-off-by: Denys Dmytriyenko <denys@ti.com>
----
- .../openssl_perf_scripts/openssl_perf.sh           | 71 ----------------------
- 1 file changed, 71 deletions(-)
-
-diff --git a/cryptos_apps_program/openssl_perf_scripts/openssl_perf.sh b/cryptos_apps_program/openssl_perf_scripts/openssl_perf.sh
-index 9da9ae2..1334274 100644
---- a/cryptos_apps_program/openssl_perf_scripts/openssl_perf.sh
-+++ b/cryptos_apps_program/openssl_perf_scripts/openssl_perf.sh
-@@ -1,13 +1,7 @@
- #!/bin/sh
- 
--
--CRYPTOMOD=/lib/modules/2.6.37/kernel/crypto/ocf/cryptodev.ko
--OCFMOD=/lib/modules/2.6.37/crypto/ocf/ocf_omap3_cryptok.ko
--
--
- OPENSSL=/usr/bin/openssl
- 
--
- cat /proc/cpuinfo | grep OMAP3 > /dev/null 2> /dev/null
- if [ `echo $?` = "0" ]
- then
-@@ -16,69 +10,6 @@ else
- 	export CPU=other
- fi
- 
--
--
--
--if [ $CPU = "OMAP3" ]
--then
--ls -l /dev/crypto > /dev/null 2> /dev/null
--if [ `echo $?` = "1" ]
--then
--	if [ -r $CRYPTOMOD ]
--	then
--		echo "Installing cryptodev module"
--		insmod $CRYPTOMOD
--		if [ `echo $?` = "1" ]
--		then
--			echo "Cryptodev failed.  Test will run in SW only mode."
--		else
--			lsmod | grep ocf_omap3_cryptok >/dev/null
--			if [ `echo $?` = "1" ]
--			then
--				if [ -r $OCFMOD ]
--				then
--					echo "Installing ocf_omap3_crypto module"
--					insmod $OCFMOD ocf_omap3_crypto_dma=1
--					if [ `echo $?` = "1" ]
--					then
--						echo "Removing cryptodev.  Running test in SW only mode."
--						rmmod cryptodev
--					fi
--				else
--					echo "Can't find OCF driver.  Running test in SW only mode."
--					rmmod cryptodev
--				fi
--			else
--				echo "ocf_omap3_crypto module is already installed"
--			fi
--		fi
--	fi
--else
--	echo "Cryptodev module is already installed"
--	lsmod | grep ocf_omap3_cryptok >/dev/null
--	if [ `echo $?` = "1" ]
--	then
--		if [ -r $OCFMOD ]
--		then
--			echo "Installing ocf_omap3_crypto module"
--			insmod $OCFMOD ocf_omap3_crypto_dma=1
--			if [ `echo $?` = "1" ]
--			then
--				echo "Removing cryptodev.  Running test in SW only mode."
--				rmmod cryptodev
--			fi
--		else
--			echo "Can't find OCF driver.  Running test in SW only mode."
--			rmmod cryptodev
--		fi
--	else
--		echo "ocf_omap3_crypto module is already installed"
--	fi
--fi
--fi
--
--
--
- if [ -r $OPENSSL ]
- then
- 	$OPENSSL version
-@@ -123,5 +54,3 @@ time -v $OPENSSL speed -evp md5 -engine cryptodev > $TEMP 2>&1
- egrep 'Doing|User|System|Percent|Elapsed' $TEMP
- 
- rm $TEMP
--
--
--- 
-1.8.3.2
-
diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb
index 36e26bc..4607c3c 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
 
 require matrix-gui-apps-git.inc
 
-PR = "${INC_PR}.9"
+PR = "${INC_PR}.10"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -12,8 +12,6 @@ S_ti33x = "${WORKDIR}/git/cryptos_apps_program"
 S_ti43x = "${WORKDIR}/git/cryptos_apps_program"
 S_dra7xx = "${WORKDIR}/git/cryptos_apps_program"
 
-SRC_URI += "file://0001-openssl_perf.sh-remove-module-manipulation.patch;striplevel=2"
-
 FILES_${PN} += "${MATRIX_BASE_DIR}/*"
 
 # Make sure crypto submenu and app images has been installed. Also make sure openssl is available
-- 
1.9.1



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

end of thread, other threads:[~2015-11-16 15:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-16 15:38 [PATCH 1/2] matrix-gui-apps-git: Bump SRCREV for openssl_perf fix Jacob Stiffler
2015-11-16 15:38 ` [PATCH 2/2] matrix-gui-crypto-demos: Remove openssl_perf patch 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.