* [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
@ 2013-03-29 13:50 Chase Maupin
2013-03-29 13:50 ` [PATCH 2/4] arago-source-ipk: Add sourceipk for omapconf Chase Maupin
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Chase Maupin @ 2013-03-29 13:50 UTC (permalink / raw)
To: meta-arago
* The omapconf utility gives useful information about the
state of the OMAP device and can be used in debug and testing.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../recipes-devtools/omapconf/omapconf_git.bb | 25 ++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
create mode 100644 meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb
diff --git a/meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb b/meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb
new file mode 100644
index 0000000..9fcd88d
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb
@@ -0,0 +1,25 @@
+DESCRIPTION = "Diagnostic tool for TI OMAP processors"
+HOMEPAGE = "https://github.com/omapconf/omapconf"
+
+LICENSE = "GPLv2 BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
+
+PV = "1.66"
+PR = "r0"
+
+COMPATIBLE_MACHINE = "omap-a15"
+
+BRANCH ?= "master"
+SRCREV = "418b94bde60dbd3f85a0afb6e4d2a808cfb104cd"
+
+SRC_URI = "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRANCH}"
+
+S = "${WORKDIR}/git"
+
+do_compile () {
+ oe_runmake CROSS_COMPILE=${TARGET_PREFIX} install
+}
+
+do_install () {
+ oe_runmake DESTDIR=${D}${bindir} install
+}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/4] arago-source-ipk: Add sourceipk for omapconf
2013-03-29 13:50 [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Chase Maupin
@ 2013-03-29 13:50 ` Chase Maupin
2013-03-29 13:50 ` [PATCH 3/4] tisdk-packagegroups: Add omapconf Chase Maupin
` (2 subsequent siblings)
3 siblings, 0 replies; 11+ messages in thread
From: Chase Maupin @ 2013-03-29 13:50 UTC (permalink / raw)
To: meta-arago
* Install omapconf into the example-applications directory.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../conf/distro/arago-source-ipk.conf | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf
index 2fc8cbb..b65eb1b 100644
--- a/meta-arago-distro/conf/distro/arago-source-ipk.conf
+++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf
@@ -76,6 +76,9 @@ SRCIPK_INSTALL_DIR_pn-am-sysinfo = "example-applications/${PN}-${PV}"
CREATE_SRCIPK_pn-arm-benchmarks = "1"
SRCIPK_INSTALL_DIR_pn-arm-benchmarks = "example-applications/${PN}-${PV}"
+CREATE_SRCIPK_pn-omapconf = "1"
+SRCIPK_INSTALL_DIR_pn-omapconf = "example-applications/${PN}-${PV}"
+
CREATE_SRCIPK_pn-ti-pru-sw-examples = "1"
SRCIPK_INSTALL_DIR_pn-ti-pru-sw-examples = "example-applications/pru-${PV}"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/4] tisdk-packagegroups: Add omapconf
2013-03-29 13:50 [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Chase Maupin
2013-03-29 13:50 ` [PATCH 2/4] arago-source-ipk: Add sourceipk for omapconf Chase Maupin
@ 2013-03-29 13:50 ` Chase Maupin
2013-03-29 13:50 ` [PATCH 4/4] ti-tisdk-makefile: Add omapconf targets Chase Maupin
2013-03-29 17:01 ` [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Denys Dmytriyenko
3 siblings, 0 replies; 11+ messages in thread
From: Chase Maupin @ 2013-03-29 13:50 UTC (permalink / raw)
To: meta-arago
* Add omapconf to the list of test packages and to the list of
sources to be installed in the SDK.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../packagegroups/packagegroup-arago-test.bb | 6 +++++-
.../packagegroup-arago-tisdk-addons-sdk-host.bb | 6 +++++-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
index bb00698..a7bfa09 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Extended task to get System Test specific apps"
LICENSE = "MIT"
-PR = "r2"
+PR = "r3"
inherit packagegroup
@@ -19,6 +19,10 @@ ARAGO_TI_TEST = "\
ltp-ddt \
"
+ARAGO_TI_TEST_append_omap-a15 = " \
+ omapconf \
+ "
+
RDEPENDS_${PN} = "\
${ARAGO_TEST} \
${ARAGO_TI_TEST} \
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb
index 11c346c..6e8ece3 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to install sources for additional utilities/demos for SDKs"
LICENSE = "MIT"
-PR = "r2"
+PR = "r3"
inherit packagegroup
@@ -16,6 +16,10 @@ UTILS_append_am180x-evm = " \
ti-pru-sw-examples-src \
"
+UTILS_append_omap-a15 = " \
+ omapconf-src \
+"
+
RDEPENDS_${PN} = "\
${UTILS} \
"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 4/4] ti-tisdk-makefile: Add omapconf targets
2013-03-29 13:50 [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Chase Maupin
2013-03-29 13:50 ` [PATCH 2/4] arago-source-ipk: Add sourceipk for omapconf Chase Maupin
2013-03-29 13:50 ` [PATCH 3/4] tisdk-packagegroups: Add omapconf Chase Maupin
@ 2013-03-29 13:50 ` Chase Maupin
2013-03-29 17:01 ` [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Denys Dmytriyenko
3 siblings, 0 replies; 11+ messages in thread
From: Chase Maupin @ 2013-03-29 13:50 UTC (permalink / raw)
To: meta-arago
* Add support for omapconf build targets for omap-a15 devices
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../ti-tisdk-makefile/Makefile_omapconf | 19 +++++++++++++++++++
.../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 4 +++-
2 files changed, 22 insertions(+), 1 deletions(-)
create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapconf
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapconf b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapconf
new file mode 100644
index 0000000..9a8e69a
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_omapconf
@@ -0,0 +1,19 @@
+# omapconf build targets
+omapconf:
+ @echo =======================
+ @echo Building OmapConf
+ @echo =======================
+ @cd example-applications; cd `find . -name "*omapconf*"`; make CROSS_COMPILE=${CROSS_COMPILE} omapconf
+
+omapconf_clean:
+ @echo =======================
+ @echo Cleaning OmapConf
+ @echo =======================
+ @cd example-applications; cd `find . -name "*omapconf*"`; make clean
+
+omapconf_install:
+ @echo ==========================================
+ @echo Installing OmapConf - Release version
+ @echo ==========================================
+ @cd example-applications; cd `find . -name "*omapconf*"`; make DESTDIR=${DESTDIR}/usr/bin 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 cd43481..17a5c54 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
@@ -28,9 +28,10 @@ SRC_URI = "\
file://Makefile_qt-tstat \
file://Makefile_quick-playground \
file://Makefile_wireless \
+ file://Makefile_omapconf \
"
-PR = "r6"
+PR = "r7"
MAKEFILES_COMMON = "linux \
matrix-gui \
@@ -58,6 +59,7 @@ MAKEFILES_ti33x += "u-boot-spl \
"
MAKEFILES_omap-a15 += "u-boot-spl \
quick-playground \
+ omapconf \
"
MAKEFILES_am180x-evm += "pru \
u-boot-legacy \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
2013-03-29 13:50 [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Chase Maupin
` (2 preceding siblings ...)
2013-03-29 13:50 ` [PATCH 4/4] ti-tisdk-makefile: Add omapconf targets Chase Maupin
@ 2013-03-29 17:01 ` Denys Dmytriyenko
2013-03-29 17:06 ` Maupin, Chase
3 siblings, 1 reply; 11+ messages in thread
From: Denys Dmytriyenko @ 2013-03-29 17:01 UTC (permalink / raw)
To: Chase Maupin; +Cc: meta-arago
On Fri, Mar 29, 2013 at 08:50:30AM -0500, Chase Maupin wrote:
> * The omapconf utility gives useful information about the
> state of the OMAP device and can be used in debug and testing.
>
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
> .../recipes-devtools/omapconf/omapconf_git.bb | 25 ++++++++++++++++++++
> 1 files changed, 25 insertions(+), 0 deletions(-)
> create mode 100644 meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb
>
> diff --git a/meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb b/meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb
> new file mode 100644
> index 0000000..9fcd88d
> --- /dev/null
> +++ b/meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb
> @@ -0,0 +1,25 @@
> +DESCRIPTION = "Diagnostic tool for TI OMAP processors"
> +HOMEPAGE = "https://github.com/omapconf/omapconf"
> +
> +LICENSE = "GPLv2 BSD"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
> +
> +PV = "1.66"
> +PR = "r0"
> +
> +COMPATIBLE_MACHINE = "omap-a15"
Is it compatible with omap4? I guess not omap3 though :)
> +
> +BRANCH ?= "master"
> +SRCREV = "418b94bde60dbd3f85a0afb6e4d2a808cfb104cd"
> +
> +SRC_URI = "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRANCH}"
> +
> +S = "${WORKDIR}/git"
> +
> +do_compile () {
> + oe_runmake CROSS_COMPILE=${TARGET_PREFIX} install
> +}
> +
> +do_install () {
> + oe_runmake DESTDIR=${D}${bindir} install
> +}
> --
> 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] 11+ messages in thread
* Re: [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
2013-03-29 17:01 ` [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Denys Dmytriyenko
@ 2013-03-29 17:06 ` Maupin, Chase
2013-03-29 17:11 ` Denys Dmytriyenko
0 siblings, 1 reply; 11+ messages in thread
From: Maupin, Chase @ 2013-03-29 17:06 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, March 29, 2013 12:01 PM
> To: Maupin, Chase
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> utility to assist testing and debug
>
> On Fri, Mar 29, 2013 at 08:50:30AM -0500, Chase Maupin wrote:
> > * The omapconf utility gives useful information about the
> > state of the OMAP device and can be used in debug and
> testing.
> >
> > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > ---
> > .../recipes-devtools/omapconf/omapconf_git.bb | 25
> ++++++++++++++++++++
> > 1 files changed, 25 insertions(+), 0 deletions(-)
> > create mode 100644 meta-arago-extras/recipes-
> devtools/omapconf/omapconf_git.bb
> >
> > diff --git a/meta-arago-extras/recipes-
> devtools/omapconf/omapconf_git.bb b/meta-arago-extras/recipes-
> devtools/omapconf/omapconf_git.bb
> > new file mode 100644
> > index 0000000..9fcd88d
> > --- /dev/null
> > +++ b/meta-arago-extras/recipes-
> devtools/omapconf/omapconf_git.bb
> > @@ -0,0 +1,25 @@
> > +DESCRIPTION = "Diagnostic tool for TI OMAP processors"
> > +HOMEPAGE = "https://github.com/omapconf/omapconf"
> > +
> > +LICENSE = "GPLv2 BSD"
> > +LIC_FILES_CHKSUM =
> "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
> > +
> > +PV = "1.66"
> > +PR = "r0"
> > +
> > +COMPATIBLE_MACHINE = "omap-a15"
>
> Is it compatible with omap4? I guess not omap3 though :)
Correct. Since it supports OMAP4 as well I went ahead and left it at omap-a15. OMAP3 wasn't listed as I recall.
>
>
> > +
> > +BRANCH ?= "master"
> > +SRCREV = "418b94bde60dbd3f85a0afb6e4d2a808cfb104cd"
> > +
> > +SRC_URI =
> "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRA
> NCH}"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +do_compile () {
> > + oe_runmake CROSS_COMPILE=${TARGET_PREFIX} install
> > +}
> > +
> > +do_install () {
> > + oe_runmake DESTDIR=${D}${bindir} install
> > +}
> > --
> > 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] 11+ messages in thread
* Re: [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
2013-03-29 17:06 ` Maupin, Chase
@ 2013-03-29 17:11 ` Denys Dmytriyenko
2013-03-29 17:18 ` Maupin, Chase
0 siblings, 1 reply; 11+ messages in thread
From: Denys Dmytriyenko @ 2013-03-29 17:11 UTC (permalink / raw)
To: Maupin, Chase; +Cc: meta-arago@arago-project.org
On Fri, Mar 29, 2013 at 01:06:57PM -0400, Maupin, Chase wrote:
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Friday, March 29, 2013 12:01 PM
> > To: Maupin, Chase
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> > utility to assist testing and debug
> >
> > On Fri, Mar 29, 2013 at 08:50:30AM -0500, Chase Maupin wrote:
> > > * The omapconf utility gives useful information about the
> > > state of the OMAP device and can be used in debug and
> > testing.
> > >
> > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > > ---
> > > .../recipes-devtools/omapconf/omapconf_git.bb | 25
> > ++++++++++++++++++++
> > > 1 files changed, 25 insertions(+), 0 deletions(-)
> > > create mode 100644 meta-arago-extras/recipes-
> > devtools/omapconf/omapconf_git.bb
> > >
> > > diff --git a/meta-arago-extras/recipes-
> > devtools/omapconf/omapconf_git.bb b/meta-arago-extras/recipes-
> > devtools/omapconf/omapconf_git.bb
> > > new file mode 100644
> > > index 0000000..9fcd88d
> > > --- /dev/null
> > > +++ b/meta-arago-extras/recipes-
> > devtools/omapconf/omapconf_git.bb
> > > @@ -0,0 +1,25 @@
> > > +DESCRIPTION = "Diagnostic tool for TI OMAP processors"
> > > +HOMEPAGE = "https://github.com/omapconf/omapconf"
> > > +
> > > +LICENSE = "GPLv2 BSD"
> > > +LIC_FILES_CHKSUM =
> > "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
> > > +
> > > +PV = "1.66"
> > > +PR = "r0"
> > > +
> > > +COMPATIBLE_MACHINE = "omap-a15"
> >
> > Is it compatible with omap4? I guess not omap3 though :)
>
> Correct. Since it supports OMAP4 as well I went ahead and left it at
> omap-a15. OMAP3 wasn't listed as I recall.
I'm confused. Shouldn't it be omap-a15|omap4?
> > > +
> > > +BRANCH ?= "master"
> > > +SRCREV = "418b94bde60dbd3f85a0afb6e4d2a808cfb104cd"
> > > +
> > > +SRC_URI =
> > "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRA
> > NCH}"
> > > +
> > > +S = "${WORKDIR}/git"
> > > +
> > > +do_compile () {
> > > + oe_runmake CROSS_COMPILE=${TARGET_PREFIX} install
> > > +}
> > > +
> > > +do_install () {
> > > + oe_runmake DESTDIR=${D}${bindir} install
> > > +}
> > > --
> > > 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] 11+ messages in thread
* Re: [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
2013-03-29 17:11 ` Denys Dmytriyenko
@ 2013-03-29 17:18 ` Maupin, Chase
2013-03-29 17:23 ` Denys Dmytriyenko
0 siblings, 1 reply; 11+ messages in thread
From: Maupin, Chase @ 2013-03-29 17:18 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, March 29, 2013 12:12 PM
> To: Maupin, Chase
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> utility to assist testing and debug
>
> On Fri, Mar 29, 2013 at 01:06:57PM -0400, Maupin, Chase wrote:
> > > -----Original Message-----
> > > From: Dmytriyenko, Denys
> > > Sent: Friday, March 29, 2013 12:01 PM
> > > To: Maupin, Chase
> > > Cc: meta-arago@arago-project.org
> > > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> > > utility to assist testing and debug
> > >
> > > On Fri, Mar 29, 2013 at 08:50:30AM -0500, Chase Maupin wrote:
> > > > * The omapconf utility gives useful information about the
> > > > state of the OMAP device and can be used in debug and
> > > testing.
> > > >
> > > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > > > ---
> > > > .../recipes-devtools/omapconf/omapconf_git.bb | 25
> > > ++++++++++++++++++++
> > > > 1 files changed, 25 insertions(+), 0 deletions(-)
> > > > create mode 100644 meta-arago-extras/recipes-
> > > devtools/omapconf/omapconf_git.bb
> > > >
> > > > diff --git a/meta-arago-extras/recipes-
> > > devtools/omapconf/omapconf_git.bb b/meta-arago-
> extras/recipes-
> > > devtools/omapconf/omapconf_git.bb
> > > > new file mode 100644
> > > > index 0000000..9fcd88d
> > > > --- /dev/null
> > > > +++ b/meta-arago-extras/recipes-
> > > devtools/omapconf/omapconf_git.bb
> > > > @@ -0,0 +1,25 @@
> > > > +DESCRIPTION = "Diagnostic tool for TI OMAP processors"
> > > > +HOMEPAGE = "https://github.com/omapconf/omapconf"
> > > > +
> > > > +LICENSE = "GPLv2 BSD"
> > > > +LIC_FILES_CHKSUM =
> > > "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
> > > > +
> > > > +PV = "1.66"
> > > > +PR = "r0"
> > > > +
> > > > +COMPATIBLE_MACHINE = "omap-a15"
> > >
> > > Is it compatible with omap4? I guess not omap3 though :)
> >
> > Correct. Since it supports OMAP4 as well I went ahead and left
> it at
> > omap-a15. OMAP3 wasn't listed as I recall.
>
> I'm confused. Shouldn't it be omap-a15|omap4?
I didn't notice the pandaboard so I thought there wasn't an existing omap4. My logic was that when/if omap4 was added it would go into the omap-a15 SOC_FAMILY. I'll send an update.
>
>
> > > > +
> > > > +BRANCH ?= "master"
> > > > +SRCREV = "418b94bde60dbd3f85a0afb6e4d2a808cfb104cd"
> > > > +
> > > > +SRC_URI =
> > >
> "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRA
> > > NCH}"
> > > > +
> > > > +S = "${WORKDIR}/git"
> > > > +
> > > > +do_compile () {
> > > > + oe_runmake CROSS_COMPILE=${TARGET_PREFIX} install
> > > > +}
> > > > +
> > > > +do_install () {
> > > > + oe_runmake DESTDIR=${D}${bindir} install
> > > > +}
> > > > --
> > > > 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] 11+ messages in thread
* Re: [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
2013-03-29 17:18 ` Maupin, Chase
@ 2013-03-29 17:23 ` Denys Dmytriyenko
2013-03-29 17:25 ` Maupin, Chase
0 siblings, 1 reply; 11+ messages in thread
From: Denys Dmytriyenko @ 2013-03-29 17:23 UTC (permalink / raw)
To: Maupin, Chase; +Cc: meta-arago@arago-project.org
On Fri, Mar 29, 2013 at 01:18:46PM -0400, Maupin, Chase wrote:
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Friday, March 29, 2013 12:12 PM
> > To: Maupin, Chase
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> > utility to assist testing and debug
> >
> > On Fri, Mar 29, 2013 at 01:06:57PM -0400, Maupin, Chase wrote:
> > > > -----Original Message-----
> > > > From: Dmytriyenko, Denys
> > > > Sent: Friday, March 29, 2013 12:01 PM
> > > > To: Maupin, Chase
> > > > Cc: meta-arago@arago-project.org
> > > > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> > > > utility to assist testing and debug
> > > >
> > > > On Fri, Mar 29, 2013 at 08:50:30AM -0500, Chase Maupin wrote:
> > > > > * The omapconf utility gives useful information about the
> > > > > state of the OMAP device and can be used in debug and
> > > > testing.
> > > > >
> > > > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > > > > ---
> > > > > .../recipes-devtools/omapconf/omapconf_git.bb | 25
> > > > ++++++++++++++++++++
> > > > > 1 files changed, 25 insertions(+), 0 deletions(-)
> > > > > create mode 100644 meta-arago-extras/recipes-
> > > > devtools/omapconf/omapconf_git.bb
> > > > >
> > > > > diff --git a/meta-arago-extras/recipes-
> > > > devtools/omapconf/omapconf_git.bb b/meta-arago-
> > extras/recipes-
> > > > devtools/omapconf/omapconf_git.bb
> > > > > new file mode 100644
> > > > > index 0000000..9fcd88d
> > > > > --- /dev/null
> > > > > +++ b/meta-arago-extras/recipes-
> > > > devtools/omapconf/omapconf_git.bb
> > > > > @@ -0,0 +1,25 @@
> > > > > +DESCRIPTION = "Diagnostic tool for TI OMAP processors"
> > > > > +HOMEPAGE = "https://github.com/omapconf/omapconf"
> > > > > +
> > > > > +LICENSE = "GPLv2 BSD"
> > > > > +LIC_FILES_CHKSUM =
> > > > "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
> > > > > +
> > > > > +PV = "1.66"
> > > > > +PR = "r0"
> > > > > +
> > > > > +COMPATIBLE_MACHINE = "omap-a15"
> > > >
> > > > Is it compatible with omap4? I guess not omap3 though :)
> > >
> > > Correct. Since it supports OMAP4 as well I went ahead and left
> > it at
> > > omap-a15. OMAP3 wasn't listed as I recall.
> >
> > I'm confused. Shouldn't it be omap-a15|omap4?
>
> I didn't notice the pandaboard so I thought there wasn't an existing omap4.
> My logic was that when/if omap4 was added it would go into the omap-a15
> SOC_FAMILY. I'll send an update.
Why would pandaboard go into omap-a15 SOC_FAMILY? It's not Cortex-A15 and it
has it's own SOC_FAMILY.
Moreover, we had pandaboard in meta-ti for ages, the support is reasonably
up-to-date and it is part of my nightly builds of distro-less config...
> > > > > +
> > > > > +BRANCH ?= "master"
> > > > > +SRCREV = "418b94bde60dbd3f85a0afb6e4d2a808cfb104cd"
> > > > > +
> > > > > +SRC_URI =
> > > >
> > "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRA
> > > > NCH}"
> > > > > +
> > > > > +S = "${WORKDIR}/git"
> > > > > +
> > > > > +do_compile () {
> > > > > + oe_runmake CROSS_COMPILE=${TARGET_PREFIX} install
> > > > > +}
> > > > > +
> > > > > +do_install () {
> > > > > + oe_runmake DESTDIR=${D}${bindir} install
> > > > > +}
> > > > > --
> > > > > 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] 11+ messages in thread
* Re: [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
2013-03-29 17:23 ` Denys Dmytriyenko
@ 2013-03-29 17:25 ` Maupin, Chase
2013-03-29 17:29 ` Denys Dmytriyenko
0 siblings, 1 reply; 11+ messages in thread
From: Maupin, Chase @ 2013-03-29 17:25 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, March 29, 2013 12:24 PM
> To: Maupin, Chase
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> utility to assist testing and debug
>
> On Fri, Mar 29, 2013 at 01:18:46PM -0400, Maupin, Chase wrote:
> > > -----Original Message-----
> > > From: Dmytriyenko, Denys
> > > Sent: Friday, March 29, 2013 12:12 PM
> > > To: Maupin, Chase
> > > Cc: meta-arago@arago-project.org
> > > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> > > utility to assist testing and debug
> > >
> > > On Fri, Mar 29, 2013 at 01:06:57PM -0400, Maupin, Chase
> wrote:
> > > > > -----Original Message-----
> > > > > From: Dmytriyenko, Denys
> > > > > Sent: Friday, March 29, 2013 12:01 PM
> > > > > To: Maupin, Chase
> > > > > Cc: meta-arago@arago-project.org
> > > > > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add
> omapconf
> > > > > utility to assist testing and debug
> > > > >
> > > > > On Fri, Mar 29, 2013 at 08:50:30AM -0500, Chase Maupin
> wrote:
> > > > > > * The omapconf utility gives useful information about
> the
> > > > > > state of the OMAP device and can be used in debug and
> > > > > testing.
> > > > > >
> > > > > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > > > > > ---
> > > > > > .../recipes-devtools/omapconf/omapconf_git.bb |
> 25
> > > > > ++++++++++++++++++++
> > > > > > 1 files changed, 25 insertions(+), 0 deletions(-)
> > > > > > create mode 100644 meta-arago-extras/recipes-
> > > > > devtools/omapconf/omapconf_git.bb
> > > > > >
> > > > > > diff --git a/meta-arago-extras/recipes-
> > > > > devtools/omapconf/omapconf_git.bb b/meta-arago-
> > > extras/recipes-
> > > > > devtools/omapconf/omapconf_git.bb
> > > > > > new file mode 100644
> > > > > > index 0000000..9fcd88d
> > > > > > --- /dev/null
> > > > > > +++ b/meta-arago-extras/recipes-
> > > > > devtools/omapconf/omapconf_git.bb
> > > > > > @@ -0,0 +1,25 @@
> > > > > > +DESCRIPTION = "Diagnostic tool for TI OMAP processors"
> > > > > > +HOMEPAGE = "https://github.com/omapconf/omapconf"
> > > > > > +
> > > > > > +LICENSE = "GPLv2 BSD"
> > > > > > +LIC_FILES_CHKSUM =
> > > > > "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
> > > > > > +
> > > > > > +PV = "1.66"
> > > > > > +PR = "r0"
> > > > > > +
> > > > > > +COMPATIBLE_MACHINE = "omap-a15"
> > > > >
> > > > > Is it compatible with omap4? I guess not omap3 though :)
> > > >
> > > > Correct. Since it supports OMAP4 as well I went ahead and
> left
> > > it at
> > > > omap-a15. OMAP3 wasn't listed as I recall.
> > >
> > > I'm confused. Shouldn't it be omap-a15|omap4?
> >
> > I didn't notice the pandaboard so I thought there wasn't an
> existing omap4.
> > My logic was that when/if omap4 was added it would go into the
> omap-a15
> > SOC_FAMILY. I'll send an update.
>
> Why would pandaboard go into omap-a15 SOC_FAMILY? It's not
> Cortex-A15 and it
> has it's own SOC_FAMILY.
>
Because I had a highly complex condition called a brain fart and completely mixed up that OMAP4 used a Cortex-A9 instead of A15 :)
> Moreover, we had pandaboard in meta-ti for ages, the support is
> reasonably
> up-to-date and it is part of my nightly builds of distro-less
> config...
I just missed it. I was looking for omap4-evm or something similar. See above :)
>
>
> > > > > > +
> > > > > > +BRANCH ?= "master"
> > > > > > +SRCREV = "418b94bde60dbd3f85a0afb6e4d2a808cfb104cd"
> > > > > > +
> > > > > > +SRC_URI =
> > > > >
> > >
> "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRA
> > > > > NCH}"
> > > > > > +
> > > > > > +S = "${WORKDIR}/git"
> > > > > > +
> > > > > > +do_compile () {
> > > > > > + oe_runmake CROSS_COMPILE=${TARGET_PREFIX} install
> > > > > > +}
> > > > > > +
> > > > > > +do_install () {
> > > > > > + oe_runmake DESTDIR=${D}${bindir} install
> > > > > > +}
> > > > > > --
> > > > > > 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] 11+ messages in thread
* Re: [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug
2013-03-29 17:25 ` Maupin, Chase
@ 2013-03-29 17:29 ` Denys Dmytriyenko
0 siblings, 0 replies; 11+ messages in thread
From: Denys Dmytriyenko @ 2013-03-29 17:29 UTC (permalink / raw)
To: Maupin, Chase; +Cc: meta-arago@arago-project.org
On Fri, Mar 29, 2013 at 01:25:24PM -0400, Maupin, Chase wrote:
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Friday, March 29, 2013 12:24 PM
> > To: Maupin, Chase
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> > utility to assist testing and debug
> >
> > On Fri, Mar 29, 2013 at 01:18:46PM -0400, Maupin, Chase wrote:
> > > > -----Original Message-----
> > > > From: Dmytriyenko, Denys
> > > > Sent: Friday, March 29, 2013 12:12 PM
> > > > To: Maupin, Chase
> > > > Cc: meta-arago@arago-project.org
> > > > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add omapconf
> > > > utility to assist testing and debug
> > > >
> > > > On Fri, Mar 29, 2013 at 01:06:57PM -0400, Maupin, Chase
> > wrote:
> > > > > > -----Original Message-----
> > > > > > From: Dmytriyenko, Denys
> > > > > > Sent: Friday, March 29, 2013 12:01 PM
> > > > > > To: Maupin, Chase
> > > > > > Cc: meta-arago@arago-project.org
> > > > > > Subject: Re: [meta-arago] [PATCH 1/4] omapconf: add
> > omapconf
> > > > > > utility to assist testing and debug
> > > > > >
> > > > > > On Fri, Mar 29, 2013 at 08:50:30AM -0500, Chase Maupin
> > wrote:
> > > > > > > * The omapconf utility gives useful information about
> > the
> > > > > > > state of the OMAP device and can be used in debug and
> > > > > > testing.
> > > > > > >
> > > > > > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > > > > > > ---
> > > > > > > .../recipes-devtools/omapconf/omapconf_git.bb |
> > 25
> > > > > > ++++++++++++++++++++
> > > > > > > 1 files changed, 25 insertions(+), 0 deletions(-)
> > > > > > > create mode 100644 meta-arago-extras/recipes-
> > > > > > devtools/omapconf/omapconf_git.bb
> > > > > > >
> > > > > > > diff --git a/meta-arago-extras/recipes-
> > > > > > devtools/omapconf/omapconf_git.bb b/meta-arago-
> > > > extras/recipes-
> > > > > > devtools/omapconf/omapconf_git.bb
> > > > > > > new file mode 100644
> > > > > > > index 0000000..9fcd88d
> > > > > > > --- /dev/null
> > > > > > > +++ b/meta-arago-extras/recipes-
> > > > > > devtools/omapconf/omapconf_git.bb
> > > > > > > @@ -0,0 +1,25 @@
> > > > > > > +DESCRIPTION = "Diagnostic tool for TI OMAP processors"
> > > > > > > +HOMEPAGE = "https://github.com/omapconf/omapconf"
> > > > > > > +
> > > > > > > +LICENSE = "GPLv2 BSD"
> > > > > > > +LIC_FILES_CHKSUM =
> > > > > > "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914"
> > > > > > > +
> > > > > > > +PV = "1.66"
> > > > > > > +PR = "r0"
> > > > > > > +
> > > > > > > +COMPATIBLE_MACHINE = "omap-a15"
> > > > > >
> > > > > > Is it compatible with omap4? I guess not omap3 though :)
> > > > >
> > > > > Correct. Since it supports OMAP4 as well I went ahead and
> > left
> > > > it at
> > > > > omap-a15. OMAP3 wasn't listed as I recall.
> > > >
> > > > I'm confused. Shouldn't it be omap-a15|omap4?
> > >
> > > I didn't notice the pandaboard so I thought there wasn't an
> > existing omap4.
> > > My logic was that when/if omap4 was added it would go into the
> > omap-a15
> > > SOC_FAMILY. I'll send an update.
> >
> > Why would pandaboard go into omap-a15 SOC_FAMILY? It's not
> > Cortex-A15 and it
> > has it's own SOC_FAMILY.
> >
>
> Because I had a highly complex condition called a brain fart
Best excuse ever! :)
> and completely mixed up that OMAP4 used a Cortex-A9 instead of A15 :)
>
> > Moreover, we had pandaboard in meta-ti for ages, the support is
> > reasonably
> > up-to-date and it is part of my nightly builds of distro-less
> > config...
>
> I just missed it. I was looking for omap4-evm or something similar. See
> above :)
Anyway, thanks for fixing it, I just pushed the first batch in.
--
Denys
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2013-03-29 17:29 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-29 13:50 [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Chase Maupin
2013-03-29 13:50 ` [PATCH 2/4] arago-source-ipk: Add sourceipk for omapconf Chase Maupin
2013-03-29 13:50 ` [PATCH 3/4] tisdk-packagegroups: Add omapconf Chase Maupin
2013-03-29 13:50 ` [PATCH 4/4] ti-tisdk-makefile: Add omapconf targets Chase Maupin
2013-03-29 17:01 ` [PATCH 1/4] omapconf: add omapconf utility to assist testing and debug Denys Dmytriyenko
2013-03-29 17:06 ` Maupin, Chase
2013-03-29 17:11 ` Denys Dmytriyenko
2013-03-29 17:18 ` Maupin, Chase
2013-03-29 17:23 ` Denys Dmytriyenko
2013-03-29 17:25 ` Maupin, Chase
2013-03-29 17:29 ` 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.