mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-04 17:54:08 +00:00
Relocate the recipe from dynamic-layers/selinux/ to the main meta-oe/recipes-devtools/ directory. The android-tools recipe (version 29.0.6.r14) was previously restricted to the selinux dynamic-layer. Investigation shows that version 29.0.6.r14 does not have a hard dependency on libselinux for core tool functionality. (adb, fastboot, and sparse image tools). - Basic runable test was done for binaries in android-tools-native - Checked for selinux absense by looking for selinx using $ ldd binary-name Changes: - Relocate recipe from dynamic-layers/selinux/ to recipes-devtools/ Signed-off-by: AshishKumar Mishra <ashishkumar.mishra@bmwtechworks.in> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
23 lines
438 B
Diff
23 lines
438 B
Diff
Upstream-Status: Pending
|
|
|
|
Description: Bring Clang's _Nonnull keyword to GCC
|
|
Author: Kai-Chung Yan
|
|
Forwarded: not-needed
|
|
--- a/system/core/adb/sysdeps.h
|
|
+++ b/system/core/adb/sysdeps.h
|
|
@@ -40,11 +40,12 @@
|
|
#include "sysdeps/network.h"
|
|
#include "sysdeps/stat.h"
|
|
|
|
+#define _Nonnull
|
|
+#define _Nullable
|
|
+
|
|
#ifdef _WIN32
|
|
|
|
// Clang-only nullability specifiers
|
|
-#define _Nonnull
|
|
-#define _Nullable
|
|
|
|
#include <ctype.h>
|
|
#include <direct.h>
|