Linux distributions use different dumpmachine outputs for the ARM architecture. arm, armv6l, armv7l. For the syscall annotation, these variants are standardized to “arm”. Signed-off-by: Julian Wundrak <julian(a)wundrak.net> --- Hey everyone, This resolves bug #117. I hope I did everything correctly, because this is the first time I have had to submit a patch via git send emails. Julian Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 31cbac3..1b83234 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ $(if $(TARGET),,$(error Failed to get target architecture)) # Get 'uname -m'-like architecture description for target TARGET_ARCH := $(firstword $(subst -, ,$(TARGET))) TARGET_ARCH := $(patsubst [:upper:],[:lower:],$(TARGET_ARCH)) +TARGET_ARCH := $(patsubst arm%,arm,$(TARGET)) TARGET_ARCH := $(subst powerpc,ppc,$(TARGET_ARCH)) # On some systems enabling optimization also enables source fortification, -- 2.49.0
Hi Julian, On Wed, 26 Mar 2025 20:14:31 +0000 Julian Wundrak <julian(a)wundrak.net> wrote:Linux distributions use different dumpmachine outputs for the ARM architecture. arm, armv6l, armv7l. For the syscall annotation, these variants are standardized to “arm”. Signed-off-by: Julian Wundrak <julian(a)wundrak.net> --- Hey everyone, This resolves bug #117. I hope I did everything correctly, because this is the first time I have had to submit a patch via git send emails.Then you got it right on the first attempt! I'll just add a tag in the commit message: Link: https://bugs.passt.top/show_bug.cgi?id=117 ...and I'll run tests, then apply it. -- Stefano
On Wed, 26 Mar 2025 21:29:02 +0100 Stefano Brivio <sbrivio(a)redhat.com> wrote:Hi Julian, On Wed, 26 Mar 2025 20:14:31 +0000 Julian Wundrak <julian(a)wundrak.net> wrote:...almost: you forgot to fix this as you mentioned in: https://bugs.passt.top/show_bug.cgi?id=117#c3 I'm fixing it up on merge as it's a trivial typo. -- StefanoLinux distributions use different dumpmachine outputs for the ARM architecture. arm, armv6l, armv7l. For the syscall annotation, these variants are standardized to “arm”. Signed-off-by: Julian Wundrak <julian(a)wundrak.net> --- Hey everyone, This resolves bug #117. I hope I did everything correctly, because this is the first time I have had to submit a patch via git send emails.Then you got it right on the first attempt! I'll just add a tag in the commit message: Link: https://bugs.passt.top/show_bug.cgi?id=117 ...and I'll run tests, then apply it.