]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci(opensuse): remove workaround for a sym link
authorJo Zzsi <jozzsicsataban@gmail.com>
Wed, 17 Sep 2025 18:55:44 +0000 (14:55 -0400)
committerLaszlo <laszlo.gombos@gmail.com>
Wed, 17 Sep 2025 22:41:03 +0000 (18:41 -0400)
The sym link to the kernel Image workaround is no longer
needed for arm64, as df93355 is landed.

test/container/Dockerfile-opensuse

index 8d2d1b7963c94bf99ea8d1267368398257e91f25..e2912a8842b1f3e694e10cb46c031d658619f904 100644 (file)
@@ -59,8 +59,3 @@ RUN zypper --non-interactive install --no-recommends \
     xorriso \
     zstd \
     && zypper --non-interactive dist-upgrade --no-recommends
-
-# workaround for openSUSE on arm64
-RUN \
-    KVERSION="$(cd /lib/modules && ls -1 | tail -1)" \
-    && if [ "$(arch)"="aarch64" ] && [ -e /usr/lib/modules/"$KVERSION"/Image ]; then ln -sf /usr/lib/modules/"$KVERSION"/Image /usr/lib/modules/"$KVERSION"/vmlinuz; fi