From: Cédric Le Goater Date: Mon, 5 Jan 2026 16:03:58 +0000 (+0100) Subject: tests/functional/arm/aspeed: Update buildroot images to 2025.11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a477dd1742884eb3ee0d02ae4a0b9ad9edf07d4;p=thirdparty%2Fqemu.git tests/functional/arm/aspeed: Update buildroot images to 2025.11 The main changes compared to upstream 2025.11 buildroot are - Linux v6.18 - latest OpenBMC U-Boot - extra packages (ssh, etc.) See https://github.com/legoater/buildroot/commits/aspeed-2025.11 Acked-by: Jamin Lin Link: https://lore.kernel.org/qemu-devel/20260105160358.771511-1-clg@redhat.com Signed-off-by: Cédric Le Goater --- diff --git a/tests/functional/arm/test_aspeed_ast2500.py b/tests/functional/arm/test_aspeed_ast2500.py index 5efd104c2b..ac33c62a9f 100755 --- a/tests/functional/arm/test_aspeed_ast2500.py +++ b/tests/functional/arm/test_aspeed_ast2500.py @@ -10,15 +10,15 @@ from aspeed import AspeedTest class AST2500Machine(AspeedTest): - ASSET_BR2_202411_AST2500_FLASH = Asset( + ASSET_BR2_202511_AST2500_FLASH = Asset( ('https://github.com/legoater/qemu-aspeed-boot/raw/master/' - 'images/ast2500-evb/buildroot-2024.11/flash.img'), - '641e6906c18c0f19a2aeb48099d66d4771929c361001d554d0d45c667413e13a') + 'images/ast2500-evb/buildroot-2025.11/flash.img'), + '31e5a8e280b982fb0e7c07eb71c94851002f99ac604dfe620e71a5d47cc87e78') def test_arm_ast2500_evb_buildroot(self): self.set_machine('ast2500-evb') - image_path = self.ASSET_BR2_202411_AST2500_FLASH.fetch() + image_path = self.ASSET_BR2_202511_AST2500_FLASH.fetch() self.vm.add_args('-device', 'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test') diff --git a/tests/functional/arm/test_aspeed_ast2600_buildroot.py b/tests/functional/arm/test_aspeed_ast2600_buildroot.py index 575a5f6414..3d130b9fd1 100755 --- a/tests/functional/arm/test_aspeed_ast2600_buildroot.py +++ b/tests/functional/arm/test_aspeed_ast2600_buildroot.py @@ -16,15 +16,15 @@ from qemu_test import exec_command_and_wait_for_pattern, skipIfMissingCommands class AST2600Machine(AspeedTest): - ASSET_BR2_202411_AST2600_FLASH = Asset( + ASSET_BR2_202511_AST2600_FLASH = Asset( ('https://github.com/legoater/qemu-aspeed-boot/raw/master/' - 'images/ast2600-evb/buildroot-2024.11/flash.img'), - '4bb2f3dfdea31199b51d66b42f686dc5374c144a7346fdc650194a5578b73609') + 'images/ast2600-evb/buildroot-2025.11/flash.img'), + 'c64a0755501393d570ca318e326e1e9f8372edc5a6452cdccc3649bc9fd2c138') def test_arm_ast2600_evb_buildroot(self): self.set_machine('ast2600-evb') - image_path = self.ASSET_BR2_202411_AST2600_FLASH.fetch() + image_path = self.ASSET_BR2_202511_AST2600_FLASH.fetch() self.vm.add_args('-device', 'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test')