diff --git a/support/testing/infra/emulator.py b/support/testing/infra/emulator.py index 09f81eca89..624740fcb1 100644 --- a/support/testing/infra/emulator.py +++ b/support/testing/infra/emulator.py @@ -54,16 +54,16 @@ class Emulator(object): if arch == "armv7": kernel = infra.download(self.downloaddir, - "kernel-vexpress-5.10.7") + "kernel-vexpress-5.10.202") dtb = infra.download(self.downloaddir, - "vexpress-v2p-ca9-5.10.7.dtb") + "vexpress-v2p-ca9-5.10.202.dtb") qemu_cmd += ["-dtb", dtb] qemu_cmd += ["-M", "vexpress-a9"] elif arch == "armv5": kernel = infra.download(self.downloaddir, - "kernel-versatile-5.10.7") + "kernel-versatile-5.10.202") dtb = infra.download(self.downloaddir, - "versatile-pb-5.10.7.dtb") + "versatile-pb-5.10.202.dtb") qemu_cmd += ["-dtb", dtb] qemu_cmd += ["-M", "versatilepb"] qemu_cmd += ["-device", "virtio-rng-pci"] diff --git a/support/testing/run-tests b/support/testing/run-tests index e8c540f370..485811b746 100755 --- a/support/testing/run-tests +++ b/support/testing/run-tests @@ -65,10 +65,10 @@ def main(): BRConfigTest.downloaddir = os.path.abspath(args.download) if args.prepare_only: - emulator_builtin_binaries = ["kernel-vexpress-5.10.7", - "vexpress-v2p-ca9-5.10.7.dtb", - "kernel-versatile-5.10.7", - "versatile-pb-5.10.7.dtb"] + emulator_builtin_binaries = ["kernel-vexpress-5.10.202", + "vexpress-v2p-ca9-5.10.202.dtb", + "kernel-versatile-5.10.202", + "versatile-pb-5.10.202.dtb"] print("Downloading emulator builtin binaries") for binary in emulator_builtin_binaries: infra.download(BRConfigTest.downloaddir, binary)