All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ti-tisdk-setup: Use AM57xx specific u-boot env script file
@ 2014-08-22  2:44 Franklin S. Cooper Jr
  2014-08-22  2:44 ` [PATCH 2/2] arago-core-tisdk-image: Work around SOC_FAMILY issue Franklin S. Cooper Jr
  0 siblings, 1 reply; 5+ messages in thread
From: Franklin S. Cooper Jr @ 2014-08-22  2:44 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>
---
 .../recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
index 3a65909..fb2cfc0 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
@@ -2,10 +2,10 @@ DESCRIPTION = "Package containing scripts to setup the development host and targ
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://setup.sh;beginline=3;endline=31;md5=fc4b04a33df6d892c9f4d4a9d92b945e"
 
-PR = "r19"
+PR = "r20"
 
 BRANCH ?= "master"
-SRCREV = "6aa269296c4fdede74b067ee961cb20a897d21df"
+SRCREV = "bd8d4af7de7f83b1919ecf01f7ff000e399b087a"
 SRC_URI = "git://arago-project.org/git/projects/tisdk-setup-scripts.git;protocol=git;branch=${BRANCH}"
 
 S = "${WORKDIR}/git/"
@@ -19,6 +19,7 @@ UBOOT_ENV_am180x-evm = "setup-uboot-env-am18x.sh"
 UBOOT_ENV_ti33x = "setup-uboot-env-am335x.sh"
 UBOOT_ENV_ti43x = "setup-uboot-env-am43x.sh"
 UBOOT_ENV_omap5-evm = "setup-uboot-env-omap5.sh"
+UBOOT_ENV_am57xx-evm = "setup-uboot-env-am57xx-evm.sh"
 UBOOT_ENV = "setup-uboot-unknown.sh"
 
 do_install () {
-- 
1.7.9.5



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

* [PATCH 2/2] arago-core-tisdk-image: Work around SOC_FAMILY issue
  2014-08-22  2:44 [PATCH 1/2] ti-tisdk-setup: Use AM57xx specific u-boot env script file Franklin S. Cooper Jr
@ 2014-08-22  2:44 ` Franklin S. Cooper Jr
  2014-08-29 17:35   ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Franklin S. Cooper Jr @ 2014-08-22  2:44 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

From: "Franklin S. Cooper Jr" <fcooper@ti.com>

* Some reason the SOC_FAMILY dra7xx has precedences over machine overrides.
* Change dra7xx to dra7xx-evm to avoid SOC_FAMILY override issue.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-core/images/arago-core-tisdk-image.inc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
index 37f71d6..475c9d6 100644
--- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
+++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
@@ -19,7 +19,7 @@ TOOLCHAIN_CLEANUP_PACKAGES = "libgnutls-dev libgnutls-extra26 libgnutls-openssl2
 DTB_FILTER = "unknown"
 DTB_FILTER_ti33x = "am335x"
 DTB_FILTER_omap5-evm = "omap5"
-DTB_FILTER_dra7xx = "dra7"
+DTB_FILTER_dra7xx-evm = "dra7"
 DTB_FILTER_am57xx-evm = "am57xx"
 DTB_FILTER_ti43x = "am43"
 DTB_FILTER_keystone = "k2hk"
-- 
1.7.9.5



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

* Re: [PATCH 2/2] arago-core-tisdk-image: Work around SOC_FAMILY issue
  2014-08-22  2:44 ` [PATCH 2/2] arago-core-tisdk-image: Work around SOC_FAMILY issue Franklin S. Cooper Jr
@ 2014-08-29 17:35   ` Denys Dmytriyenko
  2014-08-29 17:39     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2014-08-29 17:35 UTC (permalink / raw)
  To: Franklin S. Cooper Jr; +Cc: meta-arago

On Thu, Aug 21, 2014 at 09:44:54PM -0500, Franklin S. Cooper Jr wrote:
> From: "Franklin S. Cooper Jr" <fcooper@ti.com>
> 
> * Some reason the SOC_FAMILY dra7xx has precedences over machine overrides.
> * Change dra7xx to dra7xx-evm to avoid SOC_FAMILY override issue.
> 
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
>  .../recipes-core/images/arago-core-tisdk-image.inc |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> index 37f71d6..475c9d6 100644
> --- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> +++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> @@ -19,7 +19,7 @@ TOOLCHAIN_CLEANUP_PACKAGES = "libgnutls-dev libgnutls-extra26 libgnutls-openssl2
>  DTB_FILTER = "unknown"
>  DTB_FILTER_ti33x = "am335x"
>  DTB_FILTER_omap5-evm = "omap5"
> -DTB_FILTER_dra7xx = "dra7"
> +DTB_FILTER_dra7xx-evm = "dra7"
>  DTB_FILTER_am57xx-evm = "am57xx"

Are you sure you are basing your patch on master? The above entry for am57xx 
doesn exist yet in meta-arago/master. Looks like another patch is missing or 
your need to rebase.


