diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-11-05 13:47:50 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-05 22:04:03 +0000 |
commit | 8d1a041891c87d0c2003c80f84b0501bdc9403a1 (patch) | |
tree | 780599b43d1e2ba1f556570099d54849f465ba17 /meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb | |
parent | 8e22b08de2745e08421b38f8ba215bcc1de4b423 (diff) | |
download | openembedded-core-8d1a041891c87d0c2003c80f84b0501bdc9403a1.tar.gz openembedded-core-8d1a041891c87d0c2003c80f84b0501bdc9403a1.tar.bz2 openembedded-core-8d1a041891c87d0c2003c80f84b0501bdc9403a1.zip |
linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
This update fixes two issues:
a) qemuarm boot failure
v3.10.13 picked up a patch for arm versatile interrupt mappings that fixes
the emulator boot out of the box. But it interacts badly with our previous
fix for the issue. Reverting the existing patch and going with the mainline
solution fixes the boot.
b) qemumips build warning and failure
Depending on the build host and compiler, the build of menuconfig throws
an potentially uninitialized variable warning. That warning causes an
error on archs with -Werror. We can do a trivial change to avoid the
warning all together (initilize it to null), and keep everyone happy.
[YOCTO #5460]
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb index c76951759c..c15c311647 100644 --- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb @@ -9,7 +9,7 @@ LINUX_VERSION ?= "3.10.17" KMETA = "meta" -SRCREV_machine ?= "375aee37c2508899b6a8c0bdff7d4d67cb75fb36" +SRCREV_machine ?= "c03195ed6e3066494e3fb4be69154a57066e845b" SRCREV_meta ?= "f1c9080cd27f99700fa59b5375d1ddd0afe625ad" |