From 8fc67f3901fd77381d9e88da78d6345d15dda5ce Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 4 Apr 2026 08:03:16 -0600 Subject: [PATCH] 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 --- test/py/tests/test_ut.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):