All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] soc-family: fix SOC_FAMILY override order
@ 2013-03-08 17:51 Chase Maupin
  2013-03-08 18:52 ` Otavio Salvador
  0 siblings, 1 reply; 15+ messages in thread
From: Chase Maupin @ 2013-03-08 17:51 UTC (permalink / raw)
  To: openembedded-core; +Cc: Chase Maupin

* the current order has SOC_FAMILY settings, which are generic
  settings for a group of devices, overriding the machine specific
  settings.  For example:

  KERNEL_DEVICETREE_ti33x = "xxxx"
  KERNEL_DEVICETREE_beaglebone = "yyyy"

  Should yield "yyyy" when building for the beaglebone because
  that is a more specific device than ti33x.  However, without this
  change the result is that the value is set to "xxxx" meaning the
  more generic setting overrides the more specific setting.

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 meta/conf/machine/include/soc-family.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/conf/machine/include/soc-family.inc b/meta/conf/machine/include/soc-family.inc
index 612039c..0251da0 100644
--- a/meta/conf/machine/include/soc-family.inc
+++ b/meta/conf/machine/include/soc-family.inc
@@ -1,2 +1,2 @@
 # Add SOC_FAMILY to machine overrides so we get access to e.g. 'omap3' and 'ti335x'
-MACHINEOVERRIDES .= "${@['', ':${SOC_FAMILY}']['${SOC_FAMILY}' != '']}"
+MACHINEOVERRIDES =. "${@['', '${SOC_FAMILY}:']['${SOC_FAMILY}' != '']}"
-- 
1.7.0.4




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

end of thread, other threads:[~2013-03-12 12:54 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-08 17:51 [PATCH] soc-family: fix SOC_FAMILY override order Chase Maupin
2013-03-08 18:52 ` Otavio Salvador
2013-03-08 20:06   ` Denys Dmytriyenko
2013-03-08 20:27     ` Otavio Salvador
2013-03-08 22:16       ` Maupin, Chase
2013-03-09 12:10         ` Otavio Salvador
2013-03-11 14:49           ` Maupin, Chase
2013-03-11 16:24             ` Otavio Salvador
2013-03-11 18:03               ` Maupin, Chase
2013-03-11 18:52                 ` Denys Dmytriyenko
2013-03-11 19:09                   ` Otavio Salvador
2013-03-12  6:19               ` Richard Purdie
2013-03-12 12:38                 ` Otavio Salvador
2013-03-11 20:45             ` Denys Dmytriyenko
2013-03-12 12:06               ` Maupin, Chase

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.