From a38769ecbcfe9554b37b3d8eda5a0f5efe5a3913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikolas=20Kr=C3=A4tzschmar?= <9020053+nkraetzschmar@users.noreply.github.com> Date: Thu, 13 Feb 2025 17:00:37 +0100 Subject: [PATCH] add cert media types --- src/parse_features.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/parse_features.py b/src/parse_features.py index 7b44bef..12c0f2a 100644 --- a/src/parse_features.py +++ b/src/parse_features.py @@ -8,8 +8,19 @@ # It is important that this list is sorted in descending length of the entries GL_MEDIA_TYPES = [ + "secureboot.aws-efivars", + "secureboot.kek.auth", "gcpimage.tar.gz.log", + "secureboot.pk.auth", + "secureboot.kek.crt", + "secureboot.kek.der", + "secureboot.db.auth", "firecracker.tar.gz", + "secureboot.pk.crt", + "secureboot.pk.der", + "secureboot.db.crt", + "secureboot.db.der", + "secureboot.db.arn", "platform.test.log", "platform.test.xml", "gcpimage.tar.gz", @@ -84,6 +95,17 @@ "chroot.test.log": "application/io.gardenlinux.io.chroot.test.log", "chroot.test.xml": "application/io.gardenlinux.io.chroot.test.xml", "oci.log": "application/io.gardenlinux.log", + "secureboot.pk.crt": "application/io.gardenlinux.cert.secureboot.pk.crt", + "secureboot.pk.der": "application/io.gardenlinux.cert.secureboot.pk.der", + "secureboot.pk.auth": "application/io.gardenlinux.cert.secureboot.pk.auth", + "secureboot.kek.crt": "application/io.gardenlinux.cert.secureboot.kek.crt", + "secureboot.kek.der": "application/io.gardenlinux.cert.secureboot.kek.der", + "secureboot.kek.auth": "application/io.gardenlinux.cert.secureboot.kek.auth", + "secureboot.db.crt": "application/io.gardenlinux.cert.secureboot.db.crt", + "secureboot.db.der": "application/io.gardenlinux.cert.secureboot.db.der", + "secureboot.db.auth": "application/io.gardenlinux.cert.secureboot.db.auth", + "secureboot.db.arn": "application/io.gardenlinux.cert.secureboot.db.arn", + "secureboot.aws-efivars": "application/io.gardenlinux.cert.secureboot.aws-efivars", }