Hello @darla14
Thank you very much for your feeback.
I take your questions as they come.
1/ The web browser can not connect to the google URL.
Could you check the board has an IP address. The commands
root@stm32mp1:~# ifconfig eth0
or if you have a WIFI connection
root@stm32mp1:~# ifconfig wlan0
should show the field inet addr with an IP address.
If not, please check your RJ45 connection or refer to the wiki pages related to the WIFI setup here or there.
If your board has an IP address, perhaps your board is behind a proxy. In such a case, export these two environment variables:
root@stm32mp1:~# export HTTP_PROXY="http://<your proxy url>:<port>"
root@stm32mp1:~# export HTTPS_PROXY="http://<your proxy url>:<port>"
NB: there is no typo in the second expression: the URL is http and not https.
2/ The screen goes black after systemctl stop weston@root
That's the expected behaviour. With the qtwayland environment, you don't need to apply this command. I am sorry, I didn't see you were using only egls.
3/ ULR fetching error with apt-get install qtwayland
That may happen some time to time. I didn't succeed in identifying the underlying problem. However, it happens to be transient errors when I saw them (twice or three times since we put in production the OpenSTLinux repository). If these errors are not transient from your side, I would be glad if you could open a new topic related to these errors.
4/ Using qt-wpe-simple-browser with egls
By running the following commands:
root@stm32mp1:~# systemctl stop weston@root
root@stm32mp1:~# export QT_QPA_PLATFORM=eglfs
root@stm32mp1:~# export QML2_IMPORT_PATH='/usr/lib/qt5/qml/'
root@stm32mp1:~# export QT_QPA_EGLFS_ALWAYS_SET_MODE='1'
root@stm32mp1:~# qt-wpe-simple-browser http://google.com
I am able to see the web browser on the screen of my stm32mp157f-dk2 board.
Best regards,
--JM