diff options
author | Yoann Congal <yoann.congal@smile.fr> | 2024-04-27 23:37:14 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-04-29 11:11:51 -0700 |
commit | d3751ce994dcc70be3009cbf982983d051c6f6db (patch) | |
tree | 6a7481d7e4c814d40ea82c1e1da0bddf975351ec /meta-initramfs | |
parent | 704bec8e01c98fb907e3f8aa48ecb43e1fd7fd30 (diff) | |
download | meta-openembedded-d3751ce994dcc70be3009cbf982983d051c6f6db.tar.gz |
reproducibility: move repro excludes from AB config.json to meta-oe
For now, the known non-reproducible packages list is stored inside the
autobuilder config.json file. This is not ideal. Let's move this list
into each layers of meta-openembedded.
These lists can be used with, in local.conf:
include conf/include/non-repro-meta-oe.inc
OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES = "${KNOWN_NON_REPRO_META_OE}"
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Acked-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-initramfs')
-rwxr-xr-x | meta-initramfs/conf/include/non-repro-meta-initramfs.inc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-initramfs/conf/include/non-repro-meta-initramfs.inc b/meta-initramfs/conf/include/non-repro-meta-initramfs.inc new file mode 100755 index 0000000000..8f01f5624b --- /dev/null +++ b/meta-initramfs/conf/include/non-repro-meta-initramfs.inc | |||
@@ -0,0 +1,23 @@ | |||
1 | # List of known non-reproducible package of the meta-initramfs layer | ||
2 | # Please keep this list sorted | ||
3 | KNOWN_NON_REPRO_META_INITRAMFS = " \ | ||
4 | kexecboot-klibc \ | ||
5 | kexecboot-klibc-dbg \ | ||
6 | kexec-klibc \ | ||
7 | kexec-tools-klibc-dbg \ | ||
8 | mtdinfo-klibc \ | ||
9 | ubiattach-klibc \ | ||
10 | ubiblock-klibc \ | ||
11 | ubicrc32-klibc \ | ||
12 | ubidetach-klibc \ | ||
13 | ubiformat-klibc \ | ||
14 | ubimkvol-klibc \ | ||
15 | ubinfo-klibc \ | ||
16 | ubinize-klibc \ | ||
17 | ubirename-klibc \ | ||
18 | ubirmvol-klibc \ | ||
19 | ubirsvol-klibc \ | ||
20 | ubiupdatevol-klibc \ | ||
21 | ubi-utils-klibc-dbg \ | ||
22 | vmcore-dmesg-klibc \ | ||
23 | " | ||