diff --git a/support/testing/tests/package/test_zfs.py b/support/testing/tests/package/test_zfs.py index 1b907ac4de..c218cc36a8 100644 --- a/support/testing/tests/package/test_zfs.py +++ b/support/testing/tests/package/test_zfs.py @@ -74,9 +74,18 @@ class TestZfsGlibc(TestZfsBase): class TestZfsUclibc(TestZfsBase): - config = TestZfsBase.config + \ + # The Bootling aarch64 uclibc stable 2025.08-1 needs to be + # rebuild with uClibc-ng 1.0.55. + # See: https://github.com/wbx-github/uclibc-ng/commit/94c1297d52263e20cd9715601afa37f49d008d93 + config = TestZfsBase.config.replace('BR2_TOOLCHAIN_EXTERNAL=y\n', '') + config = config.replace('BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y\n', '') + \ """ - BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_UCLIBC_STABLE=y + BR2_TOOLCHAIN_BUILDROOT_UCLIBC=y + BR2_KERNEL_HEADERS_5_4=y + BR2_TOOLCHAIN_BUILDROOT_LOCALE=y + BR2_PTHREAD_DEBUG=y + BR2_TOOLCHAIN_BUILDROOT_CXX=y + BR2_GCC_ENABLE_OPENMP=y """ def test_run(self):