diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 03:50:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 03:50:40 +0000 |
commit | fc53809803cd2bc2434e312b19a18fa36776da12 (patch) | |
tree | b4b43bd6538f51965ce32856e9c053d0f90919c8 /mime | |
parent | Adding upstream version 255.5. (diff) | |
download | systemd-fc53809803cd2bc2434e312b19a18fa36776da12.tar.xz systemd-fc53809803cd2bc2434e312b19a18fa36776da12.zip |
Adding upstream version 256.upstream/256
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mime')
-rw-r--r-- | mime/io.systemd.xml | 46 | ||||
-rw-r--r-- | mime/meson.build | 3 |
2 files changed, 49 insertions, 0 deletions
diff --git a/mime/io.systemd.xml b/mime/io.systemd.xml new file mode 100644 index 0000000..8314569 --- /dev/null +++ b/mime/io.systemd.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8"?> +<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> + <mime-type type="application/x.systemd-sysext"> + <sub-class-of type="application/vnd.efi.img"/> + <comment>System Extension DDI</comment> + <glob pattern="*.sysext.raw"/> + </mime-type> + <mime-type type="application/x.systemd-confext"> + <sub-class-of type="application/vnd.efi.img"/> + <comment>Configuration Extension DDI</comment> + <glob pattern="*.confext.raw"/> + </mime-type> + <mime-type type="application/x.systemd-journal"> + <comment>Journal Log File</comment> + <magic> + <match type="string" value="LPKSHHRH" offset="0"/> + </magic> + </mime-type> + <mime-type type="application/x.systemd-catalog"> + <comment>Journal Message Catalog</comment> + <magic> + <match type="string" value="RHHHKSLP" offset="0"/> + </magic> + </mime-type> + <mime-type type="application/x.systemd-hwdb"> + <comment>Hardware Database</comment> + <magic> + <match type="string" value="KSLPHHRH" offset="0"/> + </magic> + </mime-type> + <mime-type type="application/x.systemd-credential"> + <comment>Encrypted Credential</comment> + <generic-icon name="security-high"/> + <magic> + <match type="string" value="Whxqht+dQJax1aZeCGLxm" offset="0"/> + <match type="string" value="VbntHThZTUOoMZ0uuzMqx" offset="0"/> + <match type="string" value="DHzAexF2RZGcSwvqCLwg/" offset="0"/> + <match type="string" value="+vfrk0HjQSyhpDb5Wik2L" offset="0"/> + <match type="string" value="k6iUCUh0RJCQyvL8k8q1U" offset="0"/> + <match type="string" value="70rBNnmpSA6n22iJf58WX" offset="0"/> + <match type="string" value="r0lQqEkTTrGnOEYwT/MMB" offset="0"/> + <match type="string" value="rbxMo++2QgG6iBtvLkCV6" offset="0"/> + <match type="string" value="BYRp2vb1QySABUnaD46i+" offset="0"/> + </magic> + </mime-type> +</mime-info> diff --git a/mime/meson.build b/mime/meson.build new file mode 100644 index 0000000..17bc043 --- /dev/null +++ b/mime/meson.build @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +install_data('io.systemd.xml', install_dir : mimepackagesdir) |