From fa0a052fc6a68a4c01082209c297b27c5f4ad2f8 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Tue, 25 Jan 2022 20:29:34 +0200 Subject: [PATCH] Kernel: Use PARTUUID: instead of PARTUUID= as the partition uuid prefix This makes the functionality work again, as we no longer allow any equal signs inside boot parameter values. --- Kernel/Storage/StorageManagement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Storage/StorageManagement.cpp b/Kernel/Storage/StorageManagement.cpp index 6bc2eb9d84..7d05fce3d9 100644 --- a/Kernel/Storage/StorageManagement.cpp +++ b/Kernel/Storage/StorageManagement.cpp @@ -28,7 +28,7 @@ namespace Kernel { static Singleton s_the; static Atomic s_device_minor_number; -static constexpr StringView partition_uuid_prefix = "PARTUUID="sv; +static constexpr StringView partition_uuid_prefix = "PARTUUID:"sv; UNMAP_AFTER_INIT StorageManagement::StorageManagement() {