1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2024-12-11 08:36:13 +01:00

Minor updates to docs based on installation

This commit is contained in:
Daniel McKnight 2021-04-30 17:35:05 -07:00
parent a89647b5b5
commit 3eae6633f7

View File

@ -39,12 +39,20 @@ First, get the code on your system! The simplest method is via git.
<br> <br>
This will patch the Buildroot packages. This will patch the Buildroot packages.
### Installing System Build Dependencies
The following system packages are required to build the image:
- gcc
- subversion
- qttools5-dev
- qttools5-dev-tools
- python
## Building the image. ## Building the image.
Building the image(s) can be done by utilizing a proper Makefile; Building the image(s) can be done by utilizing a proper Makefile;
<br> <br>
To see the available commands, just run: 'make help' To see the available commands, just run: 'make help'
<br> <br>
As example to build the rpi3 version;<br> As example to build the rpi4 version;<br>
- make clean - make clean
- make rpi4_64-gui-config - make rpi4_64-gui-config
- make rpi4_64-gui - make rpi4_64-gui
@ -57,7 +65,7 @@ buildroot/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/lib/cmake/Qt5Gui/Q
<br><br> <br><br>
at the bottom of the file replace this line; at the bottom of the file replace this line;
<br><br> <br><br>
_qt5gui_find_extra_libs(OPENGL "GLES" "" "") _qt5gui_find_extra_libs(OPENGL "GLESv2" "" "")
<br><br>And replace it bit this line;<br><br> <br><br>And replace it bit this line;<br><br>
_qt5gui_find_extra_libs(OPENGL "${CMAKE_SYSROOT}/usr/lib/libGLESv2.so" "" "${CMAKE_SYSROOT}/usr/include/libdrm") _qt5gui_find_extra_libs(OPENGL "${CMAKE_SYSROOT}/usr/lib/libGLESv2.so" "" "${CMAKE_SYSROOT}/usr/include/libdrm")
<br><br> <br><br>