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>
25 lines
769 B
Diff
25 lines
769 B
Diff
Upstream-Status: Pending
|
|
|
|
Description: Add missing 'std::' scope identifiers.
|
|
Forwarded: not-needed
|
|
--- a/system/core/libunwindstack/include/unwindstack/DwarfMemory.h
|
|
+++ b/system/core/libunwindstack/include/unwindstack/DwarfMemory.h
|
|
@@ -29,7 +29,7 @@
|
|
DwarfMemory(Memory* memory) : memory_(memory) {}
|
|
virtual ~DwarfMemory() = default;
|
|
|
|
- bool ReadBytes(void* dst, size_t num_bytes);
|
|
+ bool ReadBytes(void* dst, std::size_t num_bytes);
|
|
|
|
template <typename SignedType>
|
|
bool ReadSigned(uint64_t* value);
|
|
@@ -39,7 +39,7 @@
|
|
bool ReadSLEB128(int64_t* value);
|
|
|
|
template <typename AddressType>
|
|
- size_t GetEncodedSize(uint8_t encoding);
|
|
+ std::size_t GetEncodedSize(uint8_t encoding);
|
|
|
|
bool AdjustEncodedValue(uint8_t encoding, uint64_t* value);
|
|
|