- Apr 08, 2016
-
-
Samuli Piippo authored
OE has moved to gcc 5.2 which cannot be used to build the old kernel that imx53 still uses, therefore all support for it was dropped from meta-fsl-arm. Change-Id: Ic57310f8ae6d06f62274a7c1874df0d01c95b5e9 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
Support was removed from bitbake Change-Id: I6170bd618c41c2dd9deec858b6eb1f0c8da4ffb5 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
Change-Id: I40be27dd2eecc1faf85073337cdc6803b5c0bec1 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
- Apr 07, 2016
-
-
Dominik Holland authored
Change-Id: Ifca5ba3a117e47b6186dca7a7be48c823f43a2a7 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
- Apr 05, 2016
-
-
Samuli Piippo authored
* origin/fido: qt5: 5.6.0 branches were removed, using 5.6 instead Conflicts: recipes-qt/qt5/qtconnectivity_git.bbappend Change-Id: I040f0e26941aca43eabebda65b177bf533bef0d6
-
Tuomas Heimonen authored
Change-Id: I1220cce68059328512e52b7f5a9af7110dd9578c Reviewed-by:
Andy Nichols <andy.nichols@theqtcompany.com>
-
- Mar 23, 2016
-
-
Samuli Piippo authored
Change-Id: Ia0fd4493c4b87aa3bc48633ceca81fbc2f46ad7a Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
- Mar 22, 2016
-
-
Louai Al-Khanji authored
Steps to use this: Set up vibrante installation, mine looks like this: $ ls -l ~/VibranteSDK total 234880 drwxrwxr-x 1 louai louai 298 Mar 20 2014 eclipse -r-xr-xr-x 1 louai louai 171826846 Jan 4 09:59 NVIDIA_Tegra_Graphics_Debugger_2.1_linux-v4l_l4t-egl.run -r--r--r-- 1 louai louai 68688729 Jan 4 09:59 NVIDIA_Tegra_System_Profiler_2.5-linux-x64.tar.gz drwxr-xr-x 1 louai louai 262 Jan 5 14:50 toolchains drwxrwxr-x 1 louai louai 34 Jan 5 13:55 vibrante-oss-src drwxr-xr-x 1 louai louai 12 Jan 4 09:47 vibrante-t186ref-cuda drwxrwxr-x 1 louai louai 264 Feb 10 10:50 vibrante-t186ref-foundation drwxr-xr-x 1 louai louai 164 Jan 5 14:49 vibrante-t186ref-foundation_src drwxrwxr-x 1 louai louai 228 Jan 5 13:56 vibrante-t186ref-linux drwxr-xr-x 1 louai louai 314 Feb 10 10:58 vibrante-t186ref-linux_sr Set up Yocto build dir: $ mkdir ~/work $ cd ~/work $ ~/tqtc-b2qt/yocto-meta/b2qt-init-build-env init --device tegra-t18x Add NVIDIA's Yocto things: $ mkdir ~/work/sources/nvidia-layer $ cd ~/work/sources/nvidia-layer $ tar xf ~/VibranteSDK/vibrante-t186ref-linux_src/yocto/nvidia-layer.tgz $ cd - Set up build environment: $ export MACHINE=tegra-t18x $ . setup-environment.sh Set the following environment variables: $ export KERN_DIR=~/VibranteSDK/vibrante-t186ref-linux_src/kernel $ export PLATFORM_TOPDIR=~/VibranteSDK/vibrante-t186ref-linux $ export TOOLCHAIN_PATH=~/VibranteSDK/toolchains/tegra-4.9-nv $ export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE TOOLCHAIN_PATH KERN_DIR PLATFORM_TOPDIR" Add NVLAYER_DIR to local.conf: $ echo 'NVLAYER_DIR = "${TOPDIR}/../sources/nvidia-layer"' >> conf/local.conf Build your image: $ bitbake b2qt-embedded-qt5-image Flash your board: $ cd $PLATFORM_TOPDIR $ mv targetfs targetfs-old $ cd targetfs && tar xf /path/to/rootfs.tar.bz2 $ cd ../../vibrante-t186ref-foundation/utils/scripts/bootburn $ ./bootburn.sh -b p2382-t186 Change-Id: I4209cd0c19a007c4457460fd67342fc579c2a735 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
- Mar 17, 2016
-
-
Samuli Piippo authored
Change-Id: Icf6e9610d26aa4c073b49655d691570ba099f5ff Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
* origin/fido: qt5: remove duplicate --sysroot from sdk mkspec colibri-imx6: don't pull in old gstreamer Specify source revision separately Disable ethernet over usb on SMARC-sAMX6i Change-Id: Ic14fccc65d7d30c8400f8fc09bf127fef187bc86
-
Samuli Piippo authored
No need to add --sysroot to QMAKE flags in qdevice.pri, since qconfig.pri does it already. Change-Id: I8a90249e466f8385fb121d69721e118a32b80999 Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
- Mar 16, 2016
-
-
Gatis Paeglis authored
This patch adds consistent_timestamps.bbclass which is a hackish way of resembling reproducible build - byte-for-byte identical binary packages from a given source. Naturally this is not a complete solution, but it fixes the issue described below. Real solution for this should be done by the Yocto project itself. In OSTree each new update is checked out with all files and directories having mtime=0, this breaks fontconfig cache validity check (mtime embedded in the cache should match the containing directories mtime). Yocto generates this cache file in poky/meta/lib/oe/rootfs.py::create by calling self._run_intercepts() after all packages have been installed. These timestamps are nondeterministic as they depend on current system time. By using ROOTFS_POSTINSTALL_COMMAND hook we can ensure that these embedded time stamps have a known time, which is a basic property of reproducible build system. Change-Id: Ib2f130248f2e65db391d2b2f19ab5dac30a2cfb0 Task-number: QTEE-1081 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Samuli Piippo authored
gst-fsl-plugin pulls in gstremer 0.10, even when 1.0 was selected. Change-Id: I60f8e6bef8fd1abe1913f4019b847757718fbded Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Louai Al-Khanji authored
By doing so we ensure bitbake can mirror the source locally. Handy on airplanes. Change-Id: Iaaf96617a4cc0c445444dbdb8d3e562cc9cd1741 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Samuli Piippo authored
Otherwise the device isn't auto detected by adb on windows. Task-number: QTBUG-51877 Change-Id: Ia52d4dd8e6cc10aec82b0ea6d50f3b00f412d7d5 Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
- Mar 15, 2016
-
-
Louai Al-Khanji authored
I am using it without issues and would like to get rid of the warning. Change-Id: I940e8770d5101e5101dc0f365f3970b7571c4799 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Louai Al-Khanji authored
We can pull in gypsy through qtconnectivity as a dependency, it currently hardcodes bluez4 in fido for no reason. Fix that. Should be pushed upstream. Change-Id: I7ebef9ec50442357f5d82c7bb36b9e27b6f91fd9 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Gatis Paeglis authored
OSTree by design does not include /var in system updates, moving cache to ${libdir} allow fontconfig cache to be updated via OTA. Change-Id: I41d4588cf725028315d7043ff874399baff4d159 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com> Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
* origin/fido: (36 commits) qt5: update submodules b2qt-demos: update revision b2qt-appcontroller: update revision qt5: move mingw32 specific parts from meta-qt5 qt5: Use latest version of meta-qt5 b2qt-demos: update to new revision ostree: Mount boot partition from user space ostree: Do not use grub2-mkconfig. RPi2: add support for touch display Disable ethernet over usb on beaglebone. qtwayland: update SRCREV Move default sstate-cache dir from build dir Use distro specific sstate cache qtquickcompiler: add support for BYOS builds qtcharts: update revision qt5: update submodules democompositor: use correct path the SDK sources b2qt-demos: update SRCREV Add git SHA1 to b2qt addon package versions b2qt-utils: update SRCREV ... Conflicts: recipes-qt/qt5/qtconnectivity_git.bbappend Change-Id: I1c090c8f87e43664971e0381b93ccad5e4e48175
-
- Mar 14, 2016
-
-
Louai Al-Khanji authored
Change-Id: I4d2d1efd88769eba45891f9ceb3459ce0e8328e5 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Louai Al-Khanji authored
Change-Id: Ie11cb3e92c5dbb27ca1b4b9e763c43891ade3a36 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Louai Al-Khanji authored
Change-Id: Ifc11b3a873fdd2d712f543bf39d21d609e8cd72c Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Samuli Piippo authored
Change-Id: Ia2b7f41e028ac751aebb89ba11dd250c4dcaba80 Reviewed-by:
Tuomas Heimonen <tuomas.heimonen@theqtcompany.com>
-
Samuli Piippo authored
- disable planets demo from emulator - Language fixes for the demo descriptions Change-Id: I02bf8566482d61992decf9fb725ab1da0fdb943d Reviewed-by:
Rainer Keller <rainer.keller@theqtcompany.com>
-
- Mar 11, 2016
-
-
Samuli Piippo authored
Fix restart feature Change-Id: I857c30031cda1c4bc2ab864c54e733219a6982ee Task-number: QTEE-1085 Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
- Mar 09, 2016
-
-
Samuli Piippo authored
Change-Id: Id380844d530ef599f78591a282474aa66d3dec69 Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
Samuli Piippo authored
Change-Id: Ib7a45a830d744cc07520548e30b6c0793a738f5e Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
Samuli Piippo authored
QtWebBrowser now builds application as well as qml plugin, but for qtlauncher we only need the plugin. Also all the needed files from tqtc-qtwebrowser are in the plugin, we can remove the directory. Task-number: QTEE-1083 Change-Id: Ia135490a4d95ef3428fb54b84ce5c77588e344ef Reviewed-by:
Kimmo Ollila <kimmo.ollila@theqtcompany.com>
-
- Mar 08, 2016
-
-
Gatis Paeglis authored
In the current approach we assumed that boot/ - is on a separate boot partition - boot partition is right before rootfs partition - rootfs parition is provided as a *device node* - has "ext2" filesystem (mount shell cmd tries to auto detect FS type, mount system call does not.) The new approch does not assume any of the above, and moves this logic from early user space (initramfs) to user space. Initramfs by design should be used only to prepare the rootfs, other tasks should be done later. Change-Id: Idc429c8061c1fd486658e4b4d170ee487682cc91 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Gatis Paeglis authored
For more details see: https://bugzilla.gnome.org/show_bug.cgi?id=762220 To summarize: 1) The current approach is less flexible than using a custom 'ostree-grub-generator' script. Each device can adjust this script for its needs, instead of hardcoding some values in ostree-bootloader-grub2.c. 2) Too much overhead on embedded to generate grub.cfg via /etc/grub.d/ configuration files. It is still possible to do so, even with this patch applied. 3) The grub2-mkconfig code path has other issues: https://bugzilla.gnome.org/show_bug.cgi?id=761180 Change-Id: I077838fdf16fbbb42f98df6fa6720bfbaf7c6f8b Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Samuli Piippo authored
The RPi touch display need the rpi-tf5604 devicetree to enable touch. Add it to the kernel build and enabled it in the config.txt. Update meta-raspberrypi to latest revision for the PiTFT support. Change-Id: Ibc5ba51c844bc17b541d8021a755f141a5ff2a0c Reviewed-by:
Risto Avila <risto.avila@theqtcompany.com>
-
David Schulz authored
Otherwise the device isn't auto detected by adb on windows. Change-Id: I147689233562c16b23353c67cf8646c14e5da378 Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
- Mar 07, 2016
-
-
Samuli Piippo authored
Contains fix for client crash on imx6 devices Change-Id: Ic6139426958ac0ab8710bab4e785d91fe80b0b4c Reviewed-by:
Kimmo Ollila <kimmo.ollila@theqtcompany.com>
-
- Mar 02, 2016
-
-
Samuli Piippo authored
Instead of using the build directory for the local sstate-cache, move it one folder up, so it can be shared with directories for other machines. Change-Id: Ia755c28783e47692f4c0e1700880aaac97fe76de Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
Change-Id: Ife5236e848e788a30a1942663bfefdf6301d6f37 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
Qt Quick Compiler sources codes are not released for customers, so they cannot build it for themselves. Instead copy qtquickcompiler binary from the SDK where we have both linux and mingw binaries available. Change-Id: I697885365d98df394164a15e2517c7c473ac91e5 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
- Mar 01, 2016
-
-
Samuli Piippo authored
Change-Id: Id19131d026ac2d033867dde5469ea4cb4670a97e Reviewed-by:
Miikka Heikkinen <miikka.heikkinen@theqtcompany.com> Reviewed-by:
Samuli Piippo <samuli.piippo@theqtcompany.com>
-
Samuli Piippo authored
Change-Id: I98842aca6fc7e058260fc855ef09efbe004eafef Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
Change-Id: I212659a96a773a0b90a9ce4db13c52c745928137 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-
Samuli Piippo authored
Change-Id: I96709a9a8dd182e9baecacc7f743b64059e7dac0 Reviewed-by:
Teemu Holappa <teemu.holappa@theqtcompany.com>
-