[PATCH 09/17] test/py: Add a test image for Ubuntu
Simon Glass
sjg at chromium.org
Wed Mar 19 15:38:03 CET 2025
Add an extlinux image that contains a few Ubuntu entries.
Increase the number of sandbox-USB-hub ports to permit this.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
arch/sandbox/dts/test.dts | 9 +++++++-
drivers/usb/emul/sandbox_hub.c | 2 +-
test/boot/bootdev.c | 34 +++++++++++++++++++----------
test/boot/bootflow.c | 6 +++--
test/dm/blk.c | 4 ++--
test/dm/usb.c | 4 ++--
test/py/tests/test_ut.py | 40 ++++++++++++++++++++++++++++++++++
7 files changed, 79 insertions(+), 20 deletions(-)
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index 6cd87b74a64..060c48eaefd 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -1515,6 +1515,7 @@
#address-cells = <1>;
#size-cells = <0>;
hub-emul {
+ /* See SANDBOX_NUM_PORTS if you need more ports */
compatible = "sandbox,usb-hub";
#address-cells = <1>;
#size-cells = <0>;
@@ -1536,8 +1537,14 @@
sandbox,filepath = "testflash2.bin";
};
- keyb at 3 {
+ flash-stick at 3 {
reg = <3>;
+ compatible = "sandbox,usb-flash";
+ sandbox,filepath = "flash3.img";
+ };
+
+ keyb at 4 {
+ reg = <4>;
compatible = "sandbox,usb-keyb";
};
diff --git a/drivers/usb/emul/sandbox_hub.c b/drivers/usb/emul/sandbox_hub.c
index 3b3e59f978f..dc348d152c2 100644
--- a/drivers/usb/emul/sandbox_hub.c
+++ b/drivers/usb/emul/sandbox_hub.c
@@ -10,7 +10,7 @@
#include <dm/device-internal.h>
/* We only support up to 8 */
-#define SANDBOX_NUM_PORTS 4
+#define SANDBOX_NUM_PORTS 8
struct sandbox_hub_plat {
struct usb_dev_plat plat;
diff --git a/test/boot/bootdev.c b/test/boot/bootdev.c
index d5499918249..4333f3c977c 100644
--- a/test/boot/bootdev.c
+++ b/test/boot/bootdev.c
@@ -221,11 +221,14 @@ static int bootdev_test_order(struct unit_test_state *uts)
ut_assertok(env_set("boot_targets", "mmc1 mmc2 usb"));
ut_assertok(bootflow_scan_first(NULL, NULL, &iter, 0, &bflow));
- /* get the usb device which has a backing file (flash1.img) */
+ /* get the first usb device which has a backing file (flash1.img) */
+ ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
+
+ /* get the second usb device which has a backing file (flash3.img) */
ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
- ut_asserteq(5, iter.num_devs);
+ ut_asserteq(6, iter.num_devs);
ut_asserteq_str("mmc1.bootdev", iter.dev_used[0]->name);
ut_asserteq_str("mmc2.bootdev", iter.dev_used[1]->name);
ut_asserteq_str("usb_mass_storage.lun0.bootdev",
@@ -264,12 +267,13 @@ static int bootdev_test_order(struct unit_test_state *uts)
ut_asserteq(2, iter.num_devs);
/*
- * Now scan past mmc1 and make sure that the 3 USB devices show up. The
- * first one has a backing file so returns success
+ * Now scan past mmc1 and make sure that the 4 USB devices show up. The
+ * first two have a backing file so returns success
*/
ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
+ ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
- ut_asserteq(6, iter.num_devs);
+ ut_asserteq(7, iter.num_devs);
ut_asserteq_str("mmc2.bootdev", iter.dev_used[0]->name);
ut_asserteq_str("mmc1.bootdev", iter.dev_used[1]->name);
ut_asserteq_str("mmc0.bootdev", iter.dev_used[2]->name);
@@ -330,11 +334,14 @@ static int bootdev_test_prio(struct unit_test_state *uts)
/* 3 MMC and 3 USB bootdevs: MMC should come before USB */
ut_assertok(bootflow_scan_first(NULL, NULL, &iter, 0, &bflow));
- /* get the usb device which has a backing file (flash1.img) */
+ /* get the first usb device which has a backing file (flash1.img) */
+ ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
+
+ /* get the second usb device which has a backing file (flash3.img) */
ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
- ut_asserteq(6, iter.num_devs);
+ ut_asserteq(7, iter.num_devs);
ut_asserteq_str("mmc2.bootdev", iter.dev_used[0]->name);
ut_asserteq_str("usb_mass_storage.lun0.bootdev",
iter.dev_used[3]->name);
@@ -351,11 +358,14 @@ static int bootdev_test_prio(struct unit_test_state *uts)
ut_assertok(bootflow_scan_first(NULL, NULL, &iter, BOOTFLOWIF_HUNT,
&bflow));
- /* get the usb device which has a backing file (flash1.img) */
+ /* get the first usb device which has a backing file (flash1.img) */
+ ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
+
+ /* get the second usb device which has a backing file (flash3.img) */
ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
- ut_asserteq(7, iter.num_devs);
+ ut_asserteq(8, iter.num_devs);
ut_asserteq_str("usb_mass_storage.lun0.bootdev",
iter.dev_used[0]->name);
ut_asserteq_str("mmc2.bootdev", iter.dev_used[1]->name);
@@ -393,7 +403,7 @@ static int bootdev_test_hunter(struct unit_test_state *uts)
ut_assertok(bootdev_hunt("usb1", false));
ut_assert_nextline(
- "Bus usb at 1: scanning bus usb at 1 for devices... 5 USB Device(s) found");
+ "Bus usb at 1: scanning bus usb at 1 for devices... 6 USB Device(s) found");
ut_assert_console_end();
/* USB is 7th in the list, so bit 8 */
@@ -449,7 +459,7 @@ static int bootdev_test_cmd_hunt(struct unit_test_state *uts)
ut_assert_skip_to_line("Hunting with: spi_flash");
ut_assert_nextline("Hunting with: usb");
ut_assert_nextline(
- "Bus usb at 1: scanning bus usb at 1 for devices... 5 USB Device(s) found");
+ "Bus usb at 1: scanning bus usb at 1 for devices... 6 USB Device(s) found");
ut_assert_nextline("Hunting with: virtio");
ut_assert_console_end();
@@ -552,7 +562,7 @@ static int bootdev_test_hunt_prio(struct unit_test_state *uts)
ut_assert_nextline("Hunting with: ide");
ut_assert_nextline("Hunting with: usb");
ut_assert_nextline(
- "Bus usb at 1: scanning bus usb at 1 for devices... 5 USB Device(s) found");
+ "Bus usb at 1: scanning bus usb at 1 for devices... 6 USB Device(s) found");
ut_assert_console_end();
return 0;
diff --git a/test/boot/bootflow.c b/test/boot/bootflow.c
index 1447af2eb14..3ee87145dc8 100644
--- a/test/boot/bootflow.c
+++ b/test/boot/bootflow.c
@@ -1298,7 +1298,7 @@ static int bootflow_efi(struct unit_test_state *uts)
ut_assertok(run_command("bootflow scan", 0));
ut_assert_skip_to_line(
- "Bus usb at 1: scanning bus usb at 1 for devices... 5 USB Device(s) found");
+ "Bus usb at 1: scanning bus usb at 1 for devices... 6 USB Device(s) found");
ut_assertok(run_command("bootflow list", 0));
@@ -1308,8 +1308,10 @@ static int bootflow_efi(struct unit_test_state *uts)
ut_assert_nextlinen(" 0 extlinux");
ut_assert_nextlinen(
" 1 efi ready usb_mass_ 1 usb_mass_storage.lun0.boo /EFI/BOOT/BOOTSBOX.EFI");
+ ut_assert_nextlinen(
+ " 2 extlinux ready usb_mass_ 1 usb_mass_storage.lun0.boo /extlinux/extlinux.conf");
ut_assert_nextlinen("---");
- ut_assert_skip_to_line("(2 bootflows, 2 valid)");
+ ut_assert_skip_to_line("(3 bootflows, 3 valid)");
ut_assert_console_end();
ut_assertok(run_command("bootflow select 1", 0));
diff --git a/test/dm/blk.c b/test/dm/blk.c
index aa5cbc63777..2e889d1a418 100644
--- a/test/dm/blk.c
+++ b/test/dm/blk.c
@@ -82,12 +82,12 @@ static int dm_test_blk_usb(struct unit_test_state *uts)
ut_asserteq_ptr(usb_dev, dev_get_parent(dev));
/* Check we have one block device for each mass storage device */
- ut_asserteq(6, count_blk_devices());
+ ut_asserteq(7, count_blk_devices());
/* Now go around again, making sure the old devices were unbound */
ut_assertok(usb_stop());
ut_assertok(usb_init());
- ut_asserteq(6, count_blk_devices());
+ ut_asserteq(7, count_blk_devices());
ut_assertok(usb_stop());
return 0;
diff --git a/test/dm/usb.c b/test/dm/usb.c
index fa894c1096e..d89d436d269 100644
--- a/test/dm/usb.c
+++ b/test/dm/usb.c
@@ -158,7 +158,7 @@ static int dm_test_usb_stop(struct unit_test_state *uts)
ut_assertok(uclass_get_device(UCLASS_MASS_STORAGE, 0, &dev));
ut_assertok(uclass_get_device(UCLASS_MASS_STORAGE, 1, &dev));
ut_assertok(uclass_get_device(UCLASS_MASS_STORAGE, 2, &dev));
- ut_asserteq(6, count_usb_devices());
+ ut_asserteq(7, count_usb_devices());
ut_assertok(usb_stop());
ut_asserteq(0, count_usb_devices());
@@ -429,7 +429,7 @@ static int dm_test_usb_keyb(struct unit_test_state *uts)
/* Initially there should be no characters */
ut_asserteq(0, tstc());
- ut_assertok(uclass_get_device_by_name(UCLASS_USB_EMUL, "keyb at 3",
+ ut_assertok(uclass_get_device_by_name(UCLASS_USB_EMUL, "keyb at 4",
&dev));
/*
diff --git a/test/py/tests/test_ut.py b/test/py/tests/test_ut.py
index aad5f36dcb5..81f68c48574 100644
--- a/test/py/tests/test_ut.py
+++ b/test/py/tests/test_ut.py
@@ -262,6 +262,45 @@ label Fedora-Workstation-armhfp-31-1.9 (5.3.7-301.fc31.armv7hl)
setup_bootflow_image(ubman, devnum, basename, vmlinux, initrd, dtbdir,
script)
+def setup_ubuntu_image(ubman, devnum, basename):
+ """Create a 20MB Ubuntu disk image with a single FAT partition
+
+ Args:
+ ubman (ConsoleBase): Console to use
+ devnum (int): Device number to use, e.g. 1
+ basename (str): Base name to use in the filename, e.g. 'mmc'
+ """
+ vmlinux = 'vmlinuz-6.8.0-53-generic'
+ initrd = 'initrd.img-6.8.0-53-generic'
+ dtbdir = None
+ script = '''## /boot/extlinux/extlinux.conf
+##
+## IMPORTANT WARNING
+##
+## The configuration of this file is generated automatically.
+## Do not edit this file manually, use: u-boot-update
+
+default l0
+menu title U-Boot menu
+prompt 1
+timeout 50
+
+
+label l0
+ menu label Ubuntu 24.04.1 LTS 6.8.0-53-generic
+ linux /boot/%s
+ initrd /boot/%s
+
+ append root=/dev/disk/by-uuid/bcfdda4a-8249-4f40-9f0f-7c1a76b6cbe8 ro earlycon
+
+label l0r
+ menu label Ubuntu 24.04.1 LTS 6.8.0-53-generic (rescue target)
+ linux /boot/%s
+ initrd /boot/%s
+''' % (vmlinux, initrd, vmlinux, initrd)
+ setup_bootflow_image(ubman, devnum, basename, vmlinux, initrd, dtbdir,
+ script)
+
def setup_cros_image(ubman):
"""Create a 20MB disk image with ChromiumOS partitions"""
Partition = collections.namedtuple('part', 'start,size,name')
@@ -611,6 +650,7 @@ def test_ut_dm_init_bootstd(ubman):
setup_cros_image(ubman)
setup_android_image(ubman)
setup_efi_image(ubman)
+ setup_ubuntu_image(ubman, 3, 'flash')
# Restart so that the new mmc1.img is picked up
ubman.restart_uboot()
--
2.43.0
More information about the U-Boot
mailing list