From eabaf06be725bd2289672505a35cb20a346c5523 Mon Sep 17 00:00:00 2001 From: andreika-git Date: Sat, 21 May 2022 18:08:04 +0300 Subject: [PATCH] add xvfb to step3 --- bin/create_board_with_prefix.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/create_board_with_prefix.sh b/bin/create_board_with_prefix.sh index c1c279d..a752b58 100755 --- a/bin/create_board_with_prefix.sh +++ b/bin/create_board_with_prefix.sh @@ -31,6 +31,10 @@ if ! ./bin/check_all.sh; then exit 2 fi +# start virtual framebuffer (should be already installed) +export DISPLAY=:99.0 +sudo Xvfb :99 -screen 0 640x480x24 & + echo "Processing ${board_prefix} board..." if ! $python_bin bin/process_board.py ${board_prefix} ${project_base} ${frame_name} ${frame_rev} ${bom_replace} ${comp_img_offset}; then echo "ABORTING!"