mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-11 09:24:30 +02:00
Not a lot of big changes in this release, mostly code shrinks and bug fixes here and there. Hence, I don't expect too much breakage. Most patches applied as is and didn't require any changes either. Nonetheless, I rebased the entire patchset and removed patches that were backported. The 0001-modutils-check-ELF-header-before-calling-finit_modul.patch should be superseded by an upstream modutils change which checks that if the loaded module file path ends in .ko and if not attempts to uncompress it first. Thereby preventing compressed modules to be passed to the kernel and causing a weird error to be emitted. Therefore, this patch was removed See: https://git.busybox.net/busybox/commit/?id=af5277f883e8fc2e0236aa9ecc5115ecaffd0ccb
27 lines
785 B
Diff
27 lines
785 B
Diff
From 9fc807db6b3b48da354e4c9427f18baa48f0a574 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?S=C3=B6ren=20Tempel?= <soeren+git@soeren-tempel.net>
|
|
Date: Sat, 28 Sep 2024 22:06:22 +0200
|
|
Subject: [PATCH] od: Skip `od -B` on big-endian
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Fails on s390x.
|
|
|
|
Signed-off-by: Sören Tempel <soeren+git@soeren-tempel.net>
|
|
---
|
|
testsuite/od.tests | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/testsuite/od.tests b/testsuite/od.tests
|
|
index 4f245a7e8..be987a42d 100755
|
|
--- a/testsuite/od.tests
|
|
+++ b/testsuite/od.tests
|
|
@@ -61,6 +61,7 @@ testing "od -a (DESKTOP)" \
|
|
"\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
|
|
SKIP=
|
|
|
|
+$little_endian || SKIP=1
|
|
testing "od -B" \
|
|
"od -B" \
|
|
"\
|