-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mkosi-initrd: split Debian/Ubuntu config for libtss dependencies by r…
…elease The package changes from libtss2-mu0 to libtss2-mu-4.0.1-0 in Debian trixie. Include them by name only if they exist. Also remove unnecessary escaping in the regex. Fixes: #2346
- Loading branch information
Showing
3 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
mkosi/resources/mkosi-initrd/mkosi.conf.d/20-debian-ubuntu-libtss-old.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# SPDX-License-Identifier: LGPL-2.1-or-later | ||
|
||
[Match] | ||
Distribution=|debian | ||
Release=|bullseye | ||
|
||
[Match] | ||
Distribution=|ubuntu | ||
|
||
[Content] | ||
Packages= | ||
?name(^libtss2-esys-[0-9.]+-0$) | ||
?exact-name(libtss2-rc0) | ||
?exact-name(libtss2-tcti-device0) | ||
?exact-name(libtss2-mu0) |
16 changes: 16 additions & 0 deletions
16
mkosi/resources/mkosi-initrd/mkosi.conf.d/20-debian-ubuntu-libtss.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# SPDX-License-Identifier: LGPL-2.1-or-later | ||
|
||
[Match] | ||
Distribution=|debian | ||
Release=|bullseye | ||
|
||
[Match] | ||
Distribution=|ubuntu | ||
Release=|focal | ||
|
||
[Content] | ||
Packages= | ||
?name(^libtss2-esys-[0-9.]+-0$) | ||
?exact-name(libtss2-rc0) | ||
?exact-name(libtss2-tcti-device0) | ||
?name(^libtss2-mu-[0-9.]+-0$) |