blob: 1aacc290c507faccc12972419cb872cefdbbca40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# List of packages that are subject to the hal-rootstrap-checker.
# Follow pattern matching of bash(1).
target_package_name:
- hal-backend-*
- alsa-ucm-data-*
- audio-hal-*
- bluetooth-firmware-*
- camera-hal-*
- fm-data-*
- lbs-server-plugin-*
- media-config-target-*
- model-config-*
- pass-hal-*
# List of packages that are exempt from the hal-rootstrap-checker.
# It is applied on top of the above 'target_package_name'.
# Follow pattern matching of bash(1).
excluded_target_package_name:
# List of packages that are allowed to be used as BuildRequires
# Follow pattern matching of bash(1).
allowed_buildrequires:
- cmake
- pkgconfig(hal-rootstrap)
- linux-glibc-devel
- kernel-headers-*
# List of packages that are allowed to be used as BuildConflicts
# Follow pattern matching of bash(1).
allowed_buildconflicts:
- linux-glibc-devel
- kernel-headers-*
# List of packages that are allowed to be used as Requires
# Follow pattern matching of bash(1).
allowed_requires:
# yes or no(default)
# if no, you can skip the hal-rootstrap-checker test
# by giving gbs build parameter, --define 'disable_hal_rootstrap_checker 1'.
check_always: no
|