All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-ppc][PATCH 1/5] remove obsolete patches
@ 2014-07-22 10:32 ting.liu
  2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 2/5] luajit: add bbappend to hold ppc specific patch ting.liu
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: ting.liu @ 2014-07-22 10:32 UTC (permalink / raw)
  To: meta-freescale

From: Ting Liu <b28495@freescale.com>

Signed-off-by: Ting Liu <b28495@freescale.com>
---
 ...-include-to-usr-local-include-in-Makefile.patch |   36 ------------------
 .../0001-fix-sizeof-pointer-memaccess-error.patch  |   39 --------------------
 2 files changed, 0 insertions(+), 75 deletions(-)
 delete mode 100644 recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch
 delete mode 100644 recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch

diff --git a/recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch b/recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch
deleted file mode 100644
index 15c397d..0000000
--- a/recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-Upstream-Status: Backport
-
-From b9e8c37220c80e78289a1e87b50c09418eb59a7e Mon Sep 17 00:00:00 2001
-From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
-Date: Fri, 08 Mar 2013 11:21:52 +0000
-Subject: libtraceevent: Remove hard coded include to /usr/local/include in Makefile
-
-having /usr/local/include hardcoded into the makefile is not necessary
-as this is automatically included by GCC. It also infects cross-compile
-builds with the host systems includes.
-
-Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
-Acked-by: Namhyung Kim <namhyung@kernel.org>
-Cc: Ingo Molnar <mingo@redhat.com>
-Cc: Paul Mackerras <paulus@samba.org>
-Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
-Link: http://lkml.kernel.org/r/1362741712-21308-1-git-send-email-ml@communistcode.co.uk
-Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
----
-(limited to 'tools/lib/traceevent/Makefile')
-
-diff --git a/tools/lib/traceevent/Makefile b/tools/lib/traceevent/Makefile
-index a20e320..0b0a907 100644
---- a/tools/lib/traceevent/Makefile
-+++ b/tools/lib/traceevent/Makefile
-@@ -122,7 +122,7 @@ export Q VERBOSE
- 
- EVENT_PARSE_VERSION = $(EP_VERSION).$(EP_PATCHLEVEL).$(EP_EXTRAVERSION)
- 
--INCLUDES = -I. -I/usr/local/include $(CONFIG_INCLUDES)
-+INCLUDES = -I. $(CONFIG_INCLUDES)
- 
- # Set compile option CFLAGS if not set elsewhere
- CFLAGS ?= -g -Wall
---
-cgit v0.9.2
diff --git a/recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch b/recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch
deleted file mode 100644
index a562273..0000000
--- a/recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 59e68351114a65a1f315ded1ee92f4370b8547e2 Mon Sep 17 00:00:00 2001
-From: Ting Liu <b28495@freescale.com>
-Date: Mon, 8 Jul 2013 17:03:43 +0800
-Subject: [PATCH] fix sizeof-pointer-memaccess error
-
-build: src/livetree.c
-.../hypervisor/git-r3/git/src/devtree.c: In function 'read_intmap':
-.../hypervisor/git-r3/git/src/devtree.c:1513:25: error: argument to 'sizeof' in 'memset' call is the same expression as the destination; did you mean to dereference it? [-Werror=sizeof-pointer-memaccess]
-    memset(ent, 0, sizeof(ent));
-                         ^
-cc1: all warnings being treated as errors
-build: src/ipi_doorbell.c
-make[1]: *** [bin/devtree.o] Error 1
-make[1]: *** Waiting for unfinished jobs....
-make[1]: Leaving directory `.../hypervisor/git-r3/git/output'
-make: *** [all] Error 2
-ERROR: oe_runmake failed
-
-Signed-off-by: Ting Liu <b28495@freescale.com>
----
- src/devtree.c |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/src/devtree.c b/src/devtree.c
-index f3710e4..3295e20 100644
---- a/src/devtree.c
-+++ b/src/devtree.c
-@@ -1510,7 +1510,7 @@ static void read_intmap(dt_node_t *node)
- 		}
- 
- 		if (imap + ent->parent_naddr + ent->parent_nint > imap_end) {
--			memset(ent, 0, sizeof(ent));
-+			memset(ent, 0, sizeof(intmap_entry_t));
- 			break;
- 		}
- 
--- 
-1.7.5.4
-
-- 
1.7.3.4



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

end of thread, other threads:[~2014-07-22 16:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-22 10:32 [meta-fsl-ppc][PATCH 1/5] remove obsolete patches ting.liu
2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 2/5] luajit: add bbappend to hold ppc specific patch ting.liu
2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 3/5] init-ifupdown: use customized interfaces for qoriq-ppc ting.liu
2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 4/5] merge-files: add recipe ting.liu
2014-07-22 16:21   ` Bob Cochran
2014-07-22 16:35     ` SabreLite HDMI? Randy Krakora
2014-07-22 16:55       ` Eric Nelson
2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 5/5] procps: disabling reverse-path filtering ting.liu

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.