Re: [OE-core] Strange segfault on native Go binaries

2020-12-12 Thread Khem Raj
On Sat, Dec 12, 2020 at 3:52 PM Otavio Salvador wrote: > > Hello all, > > I am trying to debug a strange issue on native Go binaries. We're > seeing it on 'glide' for example. > > If I build 'glide-native' and I go to its tmp/work/.../image/bin/glide > it works just fine. For example, running it

[OE-core] [PATCH v2 1/2] musl: Update to latest master

2020-12-12 Thread Khem Raj
Refresh patches to apply to this update Brings in following fixes * 1e4204d5 use libc-internal malloc for newlocale/freelocale * 36246b34 drop use of pthread_once in newlocale * 37fcc13c lift locale lock out of internal __get_locale * c53e9b23 fix misleading comment in strstr * b67d56c7 drop use

[OE-core] [PATCH 2/2] systemd: Fix reallocarray check

2020-12-12 Thread Khem Raj
Musl brought this latent issue to fore Signed-off-by: Khem Raj --- .../0001-meson-Fix-reallocarray-check.patch | 30 +++ meta/recipes-core/systemd/systemd_247.1.bb| 1 + 2 files changed, 31 insertions(+) create mode 100644

[OE-core] Strange segfault on native Go binaries

2020-12-12 Thread Otavio Salvador
Hello all, I am trying to debug a strange issue on native Go binaries. We're seeing it on 'glide' for example. If I build 'glide-native' and I go to its tmp/work/.../image/bin/glide it works just fine. For example, running it we see the expected error as I am running inside a clean environment

[OE-core] [PATCH] parted: Make readline dependency optional

2020-12-12 Thread Mark Jonas
Signed-off-by: Mark Jonas --- meta/recipes-extended/parted/parted_3.3.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/parted/parted_3.3.bb b/meta/recipes-extended/parted/parted_3.3.bb index a1fd3ef07b..ce40c04ad4 100644 ---

[OE-core] [poky][dunfell][PATCH] busybox: Implement dd iflag/oflag=direct

2020-12-12 Thread akash hadke
This implementation assumes that iflag/oflag=direct will be used only on block devices and files that are multiples of pagesize, and makes no effort to solve issues with unaligned or partial reads (unlike gnu coreutils dd) Signed-off-by: akash hadke ---