ci/bare-metal: Use a new serial buffer tool.
[mesa.git] / .gitlab-ci / bare-metal / fastboot.sh
index 9adda125113e299e1d25cdda35f0689c7127efca..81d94766cdcb84db026fd2ffde998e1e656b312e 100755 (executable)
@@ -92,7 +92,10 @@ fi
 
 # Start watching serial, and power up the device.
 if [ -n "$BM_SERIAL" ]; then
-  $BM/serial-buffer.py $BM_SERIAL | tee artifacts/serial-output.txt &
+  python3 $BM/serial_buffer.py \
+    --dev $BM_SERIAL \
+    --file artifacts/serial-output.txt \
+    --prefix "SERIAL> " &
 else
   PATH=$BM:$PATH $BM_SERIAL_SCRIPT | tee artifacts/serial-output.txt &
 fi