Broadcom97425/BCM7425-Qt4dot8-eglfs-QPA: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
m (Wieland moved page DevicesBroadcom97425BCM7425-Qt4dot8-eglfs-QPA to Broadcom97425/BCM7425-Qt4dot8-eglfs-QPA: Same naming scheme for all articles in this field)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=Building AppLibs/RefSW for Qt=
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}


# Locate document named '''“BroadcomReferencePlatformSetup.pdf”''' (Usually this will be inside a tar ball named on the lines of refsw_release_<chip-name>_<date>.tgz)
= Building AppLibs/RefSW for Qt =
# Follow the instructions in '''“BroadcomReferencePlatformSetup.pdf”''' to setup the Linux build machine
# Locate document named '''"BroadcomReferencePlatformSetup.pdf"''' (Usually this will be inside a tar ball named on the lines of refsw_release_<chip-name>''<date>.tgz)
# Locate document named '''“AppLibsInstallationBuildGuide.pdf”''' (Usually this will be inside a tar ball named on the lines of applibs_release_&lt;date&gt;.tgz)
# Follow the instructions in '''"BroadcomReferencePlatformSetup.pdf"''' to setup the Linux build machine
# Follow the instructions in '''“AppLibsInstallationBuildGuide.pdf”''' to build Applibs
# Locate document named '''"AppLibsInstallationBuildGuide.pdf"''' (Usually this will be inside a tar ball named on the lines of applibs_release''<date>.tgz)
# Follow the instructions in '''"AppLibsInstallationBuildGuide.pdf"''' to build Applibs


=Qt 4.8 eglfs / <span class="caps">QPA</span>=
= Qt 4.8 eglfs / QPA =


# Obtain qt-4.8.0 release from [http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.8.0.tar.gz Qt Download site] and extract it in a working folder
# Obtain qt-4.8.0 release from [http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.8.0.tar.gz Qt Download site] and extract it in a working folder
# Obtain 7425 specific files from [http://gitorious.org/qt-platform-mkspecs qt-platform-mkspecs git ] (look for folder “4.8”)
# Obtain 7425 specific files from [http://gitorious.org/qt-platform-mkspecs qt-platform-mkspecs git ] (look for folder "4.8")
# Copy folder named “linux-7425nxs-mipsel-uclibc-g++” to &lt;qt-4.8.0-sources&gt;/mkspecs/qpa
# Copy folder named "linux-7425nxs-mipsel-uclibc-g+''" to <qt-4.8.0-sources>/mkspecs/qpa
# Set following environment variables in the shell before configuring/building Qt,
# Set following environment variables in the shell before configuring/building Qt,
#* <span class="caps">BCM</span>_APPLIBS_PATH=&lt;path-till-Applibs-folder&gt;/AppLibs
'''''' BCM_APPLIBS_PATH=<path-till-Applibs-folder>/AppLibs
#* <span class="caps">BCM</span>_NEXUS_PATH=&lt;path-till-Applibs-folder&gt;/nexus
'''''' BCM_NEXUS_PATH=<path-till-Applibs-folder>/nexus
#* <span class="caps">DEBUG</span>=n<br />
'''''' DEBUG=n
<code>
$ export BCM_APPLIBS_PATH=/home/qtnokia/WorkDir/97425-P1/stb-rs_p2-al_p2dot1/AppLibs
$ export BCM_NEXUS_PATH=/home/qtnokia/WorkDir/97425-P1/stb-rs_p2-al_p2dot1/nexus
</code>


# Apply patch “7425nxs-eglfs.patch” to eglfs Qt Lighthouse Driver located at &lt;qt-4.8.0-sources&gt;/src/plugins/platforms/eglfs<br />
# Apply patch "7425nxs-eglfs.patch" to eglfs Qt Lighthouse Driver located at <qt-4.8.0-sources>/src/plugins/platforms/eglfs
<code>
$ cd <qt-4.8.0-sources>/src/plugins/platforms/eglfs
$ patch -p4 < 7425nxs-eglfs.patch
</code>


