| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
Move distro specific recipes to own layer and leave only new recipes
and bbclasses to meta-boot2qt layer. This makes it easier to include
meta-boot2qt to your own distro layer to get access e.g., QDB and
QBSP recipes that might be useful even without boot2qt distro.
Task-number: QTBUG-65871
Change-Id: I6c353774dd1668b00f2d05aa262ad866b90bdef6
Reviewed-by: Timo Aarnipuro <timo.aarnipuro@qt.io>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From OSTree's Release 2016.6 change log:
"Use OSTREE_TIMESTAMP (=1) for checked-out files
Is a quite interesting change - we previously used a
timestamp of zero, but Nix has apparently done better
with 1 for various reasons. This is a pretty subtle
change, so be on the lookout for regressions."
Change-Id: I8349fc52604603faef1c39bf88ba0e6591ae92a1
Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
|
|
|
|
|
|
|
| |
License changed to GPLv3 + Commercial
Change-Id: I267c97216e717ed29071df064337e1bcf83de973
Reviewed-by: Kalle Viironen <kalle.viironen@theqtcompany.com>
|
|
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>
|