From 14fb629ab62047da247c30d68aca03d85770e8b9 Mon Sep 17 00:00:00 2001 From: LuiSzee Date: Sun, 21 Nov 2021 00:46:56 +0800 Subject: [PATCH] [arm64][qemu] upgrade qemu to 6.1.0-8 for fix systemd-sonic-generator compile error (#9320) for compile error when build systemd-sonic-generator_1.0.0_arm64.deb on qemu arm64 bullseye. ``` boost::filesystem::copy_file: Function not implemented: "tests/testfiles/single_inst.service", "tests/ssg-test/systemd/single_inst.service" boost::filesystem::copy_file: Function not implemented: "tests/testfiles/multi_inst_b.service", "tests/ssg-test/systemd/multi_inst_b.service" boost::filesystem::copy_file: Function not implemented: "tests/testfiles/multi_inst_a.service", "tests/ssg-test/systemd/multi_inst_a.service" boost::filesystem::copy_file: Function not implemented: "tests/testfiles/multi_inst_b@.service", "tests/ssg-test/systemd/multi_inst_b@.service" boost::filesystem::copy_file: Function not implemented: "tests/testfiles/multi_inst_a@.service", "tests/ssg-test/systemd/multi_inst_a@.service" boost::filesystem::copy_file: Function not implemented: "tests/testfiles/test.timer", "tests/ssg-test/systemd/test.timer" boost::filesystem::copy_file: Function not implemented: "tests/testfiles/test.service", "tests/ssg-test/systemd/test.service" ssg-test.cc:244: Failure Expected equality of these values: fs::exists(path) Which is: false expected_result Which is: true Failed validation: "tests/ssg-test/generator/multi-user.target.wants/multi_inst_b.service" ``` Co-authored-by: shil --- sonic-slave-bullseye/Dockerfile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonic-slave-bullseye/Dockerfile.j2 b/sonic-slave-bullseye/Dockerfile.j2 index fef74c3f1735..8ed4446f0fa7 100644 --- a/sonic-slave-bullseye/Dockerfile.j2 +++ b/sonic-slave-bullseye/Dockerfile.j2 @@ -3,7 +3,7 @@ FROM multiarch/qemu-user-static:x86_64-arm-5.2.0-2 as qemu FROM multiarch/debian-debootstrap:armhf-bullseye COPY --from=qemu /usr/bin/qemu-arm-static /usr/bin {%- elif CONFIGURED_ARCH == "arm64" and MULTIARCH_QEMU_ENVIRON == "y" %} -FROM multiarch/qemu-user-static:x86_64-aarch64-5.2.0-2 as qemu +FROM multiarch/qemu-user-static:x86_64-aarch64-6.1.0-8 as qemu FROM multiarch/debian-debootstrap:arm64-bullseye COPY --from=qemu /usr/bin/qemu-aarch64-static /usr/bin {%- else -%}