diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-07-27 12:57:08 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-01 11:46:36 +0100 |
commit | 711274efbbf9a750a740065c1a538217a4f3fba3 (patch) | |
tree | 134f17029553db3f8568cbad810fb540e97839fd /meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb | |
parent | 84dbace51d86efcaa50c1b0cbc4d44ac884f26fc (diff) | |
download | openembedded-core-711274efbbf9a750a740065c1a538217a4f3fba3.tar.gz openembedded-core-711274efbbf9a750a740065c1a538217a4f3fba3.tar.bz2 openembedded-core-711274efbbf9a750a740065c1a538217a4f3fba3.zip |
linux-yocto/4.4: mousedev and printk configuation streamlining
Integrating two changes to the 4.4 kernel:
mousedev: fix warning err caused by __cpu_to_le16p()
mousedev: fix warning err caused by __cpu_to_le16p()
following warning msg is found when compiling the kernel for qemumips:
.../drivers/input/mousedev.c:749:15: warning: passing argument 1 of
'__cpu_to_le16p' from incompatible pointer type [-Wincompatible-pointer-types]
convert the function's parameter to (__u16 *) to fix this warning.
Signed-off-by: Zhenbo Gao <zhenbo.gao@windriver.com>
printk.scc: don't include kernel-debug.scc
There is no need to include kernel-debug.scc into printk.scc as
options from printk.cfg don't depend on CONFIG_DEBUG* options from
kernel-debug.cfg
Moreover, enabling CONFIG_DEBUG* options makes kernel much bigger,
increases build time and consumed a lot of additional disk space.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb index 635d91ca3a..557f17c9b4 100644 --- a/meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb @@ -10,7 +10,7 @@ KMETA = "kernel-meta" KCONF_BSP_AUDIT_LEVEL = "2" SRCREV_machine ?= "ddab242999407fadae68e7ee5381b0ec6679d443" -SRCREV_meta ?= "4789b41c5605189902d2c1a674f8616d41ee218d" +SRCREV_meta ?= "d3cc76c3cb20247b16c16b2367decf08b5fb90fa" PV = "${LINUX_VERSION}+git${SRCPV}" |