mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-30 21:54:16 +08:00
ci/fastboot: Use a case insensitive match for a fastboot line.
Newer boards like the RB5 have a capital F, so this will make the script more reusable for drm ci. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25311>
This commit is contained in:
parent
2b1148ca4d
commit
0c1b6af1b6
@ -60,7 +60,7 @@ class FastbootRun:
|
||||
|
||||
fastboot_ready = False
|
||||
for line in self.ser.lines(timeout=2 * 60, phase="bootloader"):
|
||||
if re.search("fastboot: processing commands", line) or \
|
||||
if re.search("[Ff]astboot: [Pp]rocessing commands", line) or \
|
||||
re.search("Listening for fastboot command on", line):
|
||||
fastboot_ready = True
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user