All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meta-kernel-dev: Fix quoting
@ 2012-02-28 22:25 Darren Hart
  2012-02-28 22:29 ` Bruce Ashfield
  0 siblings, 1 reply; 3+ messages in thread
From: Darren Hart @ 2012-02-28 22:25 UTC (permalink / raw)
  To: Yocto Project; +Cc: Darren Hart

Several unquoted variables assignments are now resulting parse errors.
Correct them throughout meta-kernel-dev.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Tom Zanussi <tom.zanussi@intel.com>
CC: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 .../kern-tools-native_git.bbappend                 |    2 +-
 meta-kernel-dev/recipes-kernel/linux/linux-korg.bb |   11 +++++------
 .../recipes-kernel/linux/linux-yocto-dev.bb        |    4 ++--
 .../recipes-kernel/linux/linux-yocto-dev.bbappend  |    6 +++---
 .../linux/linux-yocto-rt_3.0.bbappend              |    6 +++---
 .../linux/linux-yocto_2.6.37.bbappend              |    6 +++---
 .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |    6 +++---
 .../recipes-kernel/linux/linux-yocto_3.2.bbappend  |    6 +++---
 8 files changed, 23 insertions(+), 24 deletions(-)

diff --git a/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend b/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend
index 201ec7f..8d7ee18 100644
--- a/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend
+++ b/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend
@@ -1,4 +1,4 @@
-SRCREV=${AUTOREV}
+SRCREV="${AUTOREV}"
 # BB_LOCALCOUNT_OVERRIDE = "1"
 LOCALCOUNT = "0"
 
diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb b/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb
index cee1aa2..f53584f 100644
--- a/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb
+++ b/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb
@@ -4,13 +4,12 @@ require recipes-kernel/linux/linux-yocto.inc
 KMACHINE = "yocto/standard/auto-bsp"
 YOCTO_KERNEL_EXTERNAL_BRANCH ?= "yocto/standard/auto-bsp"
 
-KBRANCH = ${KMACHINE}
-KMETA = meta
+KBRANCH = "${KMACHINE}"
+KMETA = "meta"
 
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git;protocol=git;nocheckout=1"
-SRCREV=${AUTOREV}
 
-SRCREV=${AUTOREV}
+SRCREV="${AUTOREV}"
 # SRCREV_pn-linux-korg = 
 
 LINUX_VERSION ?= "3.1"
@@ -21,7 +20,7 @@ PV = "${LINUX_VERSION}+git${SRCPV}"
 COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)"
 
 # Functionality flags
-KERNEL_REVISION_CHECKING=
-YOCTO_KERNEL_META_DATA=
+KERNEL_REVISION_CHECKING=""
+YOCTO_KERNEL_META_DATA=""
 
 require recipes-kernel/linux/linux-tools.inc
diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb
index 66d0865..fb89d84 100644
--- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb
+++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb
@@ -25,7 +25,7 @@ KBRANCH_beagleboard = "yocto/standard/beagleboard"
 
 SRC_URI = "git://git.pokylinux.org/linux-yocto-dev;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
 
-SRCREV=${AUTOREV}
+SRCREV="${AUTOREV}"
 
 LINUX_VERSION ?= "3.2"
 LINUX_VERSION_EXTENSION ?= "-yoctodev-${LINUX_KERNEL_TYPE}"
@@ -35,7 +35,7 @@ PV = "${LINUX_VERSION}+git${SRCPV}"
 COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64|mpc8315e-rdb|routerstationpro)"
 
 # Functionality flags
-KERNEL_REVISION_CHECKING=
+KERNEL_REVISION_CHECKING=""
 KERNEL_FEATURES="features/netfilter"
 KERNEL_FEATURES_append_qemux86=" cfg/sound"
 KERNEL_FEATURES_append_qemux86-64=" cfg/sound"
diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend
index 534c8ff..a068a3f 100644
--- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend
+++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend
@@ -1,6 +1,6 @@
 FILESEXTRAPATHS := "${THISDIR}/${PN}"
 
-COMPATIBLE_MACHINE = ${MACHINE}
+COMPATIBLE_MACHINE = "${MACHINE}"
 
 # KMACHINE is the branch to build
 # KMACHINE_<MACHINE> = "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
@@ -20,7 +20,7 @@ COMPATIBLE_MACHINE = ${MACHINE}
 # KSRC_linux_yocto_dev ?= /path/to/your/local/clone/linux-yocto-2.6.<ver>.git
 SRC_URI = "git://${KSRC_linux_yocto_dev};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
 
-KERNEL_REVISION_CHECKING=
-SRCREV=${AUTOREV}
+KERNEL_REVISION_CHECKING=""
+SRCREV="${AUTOREV}"
 #BB_LOCALCOUNT_OVERRIDE = "1"
 LOCALCOUNT = "0"
diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
index fbf81b2..90cf856 100644
--- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
+++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
@@ -1,6 +1,6 @@
 FILESEXTRAPATHS := "${THISDIR}/${PN}"
 
-COMPATIBLE_MACHINE = ${MACHINE}
+COMPATIBLE_MACHINE = "${MACHINE}"
 
 # It is often nice to have a local clone of the kernel repos, to
 # allow patches to be staged, branches created, etc. Modify
@@ -16,8 +16,8 @@ KMACHINE ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
 
 SRC_URI = "git://${KSRC_linux_yocto_rt};nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
 
-KERNEL_REVISION_CHECKING=
-SRCREV=${AUTOREV}
+KERNEL_REVISION_CHECKING=""
+SRCREV="${AUTOREV}"
 # BB_LOCALCOUNT_OVERRIDE = "1"
 LOCALCOUNT = "0"
 
diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend
index 484c97f..cfc57c9 100644
--- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend
+++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend
@@ -1,6 +1,6 @@
 FILESEXTRAPATHS := "${THISDIR}/${PN}"
 
-COMPATIBLE_MACHINE = ${MACHINE}
+COMPATIBLE_MACHINE = "${MACHINE}"
 
 # KMACHINE is the branch to build
 # KMACHINE_<MACHINE> ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
@@ -19,7 +19,7 @@ KMACHINE ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
 
 SRC_URI = "git://${KSRC_linux_yocto};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
 
-KERNEL_REVISION_CHECKING=
-SRCREV=${AUTOREV}
+KERNEL_REVISION_CHECKING=""
+SRCREV="${AUTOREV}"
 #BB_LOCALCOUNT_OVERRIDE = "1"
 LOCALCOUNT = "0"
diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend
index 977d856..d4288b1 100644
--- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -1,6 +1,6 @@
 FILESEXTRAPATHS := "${THISDIR}/${PN}"
 
-COMPATIBLE_MACHINE = ${MACHINE}
+COMPATIBLE_MACHINE = "${MACHINE}"
 
 # KMACHINE is the branch to build
 # KMACHINE_<MACHINE> ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
@@ -19,7 +19,7 @@ KMACHINE ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
 
 SRC_URI = "git://${KSRC_linux_yocto};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
 
-KERNEL_REVISION_CHECKING=
-SRCREV=${AUTOREV}
+KERNEL_REVISION_CHECKING=""
+SRCREV="${AUTOREV}"
 #BB_LOCALCOUNT_OVERRIDE = "1"
 LOCALCOUNT = "0"
diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend
index 8429cf6..48a115f 100644
--- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend
+++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend
@@ -1,6 +1,6 @@
 FILESEXTRAPATHS := "${THISDIR}/${PN}"
 
-COMPATIBLE_MACHINE = ${MACHINE}
+COMPATIBLE_MACHINE = "${MACHINE}"
 
 # KMACHINE is the branch to build
 # KMACHINE_<MACHINE> ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
@@ -18,7 +18,7 @@ COMPATIBLE_MACHINE = ${MACHINE}
 # KMACHINE ?= "${LINUX_KERNEL_TYPE}/${KMACHINE}"
 SRC_URI = "git://${KSRC_linux_yocto_3_2};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
 
-KERNEL_REVISION_CHECKING=
-SRCREV=${AUTOREV}
+KERNEL_REVISION_CHECKING=""
+SRCREV="${AUTOREV}"
 #BB_LOCALCOUNT_OVERRIDE = "1"
 LOCALCOUNT = "0"
-- 
1.7.6.5



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

* Re: [PATCH] meta-kernel-dev: Fix quoting
  2012-02-28 22:25 [PATCH] meta-kernel-dev: Fix quoting Darren Hart
@ 2012-02-28 22:29 ` Bruce Ashfield
  2012-02-28 22:32   ` Darren Hart
  0 siblings, 1 reply; 3+ messages in thread
From: Bruce Ashfield @ 2012-02-28 22:29 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

On 12-02-28 5:25 PM, Darren Hart wrote:
> Several unquoted variables assignments are now resulting parse errors.
> Correct them throughout meta-kernel-dev.

Looks good. I have the same fix that I didn't get around to pushing
today.

I assume you'll push this into the layer ?

Bruce

>
> Signed-off-by: Darren Hart<dvhart@linux.intel.com>
> CC: Tom Zanussi<tom.zanussi@intel.com>
> CC: Bruce Ashfield<bruce.ashfield@windriver.com>
> ---
>   .../kern-tools-native_git.bbappend                 |    2 +-
>   meta-kernel-dev/recipes-kernel/linux/linux-korg.bb |   11 +++++------
>   .../recipes-kernel/linux/linux-yocto-dev.bb        |    4 ++--
>   .../recipes-kernel/linux/linux-yocto-dev.bbappend  |    6 +++---
>   .../linux/linux-yocto-rt_3.0.bbappend              |    6 +++---
>   .../linux/linux-yocto_2.6.37.bbappend              |    6 +++---
>   .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |    6 +++---
>   .../recipes-kernel/linux/linux-yocto_3.2.bbappend  |    6 +++---
>   8 files changed, 23 insertions(+), 24 deletions(-)
>
> diff --git a/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend b/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend
> index 201ec7f..8d7ee18 100644
> --- a/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend
> +++ b/meta-kernel-dev/recipes-kernel/kern-tools-native/kern-tools-native_git.bbappend
> @@ -1,4 +1,4 @@
> -SRCREV=${AUTOREV}
> +SRCREV="${AUTOREV}"
>   # BB_LOCALCOUNT_OVERRIDE = "1"
>   LOCALCOUNT = "0"
>
> diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb b/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb
> index cee1aa2..f53584f 100644
> --- a/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb
> +++ b/meta-kernel-dev/recipes-kernel/linux/linux-korg.bb
> @@ -4,13 +4,12 @@ require recipes-kernel/linux/linux-yocto.inc
>   KMACHINE = "yocto/standard/auto-bsp"
>   YOCTO_KERNEL_EXTERNAL_BRANCH ?= "yocto/standard/auto-bsp"
>
> -KBRANCH = ${KMACHINE}
> -KMETA = meta
> +KBRANCH = "${KMACHINE}"
> +KMETA = "meta"
>
>   SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git;protocol=git;nocheckout=1"
> -SRCREV=${AUTOREV}
>
> -SRCREV=${AUTOREV}
> +SRCREV="${AUTOREV}"
>   # SRCREV_pn-linux-korg =
>
>   LINUX_VERSION ?= "3.1"
> @@ -21,7 +20,7 @@ PV = "${LINUX_VERSION}+git${SRCPV}"
>   COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)"
>
>   # Functionality flags
> -KERNEL_REVISION_CHECKING=
> -YOCTO_KERNEL_META_DATA=
> +KERNEL_REVISION_CHECKING=""
> +YOCTO_KERNEL_META_DATA=""
>
>   require recipes-kernel/linux/linux-tools.inc
> diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb
> index 66d0865..fb89d84 100644
> --- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb
> +++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bb
> @@ -25,7 +25,7 @@ KBRANCH_beagleboard = "yocto/standard/beagleboard"
>
>   SRC_URI = "git://git.pokylinux.org/linux-yocto-dev;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -SRCREV=${AUTOREV}
> +SRCREV="${AUTOREV}"
>
>   LINUX_VERSION ?= "3.2"
>   LINUX_VERSION_EXTENSION ?= "-yoctodev-${LINUX_KERNEL_TYPE}"
> @@ -35,7 +35,7 @@ PV = "${LINUX_VERSION}+git${SRCPV}"
>   COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64|mpc8315e-rdb|routerstationpro)"
>
>   # Functionality flags
> -KERNEL_REVISION_CHECKING=
> +KERNEL_REVISION_CHECKING=""
>   KERNEL_FEATURES="features/netfilter"
>   KERNEL_FEATURES_append_qemux86=" cfg/sound"
>   KERNEL_FEATURES_append_qemux86-64=" cfg/sound"
> diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend
> index 534c8ff..a068a3f 100644
> --- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend
> +++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-dev.bbappend
> @@ -1,6 +1,6 @@
>   FILESEXTRAPATHS := "${THISDIR}/${PN}"
>
> -COMPATIBLE_MACHINE = ${MACHINE}
> +COMPATIBLE_MACHINE = "${MACHINE}"
>
>   # KMACHINE is the branch to build
>   # KMACHINE_<MACHINE>  = "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
> @@ -20,7 +20,7 @@ COMPATIBLE_MACHINE = ${MACHINE}
>   # KSRC_linux_yocto_dev ?= /path/to/your/local/clone/linux-yocto-2.6.<ver>.git
>   SRC_URI = "git://${KSRC_linux_yocto_dev};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -KERNEL_REVISION_CHECKING=
> -SRCREV=${AUTOREV}
> +KERNEL_REVISION_CHECKING=""
> +SRCREV="${AUTOREV}"
>   #BB_LOCALCOUNT_OVERRIDE = "1"
>   LOCALCOUNT = "0"
> diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
> index fbf81b2..90cf856 100644
> --- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
> +++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
> @@ -1,6 +1,6 @@
>   FILESEXTRAPATHS := "${THISDIR}/${PN}"
>
> -COMPATIBLE_MACHINE = ${MACHINE}
> +COMPATIBLE_MACHINE = "${MACHINE}"
>
>   # It is often nice to have a local clone of the kernel repos, to
>   # allow patches to be staged, branches created, etc. Modify
> @@ -16,8 +16,8 @@ KMACHINE ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
>
>   SRC_URI = "git://${KSRC_linux_yocto_rt};nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -KERNEL_REVISION_CHECKING=
> -SRCREV=${AUTOREV}
> +KERNEL_REVISION_CHECKING=""
> +SRCREV="${AUTOREV}"
>   # BB_LOCALCOUNT_OVERRIDE = "1"
>   LOCALCOUNT = "0"
>
> diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend
> index 484c97f..cfc57c9 100644
> --- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend
> +++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_2.6.37.bbappend
> @@ -1,6 +1,6 @@
>   FILESEXTRAPATHS := "${THISDIR}/${PN}"
>
> -COMPATIBLE_MACHINE = ${MACHINE}
> +COMPATIBLE_MACHINE = "${MACHINE}"
>
>   # KMACHINE is the branch to build
>   # KMACHINE_<MACHINE>  ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
> @@ -19,7 +19,7 @@ KMACHINE ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
>
>   SRC_URI = "git://${KSRC_linux_yocto};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -KERNEL_REVISION_CHECKING=
> -SRCREV=${AUTOREV}
> +KERNEL_REVISION_CHECKING=""
> +SRCREV="${AUTOREV}"
>   #BB_LOCALCOUNT_OVERRIDE = "1"
>   LOCALCOUNT = "0"
> diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend
> index 977d856..d4288b1 100644
> --- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend
> +++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.0.bbappend
> @@ -1,6 +1,6 @@
>   FILESEXTRAPATHS := "${THISDIR}/${PN}"
>
> -COMPATIBLE_MACHINE = ${MACHINE}
> +COMPATIBLE_MACHINE = "${MACHINE}"
>
>   # KMACHINE is the branch to build
>   # KMACHINE_<MACHINE>  ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
> @@ -19,7 +19,7 @@ KMACHINE ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
>
>   SRC_URI = "git://${KSRC_linux_yocto};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -KERNEL_REVISION_CHECKING=
> -SRCREV=${AUTOREV}
> +KERNEL_REVISION_CHECKING=""
> +SRCREV="${AUTOREV}"
>   #BB_LOCALCOUNT_OVERRIDE = "1"
>   LOCALCOUNT = "0"
> diff --git a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend
> index 8429cf6..48a115f 100644
> --- a/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend
> +++ b/meta-kernel-dev/recipes-kernel/linux/linux-yocto_3.2.bbappend
> @@ -1,6 +1,6 @@
>   FILESEXTRAPATHS := "${THISDIR}/${PN}"
>
> -COMPATIBLE_MACHINE = ${MACHINE}
> +COMPATIBLE_MACHINE = "${MACHINE}"
>
>   # KMACHINE is the branch to build
>   # KMACHINE_<MACHINE>  ?= "yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}"
> @@ -18,7 +18,7 @@ COMPATIBLE_MACHINE = ${MACHINE}
>   # KMACHINE ?= "${LINUX_KERNEL_TYPE}/${KMACHINE}"
>   SRC_URI = "git://${KSRC_linux_yocto_3_2};protocol=file;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -KERNEL_REVISION_CHECKING=
> -SRCREV=${AUTOREV}
> +KERNEL_REVISION_CHECKING=""
> +SRCREV="${AUTOREV}"
>   #BB_LOCALCOUNT_OVERRIDE = "1"
>   LOCALCOUNT = "0"



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

* Re: [PATCH] meta-kernel-dev: Fix quoting
  2012-02-28 22:29 ` Bruce Ashfield
@ 2012-02-28 22:32   ` Darren Hart
  0 siblings, 0 replies; 3+ messages in thread
From: Darren Hart @ 2012-02-28 22:32 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: Yocto Project

On 02/28/2012 02:29 PM, Bruce Ashfield wrote:
> On 12-02-28 5:25 PM, Darren Hart wrote:
>> Several unquoted variables assignments are now resulting parse errors.
>> Correct them throughout meta-kernel-dev.
> 
> Looks good. I have the same fix that I didn't get around to pushing
> today.
> 
> I assume you'll push this into the layer ?

Done.

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

end of thread, other threads:[~2012-02-28 22:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-28 22:25 [PATCH] meta-kernel-dev: Fix quoting Darren Hart
2012-02-28 22:29 ` Bruce Ashfield
2012-02-28 22:32   ` Darren Hart

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.