* [PATCH] [meta-ppc-fsl] on master, move linux patches under newly created files subdirectory
@ 2013-01-07 15:39 Bob Cochran
2013-01-07 17:06 ` Otavio Salvador
2013-01-07 20:14 ` McClintock Matthew-B29882
0 siblings, 2 replies; 4+ messages in thread
From: Bob Cochran @ 2013-01-07 15:39 UTC (permalink / raw)
To: meta-freescale@yoctoproject.org
As I reported back on 11/27, I get linux-qoriq-sdk-headers build errors
with the linux patch files located in meta-fsl-ppc/recipes-kernel/linux.
Therefore, I created a files subdirectioy and moved the patch files
under there.
Signed-off-by: Robert Cochran <yocto@mindchasers.com>
---
...Undef-before-redefining-__attribute_const.patch | 28 -------------
...-build-dependencies-for-c-files-requiring.patch | 44
--------------------
...Undef-before-redefining-__attribute_const.patch | 28 +++++++++++++
...-build-dependencies-for-c-files-requiring.patch | 44
++++++++++++++++++++
4 files changed, 72 insertions(+), 72 deletions(-)
delete mode 100644
recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
delete mode 100644
recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
create mode 100644
recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
create mode 100644
recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
diff --git
a/recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
b/recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
deleted file mode 100644
index 597fd3b..0000000
---
a/recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 6f92ab6de9d8daeb575949bbbcbc7bcdcebc60af Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem at gmail.com>
-Date: Thu, 5 Jan 2012 11:42:35 -0800
-Subject: [PATCH] compiler.h: Undef before redefining __attribute_const__
-
-This is required to avoid warnings like
-util/include/linux/compiler.h:8:0: error: "__attribute_const__"
redefined [-Werror]
-
-Signed-off-by: Khem Raj <raj.khem at gmail.com>
----
- tools/perf/util/include/linux/compiler.h | 4 +++-
- 1 files changed, 3 insertions(+), 1 deletions(-)
-
---- a/tools/perf/util/include/linux/compiler.h
-+++ b/tools/perf/util/include/linux/compiler.h
-@@ -4,9 +4,11 @@
- #ifndef __always_inline
- #define __always_inline inline
- #endif
-+#undef __user
- #define __user
-+#undef __attribute_const__
- #define __attribute_const__
--
-+#undef __used
- #define __used __attribute__((__unused__))
-
- #endif
diff --git
a/recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
b/recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
deleted file mode 100644
index d3464fb..0000000
---
a/recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-Upstream-Status: Pending
-
-From 2e7ffea0c0c09c6d9219d604e0351423f43844f4 Mon Sep 17 00:00:00 2001
-From: Matthew McClintock <msm@freescale.com>
-Date: Thu, 6 Sep 2012 13:45:21 -0500
-Subject: powerpc: Fix build dependencies for c files requiring libfdt.h
-
-Several files in obj-plat depend on libfdt header file. Sometimes
-when building one can see the following issue. This patch adds
-libfdt as dependency to those object files
-
-| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
-| arch/powerpc/boot/libfdt.h:854:1: error: unterminated comment
-| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
-| arch/powerpc/boot/libfdt.h:1:0: error: unterminated #ifndef
-| BOOTCC arch/powerpc/boot/inffast.o
-| make[1]: *** [arch/powerpc/boot/treeboot-iss4xx.o] Error 1
-| make[1]: *** Waiting for unfinished jobs....
-| BOOTCC arch/powerpc/boot/inflate.o
-| make: *** [uImage] Error 2
-| ERROR: oe_runmake failed
-| ERROR: Function failed: do_compile (see
/srv/home/pokybuild/yocto-autobuilder/yocto-slave/p1022ds/build/build/tmp/work/p1022ds-poky-linux-gnuspe/linux-qoriq-sdk-3.0.34-r5/temp/log.do_compile.2167
for further information)
-NOTE: recipe linux-qoriq-sdk-3.0.34-r5: task do_compile: Failed
-
-Signed-off-by: Matthew McClintock <msm@freescale.com>
----
- arch/powerpc/boot/Makefile | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
-index b7d8333..6a15c96 100644
---- a/arch/powerpc/boot/Makefile
-+++ b/arch/powerpc/boot/Makefile
-@@ -107,6 +107,7 @@ src-boot := $(addprefix $(obj)/, $(src-boot))
- obj-boot := $(addsuffix .o, $(basename $(src-boot)))
- obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
- obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
-+obj-plat: $(libfdt)
-
- quiet_cmd_copy_zlib = COPY $@
- cmd_copy_zlib = sed "s@__used@@;s@<linux/\([^>]*\).*@\"\1\"@" $<
> $@
---
-1.7.9.7
-
diff --git
a/recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
b/recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
new file mode 100644
index 0000000..597fd3b
--- /dev/null
+++
b/recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
@@ -0,0 +1,28 @@
+From 6f92ab6de9d8daeb575949bbbcbc7bcdcebc60af Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem at gmail.com>
+Date: Thu, 5 Jan 2012 11:42:35 -0800
+Subject: [PATCH] compiler.h: Undef before redefining __attribute_const__
+
+This is required to avoid warnings like
+util/include/linux/compiler.h:8:0: error: "__attribute_const__"
redefined [-Werror]
+
+Signed-off-by: Khem Raj <raj.khem at gmail.com>
+---
+ tools/perf/util/include/linux/compiler.h | 4 +++-
+ 1 files changed, 3 insertions(+), 1 deletions(-)
+
+--- a/tools/perf/util/include/linux/compiler.h
++++ b/tools/perf/util/include/linux/compiler.h
+@@ -4,9 +4,11 @@
+ #ifndef __always_inline
+ #define __always_inline inline
+ #endif
++#undef __user
+ #define __user
++#undef __attribute_const__
+ #define __attribute_const__
+-
++#undef __used
+ #define __used __attribute__((__unused__))
+
+ #endif
diff --git
a/recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
b/recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
new file mode 100644
index 0000000..d3464fb
--- /dev/null
+++
b/recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
@@ -0,0 +1,44 @@
+Upstream-Status: Pending
+
+From 2e7ffea0c0c09c6d9219d604e0351423f43844f4 Mon Sep 17 00:00:00 2001
+From: Matthew McClintock <msm@freescale.com>
+Date: Thu, 6 Sep 2012 13:45:21 -0500
+Subject: powerpc: Fix build dependencies for c files requiring libfdt.h
+
+Several files in obj-plat depend on libfdt header file. Sometimes
+when building one can see the following issue. This patch adds
+libfdt as dependency to those object files
+
+| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
+| arch/powerpc/boot/libfdt.h:854:1: error: unterminated comment
+| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
+| arch/powerpc/boot/libfdt.h:1:0: error: unterminated #ifndef
+| BOOTCC arch/powerpc/boot/inffast.o
+| make[1]: *** [arch/powerpc/boot/treeboot-iss4xx.o] Error 1
+| make[1]: *** Waiting for unfinished jobs....
+| BOOTCC arch/powerpc/boot/inflate.o
+| make: *** [uImage] Error 2
+| ERROR: oe_runmake failed
+| ERROR: Function failed: do_compile (see
/srv/home/pokybuild/yocto-autobuilder/yocto-slave/p1022ds/build/build/tmp/work/p1022ds-poky-linux-gnuspe/linux-qoriq-sdk-3.0.34-r5/temp/log.do_compile.2167
for further information)
+NOTE: recipe linux-qoriq-sdk-3.0.34-r5: task do_compile: Failed
+
+Signed-off-by: Matthew McClintock <msm@freescale.com>
+---
+ arch/powerpc/boot/Makefile | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
+index b7d8333..6a15c96 100644
+--- a/arch/powerpc/boot/Makefile
++++ b/arch/powerpc/boot/Makefile
+@@ -107,6 +107,7 @@ src-boot := $(addprefix $(obj)/, $(src-boot))
+ obj-boot := $(addsuffix .o, $(basename $(src-boot)))
+ obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
+ obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
++obj-plat: $(libfdt)
+
+ quiet_cmd_copy_zlib = COPY $@
+ cmd_copy_zlib = sed "s@__used@@;s@<linux/\([^>]*\).*@\"\1\"@" $<
> $@
+--
+1.7.9.7
+
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] [meta-ppc-fsl] on master, move linux patches under newly created files subdirectory
2013-01-07 15:39 [PATCH] [meta-ppc-fsl] on master, move linux patches under newly created files subdirectory Bob Cochran
@ 2013-01-07 17:06 ` Otavio Salvador
2013-01-07 20:14 ` McClintock Matthew-B29882
1 sibling, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2013-01-07 17:06 UTC (permalink / raw)
To: Bob Cochran; +Cc: meta-freescale@yoctoproject.org
On Mon, Jan 7, 2013 at 1:39 PM, Bob Cochran <yocto@mindchasers.com> wrote:
> As I reported back on 11/27, I get linux-qoriq-sdk-headers build errors with
> the linux patch files located in meta-fsl-ppc/recipes-kernel/linux.
> Therefore, I created a files subdirectioy and moved the patch files under
> there.
>
> Signed-off-by: Robert Cochran <yocto@mindchasers.com>
'As I reported ...' is not a good commit log. The commit log is to
explain why something is changed so I'd use something like:
--3<--
linux-qoriq-sdk-headers: Fix build error due wrong patch path
The patch files need to be in the bitbake fetch patch otherwise it
won't be found during the build. We move the files to the 'files' directory
fixing the fetch error.
Signed-off-by ...
--3<--
And you should check the commit log of the uboot fix as well.
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] [meta-ppc-fsl] on master, move linux patches under newly created files subdirectory
2013-01-07 15:39 [PATCH] [meta-ppc-fsl] on master, move linux patches under newly created files subdirectory Bob Cochran
2013-01-07 17:06 ` Otavio Salvador
@ 2013-01-07 20:14 ` McClintock Matthew-B29882
2013-01-07 20:40 ` Bob Cochran
1 sibling, 1 reply; 4+ messages in thread
From: McClintock Matthew-B29882 @ 2013-01-07 20:14 UTC (permalink / raw)
To: Bob Cochran; +Cc: meta-freescale@yoctoproject.org
On Mon, Jan 7, 2013 at 9:39 AM, Bob Cochran <yocto@mindchasers.com> wrote:
> As I reported back on 11/27, I get linux-qoriq-sdk-headers build errors with
> the linux patch files located in meta-fsl-ppc/recipes-kernel/linux.
> Therefore, I created a files subdirectioy and moved the patch files under
> there.
This is in master-next...
http://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-ppc/commit/?h=master-next&id=88c9c66b588346143a2277f119f78bb2e82e3db3
I'm sorry I've not tested and pushed to master but I've had serious
issues with our build machines and testing the builds, between that
and holiday vacation. Progress is being made again.
-M
>
> Signed-off-by: Robert Cochran <yocto@mindchasers.com>
> ---
> ...Undef-before-redefining-__attribute_const.patch | 28 -------------
> ...-build-dependencies-for-c-files-requiring.patch | 44
> --------------------
> ...Undef-before-redefining-__attribute_const.patch | 28 +++++++++++++
> ...-build-dependencies-for-c-files-requiring.patch | 44
> ++++++++++++++++++++
> 4 files changed, 72 insertions(+), 72 deletions(-)
> delete mode 100644
> recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> delete mode 100644
> recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
> create mode 100644
> recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> create mode 100644
> recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
>
> diff --git
> a/recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> b/recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> deleted file mode 100644
> index 597fd3b..0000000
> ---
> a/recipes-kernel/linux/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> +++ /dev/null
> @@ -1,28 +0,0 @@
> -From 6f92ab6de9d8daeb575949bbbcbc7bcdcebc60af Mon Sep 17 00:00:00 2001
> -From: Khem Raj <raj.khem at gmail.com>
> -Date: Thu, 5 Jan 2012 11:42:35 -0800
> -Subject: [PATCH] compiler.h: Undef before redefining __attribute_const__
> -
> -This is required to avoid warnings like
> -util/include/linux/compiler.h:8:0: error: "__attribute_const__" redefined
> [-Werror]
> -
> -Signed-off-by: Khem Raj <raj.khem at gmail.com>
> ----
> - tools/perf/util/include/linux/compiler.h | 4 +++-
> - 1 files changed, 3 insertions(+), 1 deletions(-)
> -
> ---- a/tools/perf/util/include/linux/compiler.h
> -+++ b/tools/perf/util/include/linux/compiler.h
> -@@ -4,9 +4,11 @@
> - #ifndef __always_inline
> - #define __always_inline inline
> - #endif
> -+#undef __user
> - #define __user
> -+#undef __attribute_const__
> - #define __attribute_const__
> --
> -+#undef __used
> - #define __used __attribute__((__unused__))
> -
> - #endif
> diff --git
> a/recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
> b/recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
> deleted file mode 100644
> index d3464fb..0000000
> ---
> a/recipes-kernel/linux/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
> +++ /dev/null
> @@ -1,44 +0,0 @@
> -Upstream-Status: Pending
> -
> -From 2e7ffea0c0c09c6d9219d604e0351423f43844f4 Mon Sep 17 00:00:00 2001
> -From: Matthew McClintock <msm@freescale.com>
> -Date: Thu, 6 Sep 2012 13:45:21 -0500
> -Subject: powerpc: Fix build dependencies for c files requiring libfdt.h
> -
> -Several files in obj-plat depend on libfdt header file. Sometimes
> -when building one can see the following issue. This patch adds
> -libfdt as dependency to those object files
> -
> -| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
> -| arch/powerpc/boot/libfdt.h:854:1: error: unterminated comment
> -| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
> -| arch/powerpc/boot/libfdt.h:1:0: error: unterminated #ifndef
> -| BOOTCC arch/powerpc/boot/inffast.o
> -| make[1]: *** [arch/powerpc/boot/treeboot-iss4xx.o] Error 1
> -| make[1]: *** Waiting for unfinished jobs....
> -| BOOTCC arch/powerpc/boot/inflate.o
> -| make: *** [uImage] Error 2
> -| ERROR: oe_runmake failed
> -| ERROR: Function failed: do_compile (see
> /srv/home/pokybuild/yocto-autobuilder/yocto-slave/p1022ds/build/build/tmp/work/p1022ds-poky-linux-gnuspe/linux-qoriq-sdk-3.0.34-r5/temp/log.do_compile.2167
> for further information)
> -NOTE: recipe linux-qoriq-sdk-3.0.34-r5: task do_compile: Failed
> -
> -Signed-off-by: Matthew McClintock <msm@freescale.com>
> ----
> - arch/powerpc/boot/Makefile | 1 +
> - 1 file changed, 1 insertion(+)
> -
> -diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
> -index b7d8333..6a15c96 100644
> ---- a/arch/powerpc/boot/Makefile
> -+++ b/arch/powerpc/boot/Makefile
> -@@ -107,6 +107,7 @@ src-boot := $(addprefix $(obj)/, $(src-boot))
> - obj-boot := $(addsuffix .o, $(basename $(src-boot)))
> - obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
> - obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
> -+obj-plat: $(libfdt)
> -
> - quiet_cmd_copy_zlib = COPY $@
> - cmd_copy_zlib = sed "s@__used@@;s@<linux/\([^>]*\).*@\"\1\"@" $< >
> $@
> ---
> -1.7.9.7
> -
> diff --git
> a/recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> b/recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> new file mode 100644
> index 0000000..597fd3b
> --- /dev/null
> +++
> b/recipes-kernel/linux/files/0001-compiler.h-Undef-before-redefining-__attribute_const.patch
> @@ -0,0 +1,28 @@
> +From 6f92ab6de9d8daeb575949bbbcbc7bcdcebc60af Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem at gmail.com>
> +Date: Thu, 5 Jan 2012 11:42:35 -0800
> +Subject: [PATCH] compiler.h: Undef before redefining __attribute_const__
> +
> +This is required to avoid warnings like
> +util/include/linux/compiler.h:8:0: error: "__attribute_const__" redefined
> [-Werror]
> +
> +Signed-off-by: Khem Raj <raj.khem at gmail.com>
> +---
> + tools/perf/util/include/linux/compiler.h | 4 +++-
> + 1 files changed, 3 insertions(+), 1 deletions(-)
> +
> +--- a/tools/perf/util/include/linux/compiler.h
> ++++ b/tools/perf/util/include/linux/compiler.h
> +@@ -4,9 +4,11 @@
> + #ifndef __always_inline
> + #define __always_inline inline
> + #endif
> ++#undef __user
> + #define __user
> ++#undef __attribute_const__
> + #define __attribute_const__
> +-
> ++#undef __used
> + #define __used __attribute__((__unused__))
> +
> + #endif
> diff --git
> a/recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
> b/recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
> new file mode 100644
> index 0000000..d3464fb
> --- /dev/null
> +++
> b/recipes-kernel/linux/files/0001-powerpc-Fix-build-dependencies-for-c-files-requiring.patch
> @@ -0,0 +1,44 @@
> +Upstream-Status: Pending
> +
> +From 2e7ffea0c0c09c6d9219d604e0351423f43844f4 Mon Sep 17 00:00:00 2001
> +From: Matthew McClintock <msm@freescale.com>
> +Date: Thu, 6 Sep 2012 13:45:21 -0500
> +Subject: powerpc: Fix build dependencies for c files requiring libfdt.h
> +
> +Several files in obj-plat depend on libfdt header file. Sometimes
> +when building one can see the following issue. This patch adds
> +libfdt as dependency to those object files
> +
> +| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
> +| arch/powerpc/boot/libfdt.h:854:1: error: unterminated comment
> +| In file included from arch/powerpc/boot/treeboot-iss4xx.c:33:0:
> +| arch/powerpc/boot/libfdt.h:1:0: error: unterminated #ifndef
> +| BOOTCC arch/powerpc/boot/inffast.o
> +| make[1]: *** [arch/powerpc/boot/treeboot-iss4xx.o] Error 1
> +| make[1]: *** Waiting for unfinished jobs....
> +| BOOTCC arch/powerpc/boot/inflate.o
> +| make: *** [uImage] Error 2
> +| ERROR: oe_runmake failed
> +| ERROR: Function failed: do_compile (see
> /srv/home/pokybuild/yocto-autobuilder/yocto-slave/p1022ds/build/build/tmp/work/p1022ds-poky-linux-gnuspe/linux-qoriq-sdk-3.0.34-r5/temp/log.do_compile.2167
> for further information)
> +NOTE: recipe linux-qoriq-sdk-3.0.34-r5: task do_compile: Failed
> +
> +Signed-off-by: Matthew McClintock <msm@freescale.com>
> +---
> + arch/powerpc/boot/Makefile | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
> +index b7d8333..6a15c96 100644
> +--- a/arch/powerpc/boot/Makefile
> ++++ b/arch/powerpc/boot/Makefile
> +@@ -107,6 +107,7 @@ src-boot := $(addprefix $(obj)/, $(src-boot))
> + obj-boot := $(addsuffix .o, $(basename $(src-boot)))
> + obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
> + obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
> ++obj-plat: $(libfdt)
> +
> + quiet_cmd_copy_zlib = COPY $@
> + cmd_copy_zlib = sed "s@__used@@;s@<linux/\([^>]*\).*@\"\1\"@" $< >
> $@
> +--
> +1.7.9.7
> +
> --
> 1.7.9.5
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] [meta-ppc-fsl] on master, move linux patches under newly created files subdirectory
2013-01-07 20:14 ` McClintock Matthew-B29882
@ 2013-01-07 20:40 ` Bob Cochran
0 siblings, 0 replies; 4+ messages in thread
From: Bob Cochran @ 2013-01-07 20:40 UTC (permalink / raw)
To: McClintock Matthew-B29882; +Cc: meta-freescale@yoctoproject.org
On 01/07/2013 03:14 PM, McClintock Matthew-B29882 wrote:
> On Mon, Jan 7, 2013 at 9:39 AM, Bob Cochran <yocto@mindchasers.com> wrote:
>> As I reported back on 11/27, I get linux-qoriq-sdk-headers build errors with
>> the linux patch files located in meta-fsl-ppc/recipes-kernel/linux.
>> Therefore, I created a files subdirectioy and moved the patch files under
>> there.
>
> This is in master-next...
>
> http://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-ppc/commit/?h=master-next&id=88c9c66b588346143a2277f119f78bb2e82e3db3
>
> I'm sorry I've not tested and pushed to master but I've had serious
> issues with our build machines and testing the builds, between that
> and holiday vacation. Progress is being made again.
>
> -M
>
>
Thanks Matthew. I'm glad to hear master will be moving along again.
I have what seems like more than one problem getting Master to make it
through the init sequence on my p1010rdb. I'm working it in the
margins, and I'll send something out if I discover something meaningful.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-07 20:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-07 15:39 [PATCH] [meta-ppc-fsl] on master, move linux patches under newly created files subdirectory Bob Cochran
2013-01-07 17:06 ` Otavio Salvador
2013-01-07 20:14 ` McClintock Matthew-B29882
2013-01-07 20:40 ` Bob Cochran
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.