mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-30 13:00:02 +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>
30 lines
836 B
Diff
30 lines
836 B
Diff
From ebd2b0e414c98467156b961abb470b5d07f37ea8 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 29 Sep 2017 23:11:53 -0700
|
|
Subject: [PATCH] arm: Do not set a fallback march and mtune
|
|
|
|
In OE we pass the options explicitly, there is
|
|
no need to set it inside the makefiles, we will
|
|
need to compute values for CPU_ARCH and CPU_TUNE
|
|
which is a bit harder in OE
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
usr/klibc/arch/arm/MCONFIG | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/usr/klibc/arch/arm/MCONFIG
|
|
+++ b/usr/klibc/arch/arm/MCONFIG
|
|
@@ -10,7 +10,7 @@
|
|
CPU_ARCH ?= armv4
|
|
CPU_TUNE ?= strongarm
|
|
|
|
-KLIBCOPTFLAGS += -Os -march=$(CPU_ARCH) -mtune=$(CPU_TUNE)
|
|
+KLIBCOPTFLAGS += -Os
|
|
KLIBCBITSIZE = 32
|
|
KLIBCREQFLAGS += -fno-exceptions
|
|
KLIBCSTRIPFLAGS += -R .ARM.exidx
|