>  DTB_FILTER_ti43x = "am43"
>  DTB_FILTER_keystone = "k2hk"
> -- 
> 1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 2/2] arago-core-tisdk-image: Work around SOC_FAMILY issue
  2014-08-29 17:35   ` Denys Dmytriyenko
@ 2014-08-29 17:39     ` Cooper Jr., Franklin
  2014-08-29 17:43       ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Cooper Jr., Franklin @ 2014-08-29 17:39 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago



> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, August 29, 2014 12:36 PM
> To: Cooper Jr., Franklin
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 2/2] arago-core-tisdk-image: Work
> around SOC_FAMILY issue
> 
> On Thu, Aug 21, 2014 at 09:44:54PM -0500, Franklin S. Cooper Jr wrote:
> > From: "Franklin S. Cooper Jr" <fcooper@ti.com>
> >
> > * Some reason the SOC_FAMILY dra7xx has precedences over machine
> overrides.
> > * Change dra7xx to dra7xx-evm to avoid SOC_FAMILY override issue.
> >
> > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > ---
> >  .../recipes-core/images/arago-core-tisdk-image.inc |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git
> > a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > index 37f71d6..475c9d6 100644
> > --- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > +++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > @@ -19,7 +19,7 @@ TOOLCHAIN_CLEANUP_PACKAGES = "libgnutls-dev
> > libgnutls-extra26 libgnutls-openssl2  DTB_FILTER = "unknown"
> >  DTB_FILTER_ti33x = "am335x"
> >  DTB_FILTER_omap5-evm = "omap5"
> > -DTB_FILTER_dra7xx = "dra7"
> > +DTB_FILTER_dra7xx-evm = "dra7"
> >  DTB_FILTER_am57xx-evm = "am57xx"
> 
> Are you sure you are basing your patch on master? The above entry for
> am57xx doesn exist yet in meta-arago/master. Looks like another patch is
> missing or your need to rebase.
[Franklin] This patch set was based on my previous patch set.  The patch for that entry is here:
http://arago-project.org/pipermail/meta-arago/2014-August/004042.html
Sorry I should have been clear about the dependencies especially between patch sets.
> 
> 
> >  DTB_FILTER_ti43x = "am43"
> >  DTB_FILTER_keystone = "k2hk"
> > --
> > 1.7.9.5
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 2/2] arago-core-tisdk-image: Work around SOC_FAMILY issue
  2014-08-29 17:39     ` Cooper Jr., Franklin
@ 2014-08-29 17:43       ` Denys Dmytriyenko
  0 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2014-08-29 17:43 UTC (permalink / raw)
  To: Cooper Jr., Franklin; +Cc: meta-arago

On Fri, Aug 29, 2014 at 01:39:15PM -0400, Cooper Jr., Franklin wrote:
> 
> 
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Friday, August 29, 2014 12:36 PM
> > To: Cooper Jr., Franklin
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH 2/2] arago-core-tisdk-image: Work
> > around SOC_FAMILY issue
> > 
> > On Thu, Aug 21, 2014 at 09:44:54PM -0500, Franklin S. Cooper Jr wrote:
> > > From: "Franklin S. Cooper Jr" <fcooper@ti.com>
> > >
> > > * Some reason the SOC_FAMILY dra7xx has precedences over machine
> > overrides.
> > > * Change dra7xx to dra7xx-evm to avoid SOC_FAMILY override issue.
> > >
> > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > > ---
> > >  .../recipes-core/images/arago-core-tisdk-image.inc |    2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git
> > > a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > > b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > > index 37f71d6..475c9d6 100644
> > > --- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > > +++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
> > > @@ -19,7 +19,7 @@ TOOLCHAIN_CLEANUP_PACKAGES = "libgnutls-dev
> > > libgnutls-extra26 libgnutls-openssl2  DTB_FILTER = "unknown"
> > >  DTB_FILTER_ti33x = "am335x"
> > >  DTB_FILTER_omap5-evm = "omap5"
> > > -DTB_FILTER_dra7xx = "dra7"
> > > +DTB_FILTER_dra7xx-evm = "dra7"
> > >  DTB_FILTER_am57xx-evm = "am57xx"
> > 
> > Are you sure you are basing your patch on master? The above entry for
> > am57xx doesn exist yet in meta-arago/master. Looks like another patch is
> > missing or your need to rebase.
> [Franklin] This patch set was based on my previous patch set.  The patch for that entry is here:
> http://arago-project.org/pipermail/meta-arago/2014-August/004042.html
> Sorry I should have been clear about the dependencies especially between patch sets.

Right, and I was trying to skip that patchset due to other comments. But now 
it's in, so it should satisfy the dependency. And I knew I saw the entry for 
am57xx someplace, just forgot it was the first patch from the previous series 
:)

-- 
Denys




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

end of thread, other threads:[~2014-08-29 17:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-22  2:44 [PATCH 1/2] ti-tisdk-setup: Use AM57xx specific u-boot env script file Franklin S. Cooper Jr
2014-08-22  2:44 ` [PATCH 2/2] arago-core-tisdk-image: Work around SOC_FAMILY issue Franklin S. Cooper Jr
2014-08-29 17:35   ` Denys Dmytriyenko
2014-08-29 17:39     ` Cooper Jr., Franklin
2014-08-29 17:43       ` 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.