Re: [OE-core] [PATCH 15/26] dpkg: update 1.20.9 -> 1.21.1

2021-12-16 Thread Alexey Brodkin via lists.openembedded.org
Hi Alexander, > From: Alexander Kanavin > Sent: Thursday, December 16, 2021 1:40 AM > To: openembedded-core@lists.openembedded.org > > Cc: Alexander Kanavin ; Alexey Brodkin > > Subject: [PATCH 15/26] dpkg: update 1.20.9 -> 1.21.1 >   > Signed-off-by: Alexander Kanavin > --- >  meta/recipes

[OE-core] [PATCH] openssl: Use linux-latomic target for ARC

2021-12-07 Thread Alexey Brodkin via lists.openembedded.org
Some atomic ops for 32-bit ARC processors are implemented in GCC's libatomic. For example those dealing with 64-bit data (e.g. __atomic_load_8()) as well as some others. That said it's required to add "-latomic" for successful linkage. Otherwise error messages like this happen on OpenSSL building

[OE-core] [PATCH v2] dhcpcd: add ARC support

2021-07-04 Thread Alexey Brodkin via lists.openembedded.org
This retrofits ARC support from upstream [1]. Should be a part of the next release of "dhcpcd". https://github.com/NetworkConfiguration/dhcpcd/commit/82386110e67cf75c224e9817fce55e6b0f143266 Signed-off-by: Alexey Brodkin Cc: Alexandre Belloni --- Changes in v2: * Added "Upstream-Status" tag

Re: [OE-core] [PATCH] dhcpcd: add ARC support

2021-07-04 Thread Alexey Brodkin via lists.openembedded.org
Hi Alexandre, > > I did run that through the autobuilders and it is working fine but this > is missing an Upstream-Status tag. > I was a bit surprised by your response being under impression that I did add "Upstream-Status" tag in the patch. So I went to check... and indeed, I added it, but just

[OE-core] [PATCH] dhcpcd: add ARC support

2021-07-02 Thread Alexey Brodkin via lists.openembedded.org
This retrofits ARC support from upstream [1]. Should be a part of the next release of "dhcpcd". https://github.com/NetworkConfiguration/dhcpcd/commit/82386110e67cf75c224e9817fce55e6b0f143266 Signed-off-by: Alexey Brodkin --- meta/recipes-connectivity/dhcpcd/dhcpcd_9.4.0.bb | 1 + ...rc-privs

[OE-core] [PATCH] dpkg: Add ARC support

2021-06-25 Thread Alexey Brodkin via lists.openembedded.org
This back-ports ARC support which was added after the most recent tag 1.20.9 was cut. So on the next version bump this change to be reverted. Signed-off-by: Alexey Brodkin --- .../dpkg/0014-arch-Add-support-for-ARCv2-CPU.patch | 68 ++ meta/recipes-devtools/dpkg/dpkg_1.20.9.b

[OE-core] [PATCH] default-distrovars.inc: Remove seccomp for ARC

2021-06-24 Thread Alexey Brodkin via lists.openembedded.org
libseccomp needs too be ported to ARC first Signed-off-by: Alexey Brodkin Cc: Khem Raj --- meta/conf/distro/include/default-distrovars.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc in

[OE-core] [PATCH] gcc: Apply multilib fix to ARC as well

2021-06-20 Thread Alexey Brodkin via lists.openembedded.org
W/o that hack target GCC assume existence of per-mcpu folders, which are missing. In particular G++ failed to find "bits/c++config.h": -->8-- root@hsdk:~# cat test.cc #include int myfunc(void) { } root@hsdk:~# g++ -c test.cc -v Using built-in specs. COLLE

[OE-core] [PATCH] gdb: Add native GDB support for ARC

2021-06-15 Thread Alexey Brodkin via lists.openembedded.org
This adds support of so-called "native" GDB for ARC processors. It was submitted upstream a bit late for inclusion in v10.x, but already in the upstream "master" branch and will be an essential part of v11.1 whenever it happens. These are the changes from upstream "master": * https://sourceware.

[OE-core] [PATCH] gcc: Fixes for ARC

2021-06-11 Thread Alexey Brodkin via lists.openembedded.org
A couple of fixes to be a part of 11.2 whenever it happens 1. https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=0061fabeb9393c362601486105202cfe837a5a68 Fixes "harfbuzz" build, see https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/issues/382 for all the gory details. 2. https