diff options
| author | 2025-02-20 13:46:02 -0500 | |
|---|---|---|
| committer | 2025-02-20 14:15:26 -0500 | |
| commit | ada197be816585a10d11a895200d7684f1ca5450 (patch) | |
| tree | 7fd80d96ad3116c2716e6bfa1e42961960406bd1 /components/common.xml | |
| parent | 2cb33874d1b568ea0ba102529af6da13d002dbe2 (diff) | |
| download | kiwi-descriptions-ada197be816585a10d11a895200d7684f1ca5450.tar.gz kiwi-descriptions-ada197be816585a10d11a895200d7684f1ca5450.zip | |
components, teams/server: Use a common profile for hardware support
It is hard to ensure that hardware support packages are pulled in
universally when it's splintered across different variant profiles.
To fix this and ensure Server benefits from this, unify everything
into a common profile and make everything require it.
Diffstat (limited to 'components/common.xml')
| -rw-r--r-- | components/common.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/components/common.xml b/components/common.xml index 64316fa..dc1f34c 100644 --- a/components/common.xml +++ b/components/common.xml @@ -1,9 +1,14 @@ <image> <profiles> <profile name="BaseCommon" description="Base common packages"/> + <profile name="HardwareCommon" description="Base common packages for hardware support"/> </profiles> <packages type="image" patternType="plusRecommended" profiles="BaseCommon"> <namedCollection name="standard"/> <ignore name="qemu-user-static"/> <!-- Saves ~100MB --> </packages> + <packages type="image" patternType="plusRecommended" profiles="HardwareCommon"> + <namedCollection name="hardware-support"/> + <package name="bcm283x-firmware" arch="aarch64"/> + </packages> </image> |