# Configure Qt as,<br />
# Configure Qt as,
<code>
$ configure -qpa -arch mips -xplatform qpa/linux-nxs-mipsel-uclibc-g''+ -depths 16,24,32 -no-largefile -no-accessibility -opensource -verbose -system-zlib -system-libpng -system-libjpeg -system-freetype -fast -opengl -webkit -confirm-license -release -make libs -xmlpatterns -exceptions -no-qt3support -prefix /usr/local/qt-installs/qt480ga-nxs-qpa-rel
</code>


# Build Qt as,<br />
# Build Qt as,
<code>
$ make
</code>


# Install Qt on host as,<br />
# Install Qt on host as,
 
<code>
=Building Qt apps=
$ make install
</code>


= Building Qt apps =
# After the Qt build succeeds, set following environment variables on host before building any fullscreen OpenGL Qt App for the above build,
# After the Qt build succeeds, set following environment variables on host before building any fullscreen OpenGL Qt App for the above build,
#* <span class="caps">QTDIR</span>=/usr/local/qt-installs/qt480ga-nxs-qpa-rel
'''''' QTDIR=/usr/local/qt-installs/qt480ga-nxs-qpa-rel
#* <span class="caps">PATH</span>=/usr/local/qt-installs/qt480ga-nxs-qpa-rel/bin:$PATH
'''''' PATH=/usr/local/qt-installs/qt480ga-nxs-qpa-rel/bin:$PATH


# Ensure that following environment variables in the shell are set,
# Ensure that following environment variables in the shell are set,
#* <span class="caps">BCM</span>_APPLIBS_PATH=&lt;path-till-Applibs-folder&gt;/AppLibs
'''''' BCM_APPLIBS_PATH=<path-till-Applibs-folder>/AppLibs
#* <span class="caps">BCM</span>_NEXUS_PATH=&lt;path-till-Applibs-folder&gt;/nexus
'''''' BCM_NEXUS_PATH=<path-till-Applibs-folder>/nexus
#* <span class="caps">BCM</span>_TARGET_LIBDIR=&lt;path-till-nfsrootfs-base-folder&gt;/romfs/lib
'''''' BCM_TARGET_LIBDIR=<path-till-nfsrootfs-base-folder>/romfs/lib
#* <span class="caps">DEBUG</span>=n
'''''' DEBUG=n
 
# Invoke qmake on the applications .pro file (&lt;qt-4.8.0-sources&gt;/examples/opengl/hello_gles2)<br />


# Build the application sources as,<br />
# Invoke qmake on the applications .pro file (<qt-4.8.0-sources>/examples/opengl/hello_gles2)
<code>
$ qmake <application>.pro
</code>


=Running Qt apps on target=
# Build the application sources as,
<code>
$ make
</code>


# Ensure that folder “qt-installs/qt480ga-nxs-qpa-rel” is copied on target file system at /usr/local”
= Running Qt apps on target =
#* Note after copying, the path should appear as /usr/local/qt-installs/qt480ga-nxs-qpa-rel”
# Ensure that folder "qt-installs/qt480ga-nxs-qpa-rel" is copied on target file system at "/usr/local"
# Copy the application binary and other required resource files on target file-system, say /root”
'''''' Note- after copying, the path should appear as "/usr/local/qt-installs/qt480ga-nxs-qpa-rel"
# Locate a shell script named “start” in /bin” folder on target.
# Copy the application binary and other required resource files on target file-system, say "/root"
# Locate a shell script named "start" in "/bin" folder on target.
# Copy it in your app folder and edit the paths inside it.
# Copy it in your app folder and edit the paths inside it.
# Launch application using same “start” script as,<br />
# Launch application using same "start" script as,
<code>
# ./start /root/app1/app1 -platform eglfs
</code>


* <span class="caps">NOTE</span>: Before executing any Qt applications on target copy “qt-installs/qt480ga-nxs-qpa-rel” on target at usr/local on target file system
* NOTE: Before executing any Qt applications on target copy "qt-installs/qt480ga-nxs-qpa-rel" on target at usr/local on target file system

