mirror of
https://github.com/qemu/qemu.git
synced 2025-07-22 18:27:05 +00:00

To support the newly added gb200 machine, add appropriate tests and extend do_test_arm_aspeed_openbmc() to support the hostname of this new system: "gb200nvl-obmc". Signed-off-by: Ed Tanous <etanous@nvidia.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Link: https://lore.kernel.org/qemu-devel/20250703144249.3348879-5-etanous@nvidia.com [ clg: Adjust commit log to document do_test_arm_aspeed_openbmc() change ] Signed-off-by: Cédric Le Goater <clg@redhat.com>
27 lines
922 B
Python
27 lines
922 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# Functional test that boots the ASPEED machines
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
from qemu_test import Asset
|
|
from aspeed import AspeedTest
|
|
|
|
|
|
class GB200Machine(AspeedTest):
|
|
|
|
ASSET_GB200_FLASH = Asset(
|
|
'https://github.com/legoater/qemu-aspeed-boot/raw/refs/heads/master/images/gb200nvl-obmc/obmc-phosphor-image-gb200nvl-obmc-20250702182348.static.mtd.xz',
|
|
'b84819317cb3dc762895ad507705978ef000bfc77c50c33a63bdd37921db0dbc')
|
|
|
|
def test_arm_aspeed_gb200_openbmc(self):
|
|
image_path = self.uncompress(self.ASSET_GB200_FLASH)
|
|
|
|
self.do_test_arm_aspeed_openbmc('gb200nvl-bmc', image=image_path,
|
|
uboot='2019.04', cpu_id='0xf00',
|
|
soc='AST2600 rev A3',
|
|
image_hostname='gb200nvl-obmc')
|
|
|
|
if __name__ == '__main__':
|
|
AspeedTest.main()
|