* [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos
@ 2013-03-01 3:10 fcooperjr27
2013-03-01 3:10 ` [PATCH 2/9] matrix-gui-3d-demos: Split out " fcooperjr27
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: Franklin S. Cooper Jr <fcooper@ti.com>
* Pull in new images, .desktops and scripts for the new Graphics demos provided
by the Graphics minimal sdk.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../recipes-core/matrix/matrix-gui-apps-git.inc | 4 ++--
1 files 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 823f0e7..f4d480e 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://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=git;branch=${BRANCH}"
-SRCREV = "4a5a56fff71ff83880204eac43514f686e251de6"
+SRCREV = "6a76c32dd0764825c4f4c8259d09299e8a15ea5e"
BRANCH = "master"
-INC_PR = "r10"
+INC_PR = "r11"
# Pull in the base package for installing matrix applications
require matrix-gui-apps.inc
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/9] matrix-gui-3d-demos: Split out Graphics demos
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
2013-03-01 3:10 ` [PATCH 3/9] arm-benchmarks: Move makefiles into ARCH directory fcooperjr27
` (6 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: Franklin S. Cooper Jr <fcooper@ti.com>
* Create separate packages to allow each demo to be pulled in individually.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../packagegroup-arago-tisdk-matrix.bb | 12 ++++-
.../recipes-core/matrix/matrix-gui-3d-demos_2.0.bb | 40 ++++++++++++++++++-
2 files changed, 46 insertions(+), 6 deletions(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
index 2093178..2e0a753 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to include Matrix v2"
LICENSE = "MIT"
-PR = "r11"
+PR = "r12"
inherit packagegroup
@@ -31,18 +31,24 @@ MATRIX_QT_APPS = " \
${@base_conditional('ARAGO_QT_PROVIDER','qt4-embedded-gles','matrix-gui-apps-quick-playground','', d)} \
"
+MATRIX_SGX_DEMOS = " \
+ matrix-3d-demo-chameleon \
+ matrix-3d-demo-film \
+ matrix-3d-demo-lantern \
+ matrix-3d-demo-skull \
+"
MATRIX_QT_APPS_keystone = ""
MATRIX_APPS = ""
MATRIX_APPS_append_omap3 = " \
- ${@base_contains('MACHINE_FEATURES','sgx','matrix-gui-3d-demos','',d)} \
+ ${@base_contains('MACHINE_FEATURES','sgx','${MATRIX_SGX_DEMOS}','',d)} \
matrix-gui-multimedia-demos \
"
MATRIX_APPS_append_ti33x = " \
matrix-gui-ethernet-demos \
- ${@base_contains('MACHINE_FEATURES','sgx','matrix-gui-3d-demos','',d)} \
+ ${@base_contains('MACHINE_FEATURES','sgx','${MATRIX_SGX_DEMOS}','',d)} \
matrix-gui-multimedia-demos \
\
matrix-gui-clocks-275mhz \
diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
index d40e0d6..e1c3023 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
@@ -4,7 +4,7 @@ LICENSE = "CC-BY-SA"
require matrix-gui-apps-git.inc
-PR = "${INC_PR}.1"
+PR = "${INC_PR}.2"
S = "${WORKDIR}/git/3d_apps"
@@ -15,6 +15,40 @@ S = "${WORKDIR}/git/3d_apps"
# to the matrix-gui-submenus-3d dependency. So if matrix v2 moves
# into the same layer as libgles this may be acceptable, or perhaps
# we can use an RRECOMMENDS instead.
-RDEPENDS_${PN} += "matrix-gui-apps-images matrix-gui-submenus-3d libgles-omap3-rawdemos"
-FILES_${PN} += "${MATRIX_BASE_DIR}/*"
+PACKAGES = "matrix-3d-demo-chameleon \
+ matrix-3d-demo-coverflow \
+ matrix-3d-demo-film \
+ matrix-3d-demo-lantern \
+ matrix-3d-demo-skull \
+ matrix-3d-demo-shaders \
+ matrix-3d-demo-vase \
+"
+
+3D_DEMOS_RDEPENDS = "matrix-gui-apps-images matrix-gui-submenus-3d libgles-omap3-rawdemos"
+
+RDEPENDS_matrix-3d-demo-chameleon = "${3D_DEMOS_RDEPENDS}"
+RDEPENDS_matrix-3d-demo-coverflow = "${3D_DEMOS_RDEPENDS}"
+RDEPENDS_matrix-3d-demo-film = "${3D_DEMOS_RDEPENDS}"
+RDEPENDS_matrix-3d-demo-lantern = "${3D_DEMOS_RDEPENDS}"
+RDEPENDS_matrix-3d-demo-skull = "${3D_DEMOS_RDEPENDS}"
+RDEPENDS_matrix-3d-demo-shaders = "${3D_DEMOS_RDEPENDS}"
+RDEPENDS_matrix-3d-demo-vase = "${3D_DEMOS_RDEPENDS}"
+
+# Split the matrix files by 3d demos
+FILES_matrix-3d-demo-chameleon = "${MATRIX_APP_DIR}/3d_chameleon/*"
+FILES_matrix-3d-demo-coverflow = "${MATRIX_APP_DIR}/3d_coverflow/*"
+FILES_matrix-3d-demo-film = "${MATRIX_APP_DIR}/3d_film/*"
+FILES_matrix-3d-demo-lantern = "${MATRIX_APP_DIR}/3d_lantern/*"
+FILES_matrix-3d-demo-skull = "${MATRIX_APP_DIR}/3d_skull/*"
+FILES_matrix-3d-demo-shaders = "${MATRIX_APP_DIR}/3d_shaders/*"
+FILES_matrix-3d-demo-vase = "${MATRIX_APP_DIR}/3d_vase/*"
+
+# Split the ${bindir} files by 3d demos
+FILES_matrix-3d-demo-chameleon += "${bindir}/runOGLES2ChameleonMan.sh"
+FILES_matrix-3d-demo-coverflow += "${bindir}/runOGLES2Coverflow.sh"
+FILES_matrix-3d-demo-film += "${bindir}/runOGLESFilmTV.sh"
+FILES_matrix-3d-demo-lantern += "${bindir}/runOGLES2MagicLantern.sh"
+FILES_matrix-3d-demo-skull += "${bindir}/runOGLESEvilSkull.sh"
+FILES_matrix-3d-demo-shaders += "${bindir}/runOGLES2Shaders.sh"
+FILES_matrix-3d-demo-vase += "${bindir}/runOGLESVase.sh"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/9] arm-benchmarks: Move makefiles into ARCH directory
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
2013-03-01 3:10 ` [PATCH 2/9] matrix-gui-3d-demos: Split out " fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
2013-03-01 3:10 ` [PATCH 4/9] arm-benchmarks: Package sources for the right architecture fcooperjr27
` (5 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Jeff Lance
From: Jeff Lance <j-lance1@ti.com>
* Moving makefile into Architecture directory making it possible to install
only one ARCH on a target system.
* Update Rules.make relative path
Signed-off-by: Jeff Lance <j-lance1@ti.com>
---
.../arm-benchmarks/arm-benchmarks_1.3.bb | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
index b19c1ed..23acd42 100644
--- a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
+++ b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
@@ -4,25 +4,24 @@ LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
SECTION = "system"
-PR = "r3"
+PR = "r4"
BRANCH ?= "master"
-SRCREV = "e9fbf7990e93d97e7471e509626969d244cca214"
+SRCREV = "9b7b4fbde8fcf796a23da2a464dbf934e550f6c9"
SRC_URI = "git://gitorious.org/arm_benchmarks/arm_benchmarks.git;protocol=git;branch=${BRANCH}"
S = "${WORKDIR}/git"
PLATFORM_ARCH = "${ARMPKGARCH}"
-# Use ARCH format expected by the makefile
PLATFORM_ARCH_omapl138 = "armv5te"
do_compile() {
export CROSS_COMPILE=${TARGET_PREFIX}
# build the release version
- make ARCH=${PLATFORM_ARCH} release
+ oe_runmake -C ${PLATFORM_ARCH} release
}
do_install() {
- make ARCH=${PLATFORM_ARCH} DESTDIR=${D} install
+ oe_runmake -C ${PLATFORM_ARCH} DESTDIR=${D} install
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/9] arm-benchmarks: Package sources for the right architecture.
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
2013-03-01 3:10 ` [PATCH 2/9] matrix-gui-3d-demos: Split out " fcooperjr27
2013-03-01 3:10 ` [PATCH 3/9] arm-benchmarks: Move makefiles into ARCH directory fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
2013-03-01 3:10 ` [PATCH 5/9] meta-toolchain-arago: Create shell stub for gdb fcooperjr27
` (4 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: Franklin S. Cooper Jr <fcooper@ti.com>
* Instead of packaging the sources for armv5te and armv7a package the sources
depending on the device.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../arm-benchmarks/arm-benchmarks_1.3.bbappend | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
create mode 100644 meta-arago-distro/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bbappend
diff --git a/meta-arago-distro/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bbappend b/meta-arago-distro/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bbappend
new file mode 100644
index 0000000..bdd9124
--- /dev/null
+++ b/meta-arago-distro/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bbappend
@@ -0,0 +1,3 @@
+PR_append = "-arago0"
+
+SRCIPK_SRC_DIR = "${S}/${PLATFORM_ARCH}"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 5/9] meta-toolchain-arago: Create shell stub for gdb
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
` (2 preceding siblings ...)
2013-03-01 3:10 ` [PATCH 4/9] arm-benchmarks: Package sources for the right architecture fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
2013-03-01 3:19 ` Denys Dmytriyenko
2013-03-01 3:10 ` [PATCH 6/9] nativesdk-packagegroup-arago-sdk-host: Fix No module named distutils fcooperjr27
` (3 subsequent siblings)
7 siblings, 1 reply; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: Franklin S. Cooper Jr <fcooper@ti.com>
* PYTHONHOME and PYTHONPATH variable causes various problems in the
environment-setup file.
* Since it is only needed by gdb resurrect the shell stub concept and place
those environment variables in there for gdb.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../recipes-core/meta/meta-toolchain-arago.bb | 22 +++++++++++++++++++-
1 files changed, 21 insertions(+), 1 deletions(-)
diff --git a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
index 863e0ef..e683f9a 100644
--- a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
+++ b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
@@ -5,7 +5,7 @@ TOOLCHAIN_CLEANUP_PACKAGES ?= ""
require recipes-core/meta/meta-toolchain.bb
-PR = "r19"
+PR = "r20"
SDKTARGETSYSROOT = "${SDKPATH}/${ARAGO_TARGET_SYS}"
@@ -57,12 +57,32 @@ toolchain_create_sdk_env_script () {
echo 'export OECORE_SDK_VERSION="${SDK_VERSION}"' >> $script
}
+create_shell_stub () {
+ i=$1
+ mv $i $i.real
+ printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n" > $i
+ printf "\tfilename\x3D\x60echo \x24\x7BBASH_SOURCE\x23\x23\x2A\x2F\x7D\x60\n" >> $i
+ printf "\tdirname\x3D\x24\x7BBASH_SOURCE\x2F\x25\x24filename\x2F\x7D\n" >> $i
+ printf "\t\x2E \x24dirname\x2E\x2E\x2Fenvironment-setup\n" >> $i
+ printf "fi\n" >> $i
+
+ if [ "$2" == "yes" ]; then
+ echo 'export PYTHONHOME=$SDK_PATH' >> $i
+ echo 'export PYTHONPATH=lib/python2.7' >> $i
+ fi
+ printf "LD_LIBRARY_PATH=\x24SDK_PATH/lib:\x24LD_LIBRARY_PATH \x24SDK_PATH/lib/ld-linux.so.2 \x24SDK_PATH/bin/$i.real \x24\x2a\n" >> $i
+ chmod +x $i
+}
+
populate_sdk_ipk_append () {
# Remove broken .la files
for i in `find ${SDK_OUTPUT}/${SDKPATH} -name \*.la`; do
rm -f $i
done
+ cd ${SDK_OUTPUT}/${SDKPATH}/bin
+ ${@base_conditional('PREFERRED_PROVIDER_gdb-cross-canadian-arm', 'external-arago-sdk-toolchain', '', 'create_shell_stub ${TARGET_PREFIX}gdb yes', d)}
+
cleanup_toolchain_packages
mkdir -p "${SDK_OUTPUT}/${SDKPATHNATIVE}${prefix_nativesdk}/lib/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 6/9] nativesdk-packagegroup-arago-sdk-host: Fix No module named distutils
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
` (3 preceding siblings ...)
2013-03-01 3:10 ` [PATCH 5/9] meta-toolchain-arago: Create shell stub for gdb fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
2013-03-01 3:10 ` [PATCH 7/9] libav: Remove AC3 and DTS fcooperjr27
` (2 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: Franklin S. Cooper Jr <fcooper@ti.com>
* Fix "ImportError: No module named distutils" error by adding missing package.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../nativesdk-packagegroup-arago-sdk-host.bb | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb b/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb
index a6c89fd..1db12aa 100644
--- a/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb
+++ b/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb
@@ -1,5 +1,5 @@
DESCRIPTION = "Host packages for a standalone Arago SDK or external toolchain"
-PR = "r3"
+PR = "r4"
LICENSE = "MIT"
inherit nativesdk packagegroup
@@ -8,4 +8,5 @@ RDEPENDS_${PN} = "\
nativesdk-pkgconfig \
nativesdk-opkg \
nativesdk-libtool \
+ nativesdk-python-distutils \
"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 7/9] libav: Remove AC3 and DTS
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
` (4 preceding siblings ...)
2013-03-01 3:10 ` [PATCH 6/9] nativesdk-packagegroup-arago-sdk-host: Fix No module named distutils fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
2013-03-01 3:10 ` [PATCH 8/9] pinmux-utility: Add new Pinmux Utility fcooperjr27
2013-03-01 3:10 ` [PATCH 9/9] linux-am335x: "Add Remove check for GP-nly device type in RNG driver" patch fcooperjr27
7 siblings, 0 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: Franklin S. Cooper Jr <fcooper@ti.com>
* Remove additional references to software that might have patent or license
issues surrounding it.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../recipes-multimedia/libav/libav_0.8.3.bbappend | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/meta-arago-distro/recipes-multimedia/libav/libav_0.8.3.bbappend b/meta-arago-distro/recipes-multimedia/libav/libav_0.8.3.bbappend
index 525b546..f33cc54 100644
--- a/meta-arago-distro/recipes-multimedia/libav/libav_0.8.3.bbappend
+++ b/meta-arago-distro/recipes-multimedia/libav/libav_0.8.3.bbappend
@@ -1,4 +1,4 @@
-PR_append = "-arago0"
+PR_append = "-arago1"
# Disable features that have potential commercial licensing restrictions
EXTRA_OECONF += "\
@@ -22,4 +22,16 @@ EXTRA_OECONF += "\
--disable-muxer=mpeg2svcd \
--disable-muxer=mpeg2video \
--disable-muxer=mpeg2vob \
+ \
+ --disable-encoder=ac3_fixed \
+ --disable-encoder=ac3 \
+ --disable-decoder=ac3 \
+ --disable-decoder=eac3 \
+ --disable-demuxer=ac3 \
+ --disable-demuxer=eac3 \
+ --disable-demuxer=dts \
+ --disable-muxer=ac3 \
+ --disable-muxer=eac3 \
+ --disable-muxer=dts \
+ --disable-parser=ac3 \
"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 8/9] pinmux-utility: Add new Pinmux Utility
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
` (5 preceding siblings ...)
2013-03-01 3:10 ` [PATCH 7/9] libav: Remove AC3 and DTS fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
2013-03-01 3:10 ` [PATCH 9/9] linux-am335x: "Add Remove check for GP-nly device type in RNG driver" patch fcooperjr27
7 siblings, 0 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Michael Tadyshak, Franklin S. Cooper Jr
From: Michael Tadyshak <mtadyshak@ti.com>
* Add new Pinmux Utility that adds am335x silicon 2.1 support
* Remove external license file since the zip file now contains one
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../pinmux-utility/pinmux-utility_2.4.1.0.bb | 34 --------------------
.../pinmux-utility/pinmux-utility_2.5.2.0.bb | 24 ++++++++++++++
2 files changed, 24 insertions(+), 34 deletions(-)
delete mode 100644 meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.4.1.0.bb
create mode 100644 meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.5.2.0.bb
diff --git a/meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.4.1.0.bb b/meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.4.1.0.bb
deleted file mode 100644
index c34f9fd..0000000
--- a/meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.4.1.0.bb
+++ /dev/null
@@ -1,34 +0,0 @@
-DESCRIPTION = "Texas Instruments Pinmux Utility"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=2b328fcf0477d688d8b85f7310f9e6b9"
-COMPATIBLE_MACHINE = "am335x-evm|am37x-evm|am3517-evm|beagleboard"
-
-PR = "r0"
-
-SRC_URI = "https://gforge.ti.com/gf/download/frsrelease/850/5562/PinMuxUtility_v2_04_01_00.zip;name=base;subdir=${P}"
-
-# Temporarily add LICENSE file here since zip files don't contain any license information. This file was grabbed
-# from the License Agreement screen when installing this application.
-SRC_URI += "file://LICENSE"
-
-SRC_URI[base.md5sum] = "f65ec03bbbb9e14126ac8ce2795acede"
-SRC_URI[base.sha256sum] = "a95fe1b436419bf97bfdcc0b7ce95e497558ad81190d95dc0869ef9fc794094c"
-
-S = "${WORKDIR}/${P}"
-
-do_unpack_extra() {
- mv ${WORKDIR}/LICENSE ${WORKDIR}/${P}
-}
-
-addtask unpack_extra after do_unpack before do_patch
-
-installdir = "host-tools/pinmux_utils/windows"
-
-do_install() {
- install -d ${D}/${installdir}
- install ${S}/Pin_Mux_Utility.msi ${D}/${installdir}
- install ${S}/setup.exe ${D}/${installdir}
- install ${S}/Release_Notes.txt ${D}/${installdir}
-}
-
-FILES_${PN} += "${installdir}/*"
diff --git a/meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.5.2.0.bb b/meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.5.2.0.bb
new file mode 100644
index 0000000..51c6571
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/pinmux-utility/pinmux-utility_2.5.2.0.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "Texas Instruments Pinmux Utility"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d69a4aafe4f7b66d5f9c60d6875ebd52"
+COMPATIBLE_MACHINE = "am335x-evm|am37x-evm|am3517-evm|beagleboard"
+
+PR = "r0"
+
+SRC_URI = "https://gforge.ti.com/gf/download/frsrelease/1019/6393/PinMuxUtility_v2_05_02_00.zip;name=base;subdir=${P}"
+
+SRC_URI[base.md5sum] = "5a5cb5e9a5361fcb244a4b685872fe6b"
+SRC_URI[base.sha256sum] = "93b8dfd726dd614aad9c2b0bb9ffc0abbd47e1c2900c3f411be7433c6d04fd2a"
+
+S = "${WORKDIR}/${P}"
+
+installdir = "host-tools/pinmux_utils/windows"
+
+do_install() {
+ install -d ${D}/${installdir}
+ install ${S}/Pin_Mux_Utility.msi ${D}/${installdir}
+ install ${S}/setup.exe ${D}/${installdir}
+ install ${S}/Release_Notes.txt ${D}/${installdir}
+}
+
+FILES_${PN} += "${installdir}/*"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 9/9] linux-am335x: "Add Remove check for GP-nly device type in RNG driver" patch
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
` (6 preceding siblings ...)
2013-03-01 3:10 ` [PATCH 8/9] pinmux-utility: Add new Pinmux Utility fcooperjr27
@ 2013-03-01 3:10 ` fcooperjr27
7 siblings, 0 replies; 10+ messages in thread
From: fcooperjr27 @ 2013-03-01 3:10 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: Franklin S. Cooper Jr <fcooper@ti.com>
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
...emove-check-for-GP-only-device-type-in-RN.patch | 29 ++++++++++++++++++++
.../linux/linux-am335x_3.2.0-psp05.06.00.00.bb | 3 +-
2 files changed, 31 insertions(+), 1 deletions(-)
create mode 100644 meta-arago-distro/recipes-kernel/linux/linux-am335x-3.2.0-psp05.06.00.00/0001-omap4-rng-Remove-check-for-GP-only-device-type-in-RN.patch
diff --git a/meta-arago-distro/recipes-kernel/linux/linux-am335x-3.2.0-psp05.06.00.00/0001-omap4-rng-Remove-check-for-GP-only-device-type-in-RN.patch b/meta-arago-distro/recipes-kernel/linux/linux-am335x-3.2.0-psp05.06.00.00/0001-omap4-rng-Remove-check-for-GP-only-device-type-in-RN.patch
new file mode 100644
index 0000000..de2d841
--- /dev/null
+++ b/meta-arago-distro/recipes-kernel/linux/linux-am335x-3.2.0-psp05.06.00.00/0001-omap4-rng-Remove-check-for-GP-only-device-type-in-RN.patch
@@ -0,0 +1,29 @@
+From 13d5d52eda239b752b249b0f1b3b01b93a890b55 Mon Sep 17 00:00:00 2001
+From: Joel A Fernandes <joelagnel@ti.com>
+Date: Wed, 13 Feb 2013 15:37:15 -0600
+Subject: [PATCH] omap4-rng: Remove check for GP-only device type in RNG driver
+
+HS devices can support RNG due to recent changes in firewall settings on L4.
+The patch enables RNG support on HS device.
+
+Signed-off-by: Joel A Fernandes <joelagnel@ti.com>
+---
+ drivers/char/hw_random/omap4-rng.c | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/drivers/char/hw_random/omap4-rng.c b/drivers/char/hw_random/omap4-rng.c
+index 523ec63..9c3b87a 100644
+--- a/drivers/char/hw_random/omap4-rng.c
++++ b/drivers/char/hw_random/omap4-rng.c
+@@ -285,7 +285,7 @@ static struct platform_driver omap4_rng_driver = {
+
+ static int __init omap4_rng_init(void)
+ {
+- if (!cpu_is_am33xx() || omap_type() != OMAP2_DEVICE_TYPE_GP)
++ if (!cpu_is_am33xx())
+ return -ENODEV;
+
+ return platform_driver_register(&omap4_rng_driver);
+--
+1.7.4.1
+
diff --git a/meta-arago-distro/recipes-kernel/linux/linux-am335x_3.2.0-psp05.06.00.00.bb b/meta-arago-distro/recipes-kernel/linux/linux-am335x_3.2.0-psp05.06.00.00.bb
index 5e41d1b..e487f43 100644
--- a/meta-arago-distro/recipes-kernel/linux/linux-am335x_3.2.0-psp05.06.00.00.bb
+++ b/meta-arago-distro/recipes-kernel/linux/linux-am335x_3.2.0-psp05.06.00.00.bb
@@ -25,7 +25,7 @@ DEPENDS += "am33x-cm3"
KERNEL_IMAGETYPE = "uImage"
# The main PR is now using MACHINE_KERNEL_PR, for ti33x see conf/machine/include/ti33x.inc
-MACHINE_KERNEL_PR_append = "g+gitr${SRCPV}"
+MACHINE_KERNEL_PR_append = "h+gitr${SRCPV}"
BRANCH = "v3.2-staging"
@@ -72,6 +72,7 @@ PATCHES += "file://0001-am33x-Add-memory-addresses-for-crypto-modules.patch \
file://0008-crypto-omap4-aes-Don-t-use-hardcoded-base-address.patch \
file://0009-ARM-AM33xx-hwmod-Convert-RNG-device-data-to-hwmod.patch \
file://0010-hwrng-omap4-rng-Convert-to-use-pm_runtime-API.patch \
+ file://0001-omap4-rng-Remove-check-for-GP-only-device-type-in-RN.patch \
"
# Add SmartReflex support early driver patches while working to get the driver
--
1.7.0.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 5/9] meta-toolchain-arago: Create shell stub for gdb
2013-03-01 3:10 ` [PATCH 5/9] meta-toolchain-arago: Create shell stub for gdb fcooperjr27
@ 2013-03-01 3:19 ` Denys Dmytriyenko
0 siblings, 0 replies; 10+ messages in thread
From: Denys Dmytriyenko @ 2013-03-01 3:19 UTC (permalink / raw)
To: fcooperjr27; +Cc: meta-arago, Franklin S. Cooper Jr
On Thu, Feb 28, 2013 at 09:10:43PM -0600, fcooperjr27@gmail.com wrote:
> From: Franklin S. Cooper Jr <fcooper@ti.com>
>
> * PYTHONHOME and PYTHONPATH variable causes various problems in the
> environment-setup file.
> * Since it is only needed by gdb resurrect the shell stub concept and place
> those environment variables in there for gdb.
I was thinking would it be any better to rely on a host Python instead of
bringing our own? Can we extend Python modules on the host with our own, if
needed, but otherwise use what host provides? Not sure about versions
though...
--
Denys
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
> .../recipes-core/meta/meta-toolchain-arago.bb | 22 +++++++++++++++++++-
> 1 files changed, 21 insertions(+), 1 deletions(-)
>
> diff --git a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> index 863e0ef..e683f9a 100644
> --- a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> +++ b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> @@ -5,7 +5,7 @@ TOOLCHAIN_CLEANUP_PACKAGES ?= ""
>
> require recipes-core/meta/meta-toolchain.bb
>
> -PR = "r19"
> +PR = "r20"
>
> SDKTARGETSYSROOT = "${SDKPATH}/${ARAGO_TARGET_SYS}"
>
> @@ -57,12 +57,32 @@ toolchain_create_sdk_env_script () {
> echo 'export OECORE_SDK_VERSION="${SDK_VERSION}"' >> $script
> }
>
> +create_shell_stub () {
> + i=$1
> + mv $i $i.real
> + printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n" > $i
> + printf "\tfilename\x3D\x60echo \x24\x7BBASH_SOURCE\x23\x23\x2A\x2F\x7D\x60\n" >> $i
> + printf "\tdirname\x3D\x24\x7BBASH_SOURCE\x2F\x25\x24filename\x2F\x7D\n" >> $i
> + printf "\t\x2E \x24dirname\x2E\x2E\x2Fenvironment-setup\n" >> $i
> + printf "fi\n" >> $i
> +
> + if [ "$2" == "yes" ]; then
> + echo 'export PYTHONHOME=$SDK_PATH' >> $i
> + echo 'export PYTHONPATH=lib/python2.7' >> $i
> + fi
> + printf "LD_LIBRARY_PATH=\x24SDK_PATH/lib:\x24LD_LIBRARY_PATH \x24SDK_PATH/lib/ld-linux.so.2 \x24SDK_PATH/bin/$i.real \x24\x2a\n" >> $i
> + chmod +x $i
> +}
> +
> populate_sdk_ipk_append () {
> # Remove broken .la files
> for i in `find ${SDK_OUTPUT}/${SDKPATH} -name \*.la`; do
> rm -f $i
> done
>
> + cd ${SDK_OUTPUT}/${SDKPATH}/bin
> + ${@base_conditional('PREFERRED_PROVIDER_gdb-cross-canadian-arm', 'external-arago-sdk-toolchain', '', 'create_shell_stub ${TARGET_PREFIX}gdb yes', d)}
> +
> cleanup_toolchain_packages
>
> mkdir -p "${SDK_OUTPUT}/${SDKPATHNATIVE}${prefix_nativesdk}/lib/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}"
> --
> 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] 10+ messages in thread
end of thread, other threads:[~2013-03-01 3:19 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-01 3:10 [PATCH 1/9] matrix-gui-apps-git.inc: Add additional Graphics demos fcooperjr27
2013-03-01 3:10 ` [PATCH 2/9] matrix-gui-3d-demos: Split out " fcooperjr27
2013-03-01 3:10 ` [PATCH 3/9] arm-benchmarks: Move makefiles into ARCH directory fcooperjr27
2013-03-01 3:10 ` [PATCH 4/9] arm-benchmarks: Package sources for the right architecture fcooperjr27
2013-03-01 3:10 ` [PATCH 5/9] meta-toolchain-arago: Create shell stub for gdb fcooperjr27
2013-03-01 3:19 ` Denys Dmytriyenko
2013-03-01 3:10 ` [PATCH 6/9] nativesdk-packagegroup-arago-sdk-host: Fix No module named distutils fcooperjr27
2013-03-01 3:10 ` [PATCH 7/9] libav: Remove AC3 and DTS fcooperjr27
2013-03-01 3:10 ` [PATCH 8/9] pinmux-utility: Add new Pinmux Utility fcooperjr27
2013-03-01 3:10 ` [PATCH 9/9] linux-am335x: "Add Remove check for GP-nly device type in RNG driver" patch fcooperjr27
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.