mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
When compressing docs, do not save the original file name and timestamp by default (gzip -n). Make archives be reproducible at each build Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 lines
902 B
Plaintext
29 lines
902 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have recipes-* directories, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "filesystems-layer"
|
|
BBFILE_PATTERN_filesystems-layer = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_filesystems-layer = "5"
|
|
|
|
# This should only be incremented on significant changes that will
|
|
# cause compatibility issues with other layers
|
|
LAYERVERSION_filesystems-layer = "1"
|
|
|
|
LAYERDEPENDS_filesystems-layer = "core openembedded-layer networking-layer"
|
|
|
|
LAYERSERIES_COMPAT_filesystems-layer = "walnascar whinlatter"
|
|
|
|
BBFILES_DYNAMIC += " \
|
|
meta-python:${LAYERDIR}/dynamic-layers/meta-python/recipes-*/*/*.bb \
|
|
"
|
|
|
|
# List of known non-reproducible package of the meta-filesystems layer
|
|
# Please keep this list sorted
|
|
OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES += " \
|
|
e2tools-ptest \
|
|
"
|