ci/bare-metal: Reword the final output of the init script on the board.
[mesa.git] / .gitlab-ci / bare-metal / fastboot.sh
1 #!/bin/bash
2
3 BM=$CI_PROJECT_DIR/.gitlab-ci/bare-metal
4
5 if [ -z "$BM_SERIAL" -a -z "$BM_SERIAL_SCRIPT" ]; then
6 echo "Must set BM_SERIAL OR BM_SERIAL_SCRIPT in your gitlab-runner config.toml [[runners]] environment"
7 echo "BM_SERIAL:"
8 echo " This is the serial device to talk to for waiting for fastboot to be ready and logging from the kernel."
9 echo "BM_SERIAL_SCRIPT:"
10 echo " This is a shell script to talk to for waiting for fastboot to be ready and logging from the kernel."
11 exit 1
12 fi
13
14 if [ -z "$BM_POWERUP" ]; then
15 echo "Must set BM_POWERUP in your gitlab-runner config.toml [[runners]] environment"
16 echo "This is a shell script that should reset the device and begin its boot sequence"
17 echo "such that it pauses at fastboot."
18 exit 1
19 fi
20
21 if [ -z "$BM_POWERDOWN" ]; then
22 echo "Must set BM_POWERDOWN in your gitlab-runner config.toml [[runners]] environment"
23 echo "This is a shell script that should power off the device."
24 exit 1
25 fi
26
27 if [ -z "$BM_FASTBOOT_SERIAL" ]; then
28 echo "Must set BM_FASTBOOT_SERIAL in your gitlab-runner config.toml [[runners]] environment"
29 echo "This must be the a stable-across-resets fastboot serial number."
30 exit 1
31 fi
32
33 if [ -z "$BM_KERNEL" ]; then
34 echo "Must set BM_KERNEL to your board's kernel vmlinuz or Image.gz in the job's variables:"
35 exit 1
36 fi
37
38 if [ -z "$BM_DTB" ]; then
39 echo "Must set BM_DTB to your board's DTB file in the job's variables:"
40 exit 1
41 fi
42
43 if [ -z "$BM_ROOTFS" ]; then
44 echo "Must set BM_ROOTFS to your board's rootfs directory in the job's variables:"
45 exit 1
46 fi
47
48 set -ex
49
50 # Copy the rootfs to a temporary for our setup, as I believe changes to the
51 # container can end up impacting future runs.
52 cp -Rp $BM_ROOTFS/ rootfs
53
54 . .gitlab-ci/bare-metal/rootfs-setup.sh rootfs
55
56 # Finally, pack it up into a cpio rootfs. Skip the vulkan CTS since none of
57 # these devices use it and it would take up space in the initrd.
58 pushd rootfs
59 find -H | \
60 egrep -v "external/(openglcts|vulkancts|amber|glslang|spirv-tools)" | \
61 cpio -H newc -o | \
62 xz --check=crc32 -T4 - > $CI_PROJECT_DIR/rootfs.cpio.gz
63 popd
64
65 cat $BM_KERNEL $BM_DTB > Image.gz-dtb
66
67 abootimg \
68 --create artifacts/fastboot.img \
69 -k Image.gz-dtb \
70 -r rootfs.cpio.gz \
71 -c cmdline="$BM_CMDLINE"
72 rm Image.gz-dtb
73
74 # Start watching serial, and power up the device.
75 if [ -n "$BM_SERIAL" ]; then
76 $BM/serial-buffer.py $BM_SERIAL | tee artifacts/serial-output.txt &
77 else
78 PATH=$BM:$PATH $BM_SERIAL_SCRIPT | tee artifacts/serial-output.txt &
79 fi
80
81 while [ ! -e artifacts/serial-output.txt ]; do
82 sleep 1
83 done
84 PATH=$BM:$PATH $BM_POWERUP
85
86 # Once fastboot is ready, boot our image.
87 $BM/expect-output.sh artifacts/serial-output.txt \
88 -f "fastboot: processing commands" \
89 -f "Listening for fastboot command on" \
90 -e "data abort"
91
92 fastboot boot -s $BM_FASTBOOT_SERIAL artifacts/fastboot.img
93
94 # Wait for the device to complete the deqp run
95 $BM/expect-output.sh artifacts/serial-output.txt -f "bare-metal result"
96
97 # power down the device
98 PATH=$BM:$PATH $BM_POWERDOWN
99
100 set +e
101 if grep -q "bare-metal result: pass" artifacts/serial-output.txt; then
102 exit 0
103 else
104 exit 1
105 fi
106