On 3/10/21 9:49 AM, Dirk Müller wrote:
Sorry that noone followed up on this - https://github.com/openSUSE/open-build-service/blob/a0a35a5f969e863674c0e313... the code does not cover this variant.
I can submit that code change for you if you want. can you tell me a product or board name that we can use in the comment?
Hey Dirk, thanks for the reply! The server we're using is an Ampere eMAG. One of my colleagues was even kind enough to prepare a ready-made patch: diff --git a/src/backend/bs_worker b/src/backend/bs_worker index e0c5922d1c..cde0d7dcfc 100755 --- a/src/backend/bs_worker +++ b/src/backend/bs_worker @@ -805,6 +805,9 @@ if (open(FILE, "<", "/proc/cpuinfo")) { } elsif ($cpu_variant eq "0x1") { # APM X-Gene 2 supports aarch32 $supports_aarch32 = 1; + } elsif ($cpu_variant eq "0x3") { + # Ampere eMAG supports aarch32 + $supports_aarch32 = 1; } } elsif ($cpu_implementer eq "0x41") { # ARM Inc. - all variants support aarch32 compat for now Kyle