Latest revision as of 18:46, 24 March 2016

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

Building AppLibs/RefSW for Qt

  1. Locate document named "BroadcomReferencePlatformSetup.pdf" (Usually this will be inside a tar ball named on the lines of refsw_release_<chip-name><date>.tgz)
  2. Follow the instructions in "BroadcomReferencePlatformSetup.pdf" to setup the Linux build machine
  3. Locate document named "AppLibsInstallationBuildGuide.pdf" (Usually this will be inside a tar ball named on the lines of applibs_release<date>.tgz)
  4. Follow the instructions in "AppLibsInstallationBuildGuide.pdf" to build Applibs

Qt 4.8 eglfs / QPA

  1. Obtain qt-4.8.0 release from Qt Download site and extract it in a working folder
  2. Obtain 7425 specific files from qt-platform-mkspecs git (look for folder "4.8")
  3. Copy folder named "linux-7425nxs-mipsel-uclibc-g+" to <qt-4.8.0-sources>/mkspecs/qpa
  4. Set following environment variables in the shell before configuring/building Qt,

' BCM_APPLIBS_PATH=<path-till-Applibs-folder>/AppLibs ' BCM_NEXUS_PATH=<path-till-Applibs-folder>/nexus ' DEBUG=n

$ export BCM_APPLIBS_PATH=/home/qtnokia/WorkDir/97425-P1/stb-rs_p2-al_p2dot1/AppLibs
$ export BCM_NEXUS_PATH=/home/qtnokia/WorkDir/97425-P1/stb-rs_p2-al_p2dot1/nexus
  1. Apply patch "7425nxs-eglfs.patch" to eglfs Qt Lighthouse Driver located at <qt-4.8.0-sources>/src/plugins/platforms/eglfs
$ cd <qt-4.8.0-sources>/src/plugins/platforms/eglfs
$ patch -p4 < 7425nxs-eglfs.patch
  1. Configure Qt as,
$ configure -qpa -arch mips -xplatform qpa/linux-nxs-mipsel-uclibc-g''+ -depths 16,24,32 -no-largefile -no-accessibility -opensource -verbose -system-zlib -system-libpng -system-libjpeg -system-freetype -fast -opengl -webkit -confirm-license -release -make libs -xmlpatterns -exceptions -no-qt3support -prefix /usr/local/qt-installs/qt480ga-nxs-qpa-rel
  1. Build Qt as,
$ make
  1. Install Qt on host as,
$ make install

Building Qt apps

  1. After the Qt build succeeds, set following environment variables on host before building any fullscreen OpenGL Qt App for the above build,

' QTDIR=/usr/local/qt-installs/qt480ga-nxs-qpa-rel ' PATH=/usr/local/qt-installs/qt480ga-nxs-qpa-rel/bin:$PATH

  1. Ensure that following environment variables in the shell are set,

' BCM_APPLIBS_PATH=<path-till-Applibs-folder>/AppLibs ' BCM_NEXUS_PATH=<path-till-Applibs-folder>/nexus ' BCM_TARGET_LIBDIR=<path-till-nfsrootfs-base-folder>/romfs/lib ' DEBUG=n

  1. Invoke qmake on the applications .pro file (<qt-4.8.0-sources>/examples/opengl/hello_gles2)
$ qmake <application>.pro
  1. Build the application sources as,
$ make

Running Qt apps on target

  1. Ensure that folder "qt-installs/qt480ga-nxs-qpa-rel" is copied on target file system at "/usr/local"

' Note- after copying, the path should appear as "/usr/local/qt-installs/qt480ga-nxs-qpa-rel"

  1. Copy the application binary and other required resource files on target file-system, say "/root"
  2. Locate a shell script named "start" in "/bin" folder on target.
  3. Copy it in your app folder and edit the paths inside it.
  4. Launch application using same "start" script as,
# ./start /root/app1/app1 -platform eglfs
  • NOTE: Before executing any Qt applications on target copy "qt-installs/qt480ga-nxs-qpa-rel" on target at usr/local on target file system