summaryrefslogtreecommitdiff
path: root/test/boot/bootstd_common.h
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-07-03 10:14:32 -0600
committerTom Rini <[email protected]>2026-07-03 10:14:32 -0600
commit2569e25ddd5aa323cd87c7a3819c3a4f4b32302f (patch)
tree5c341a5b2908aab52ace915bde5b60ebdbe922d0 /test/boot/bootstd_common.h
parent683161607af99a12de83eb5702d1f2662a107ac1 (diff)
parent93e9af685fefc454580dcf567b03c139a2fe8ebc (diff)
Merge patch series "bootdev: few fixes for automatic boot"
[email protected] <[email protected]> says: This series addresses few findings in bootdev code. Patch 1 fix for automatic boots in case higher-priority bootdevs fail to be hunted. Patch 2 adds unit test for patch 1. Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'test/boot/bootstd_common.h')
-rw-r--r--test/boot/bootstd_common.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/boot/bootstd_common.h b/test/boot/bootstd_common.h
index dd769313a84..672917454a3 100644
--- a/test/boot/bootstd_common.h
+++ b/test/boot/bootstd_common.h
@@ -21,8 +21,11 @@
#define TEST_VERNUM 0x00010002
enum {
- MAX_HUNTER = 8,
MMC_HUNTER = 2, /* ID of MMC hunter */
+ HOST_HUNTER = 5,
+ SCSI_HUNTER = 6,
+ USB_HUNTER = 8,
+ MAX_HUNTER = 9,
};
struct unit_test_state;