From: Simon Glass Date: Sat, 4 Apr 2026 14:03:16 +0000 (-0600) Subject: test: Rename setup_bootflow_image() X-Git-Tag: v2026.07-rc1~33^2~2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=8fc67f3901fd77381d9e88da78d6345d15dda5ce;p=thirdparty%2Fu-boot.git test: Rename setup_bootflow_image() The name of this is fairly vague. Use 'extlinux' so that it is clear that it relates to that format. Signed-off-by: Simon Glass --- diff --git a/test/py/tests/test_ut.py b/test/py/tests/test_ut.py index 9b7f1c6f3fc..a858f2c2d13 100644 --- a/test/py/tests/test_ut.py +++ b/test/py/tests/test_ut.py @@ -159,7 +159,7 @@ booti ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r} fsh.cleanup() -def setup_bootflow_image(ubman, devnum, basename, vmlinux, initrd, dtbdir, +def setup_extlinux_image(ubman, devnum, basename, vmlinux, initrd, dtbdir, script): """Create a 20MB disk image with a single FAT partition @@ -236,7 +236,7 @@ label Fedora-Workstation-armhfp-31-1.9 (5.3.7-301.fc31.armv7hl) append ro root=UUID=9732b35b-4cd5-458b-9b91-80f7047e0b8a rhgb quiet LANG=en_US.UTF-8 cma=192MB cma=256MB fdtdir /%s/ initrd /%s''' % (vmlinux, dtbdir, initrd) - setup_bootflow_image(ubman, devnum, basename, vmlinux, initrd, dtbdir, + setup_extlinux_image(ubman, devnum, basename, vmlinux, initrd, dtbdir, script) def setup_cros_image(ubman):