All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] fix assignments of BB_ENV_EXTRAWHITE variables
@ 2013-06-06  7:24 Jesse Zhang
  2013-06-06  7:24 ` [PATCH 1/1] local.conf.sample: use ?= to assign " Jesse Zhang
  0 siblings, 1 reply; 2+ messages in thread
From: Jesse Zhang @ 2013-06-06  7:24 UTC (permalink / raw)
  To: yocto

This is applicable to oe-core as well. But oe-core misses a commit:

    commit 54728735d67b567cdb067f793490ad15c448c828
    Author: Darren Hart <dvhart@linux.intel.com>
    Date:   Fri Feb 8 14:27:23 2013 -0800

        meta-yocto: Document new oe-git-proxy in site.conf.sample

It should be applied before this one.

jesse

The following changes since commit a62aed41f2d8f874f7ae24d0e5be5dbc66ea2199:

  lrzsz: check locale.h in configure (2013-06-04 15:55:46 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib szhang/white
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=szhang/white

Jesse Zhang (1):
  local.conf.sample: use ?= to assign BB_ENV_EXTRAWHITE variables

 meta-yocto/conf/local.conf.sample          | 4 ++--
 meta-yocto/conf/local.conf.sample.extended | 2 +-
 meta-yocto/conf/site.conf.sample           | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

-- 
1.7.11.7



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

* [PATCH 1/1] local.conf.sample: use ?= to assign BB_ENV_EXTRAWHITE variables
  2013-06-06  7:24 [PATCH 0/1] fix assignments of BB_ENV_EXTRAWHITE variables Jesse Zhang
@ 2013-06-06  7:24 ` Jesse Zhang
  0 siblings, 0 replies; 2+ messages in thread
From: Jesse Zhang @ 2013-06-06  7:24 UTC (permalink / raw)
  To: yocto

Use ?= so that the BB_ENV_EXTRAWHITE variables can be overridden from
the environment.

[YOCTO #4367]

Signed-off-by: Jesse Zhang <sen.zhang@windriver.com>
---
 meta-yocto/conf/local.conf.sample          | 4 ++--
 meta-yocto/conf/local.conf.sample.extended | 2 +-
 meta-yocto/conf/site.conf.sample           | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/meta-yocto/conf/local.conf.sample b/meta-yocto/conf/local.conf.sample
index 1abe224..2d89282 100644
--- a/meta-yocto/conf/local.conf.sample
+++ b/meta-yocto/conf/local.conf.sample
@@ -17,12 +17,12 @@
 # These two options control how much parallelism BitBake should use. The first 
 # option determines how many tasks bitbake should run in parallel:
 #
-#BB_NUMBER_THREADS = "4"
+#BB_NUMBER_THREADS ?= "4"
 # 
 # The second option controls how many processes make should run in parallel when
 # running compile tasks:
 #
-#PARALLEL_MAKE = "-j 4"
+#PARALLEL_MAKE ?= "-j 4"
 #
 # For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
 # be appropriate for example.
diff --git a/meta-yocto/conf/local.conf.sample.extended b/meta-yocto/conf/local.conf.sample.extended
index 3dc73fb..07e5cf5 100644
--- a/meta-yocto/conf/local.conf.sample.extended
+++ b/meta-yocto/conf/local.conf.sample.extended
@@ -82,7 +82,7 @@
 # Use "external-MODE" to use the precompiled external toolchains where MODE
 # is the type of external toolchain to use e.g. eabi. You need to ensure 
 # the toolchain you want to use is included in an appropriate layer
-# TCMODE = "external-eabi"
+# TCMODE ?= "external-eabi"
 
 # mklibs library size optimization is more useful to smaller images,
 # and less useful for bigger images. Also mklibs library optimization
diff --git a/meta-yocto/conf/site.conf.sample b/meta-yocto/conf/site.conf.sample
index b2d01d0..c551e8f 100644
--- a/meta-yocto/conf/site.conf.sample
+++ b/meta-yocto/conf/site.conf.sample
@@ -19,10 +19,10 @@ SCONF_VERSION = "1"
 # To use git with a proxy, you must use an external git proxy command, such as
 # the one provided by scripts/oe-git-proxy.sh. To use this script, copy it to
 # your PATH and uncomment the following:
-#GIT_PROXY_COMMAND="oe-git-proxy"
-#ALL_PROXY="socks://socks.example.com:1080"
+#GIT_PROXY_COMMAND ?= "oe-git-proxy"
+#ALL_PROXY ?= "socks://socks.example.com:1080"
 #or
-#ALL_PROXY="https://proxy.example.com:8080"
+#ALL_PROXY ?= "https://proxy.example.com:8080"
 # If you wish to use certain hosts without the proxy, specify them in NO_PROXY.
 # See the script for details on syntax.
 
-- 
1.7.11.7



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

end of thread, other threads:[~2013-06-06  7:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06  7:24 [PATCH 0/1] fix assignments of BB_ENV_EXTRAWHITE variables Jesse Zhang
2013-06-06  7:24 ` [PATCH 1/1] local.conf.sample: use ?= to assign " Jesse Zhang

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.