diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2024-08-12 17:40:59 +0900 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2024-08-12 19:41:40 +0900 |
commit | 46474db629ac20f3a46175454d3b323def57fd50 (patch) | |
tree | a801e2287ec3a43a06f5400bec683036b54af0ce | |
parent | 817ac1c22bf5de59018438a110f50d0918e8947d (diff) | |
download | rootstrap-46474db629ac20f3a46175454d3b323def57fd50.tar.gz rootstrap-46474db629ac20f3a46175454d3b323def57fd50.tar.bz2 rootstrap-46474db629ac20f3a46175454d3b323def57fd50.zip |
hal-rootstrap-checker: Add kernel header package into allowed_buildrequires/buildconflicts
kernel-header packages depends on hardware. So that it needs to allow
the kernel header packages for each hardware device.
But, Tizen provides the standard kernel header package as
linux-glibc-devel. In order to prevent the conflict between
linux-glibc-devel and kernel-headers-[soc or vendor] package,
add kernel header packages to buildconflicts.
Change-Id: Ib2e57e451484c20420d281b0f9ae94716cbd08c9
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
-rw-r--r-- | packaging/hal-rootstrap-checker.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging/hal-rootstrap-checker.yaml b/packaging/hal-rootstrap-checker.yaml index 5bb4ef1..f1a595a 100644 --- a/packaging/hal-rootstrap-checker.yaml +++ b/packaging/hal-rootstrap-checker.yaml @@ -13,10 +13,14 @@ excluded_target_package_name: 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). |