User:Joger/Embedded: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
The bitbake output is a Qt board support package (BSP) that can be installed with the Qt Maintenance tool. It is located at <code>build-raspberrypi4-64/tmp/deploy/qbsp/meta-b2qt-embedded-qbsp-x86_64-raspberrypi4-64-6.8.0.qbsp</code> | The bitbake output is a Qt board support package (BSP) that can be installed with the Qt Maintenance tool. It is located at <code>build-raspberrypi4-64/tmp/deploy/qbsp/meta-b2qt-embedded-qbsp-x86_64-raspberrypi4-64-6.8.0.qbsp</code> | ||
Note that building Qt WebEngine requires a lot of RAM. Consider disabling this module by | Note that building Qt WebEngine requires a lot of RAM. Consider disabling this module by adding <code>DISTRO_FEATURES:remove = "webengine"</code> to <code>build-raspberrypi4-64/conf/local.conf</code> |
Revision as of 19:09, 5 August 2024
Obtaining the system image
Option 1
Build your own system image and SDK using Yocto [1].
mkdir ~/Projects/qt-yocto
cd ~/Projects/qt-yocto
repo init -u git://code.qt.io/yocto/boot2qt-manifest -m 6.8.xml
repo sync
export MACHINE=raspberrypi4-64
source setup-environment.sh
bitbake meta-b2qt-embedded-qbsp
The bitbake output is a Qt board support package (BSP) that can be installed with the Qt Maintenance tool. It is located at
build-raspberrypi4-64/tmp/deploy/qbsp/meta-b2qt-embedded-qbsp-x86_64-raspberrypi4-64-6.8.0.qbsp
Note that building Qt WebEngine requires a lot of RAM. Consider disabling this module by adding
DISTRO_FEATURES:remove = "webengine"
to
build-raspberrypi4-64/conf/local.conf