mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
be8c765c7c
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
From 3fd4db2ce1710f45eb297ae6b2c10726b33204f3 Mon Sep 17 00:00:00 2001
|
|
From: Andrea Adami <andrea.adami@gmail.com>
|
|
Date: Sun, 29 Apr 2018 00:46:16 +0200
|
|
Subject: [PATCH] arm64: crashdump-arm64.c: fix warning
|
|
|
|
from ../git/kexec/kexec.h:6,
|
|
from ../git/kexec/arch/arm64/crashdump-arm64.c:18:
|
|
/tmp/build/tmp-musl/work/aarch64-oe-linux-musl/kexec-tools-klibc/0.6+gitAUTOINC+
|
|
0481e9ed61-r0/recipe-sysroot/usr/lib/klibc/include/klibc/compiler.h:144:0: warni
|
|
ng: "__bitwise" redefined
|
|
# define __bitwise
|
|
|
|
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
|
|
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
kexec/arch/arm64/crashdump-arm64.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/kexec/arch/arm64/crashdump-arm64.c b/kexec/arch/arm64/crashdump-arm64.c
|
|
index 4fd7aa8..890d88f 100644
|
|
--- a/kexec/arch/arm64/crashdump-arm64.c
|
|
+++ b/kexec/arch/arm64/crashdump-arm64.c
|
|
@@ -13,6 +13,9 @@
|
|
#define _GNU_SOURCE
|
|
|
|
#include <errno.h>
|
|
+#ifdef __KLIBC__
|
|
+#include <sys/types.h>
|
|
+#endif
|
|
#include <linux/elf.h>
|
|
|
|
#include "kexec.h"
|