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.
This commit is contained in:
Idan Horowitz 2022-01-25 20:29:34 +02:00
parent 971ab3b919
commit fa0a052fc6

View file

@ -28,7 +28,7 @@ namespace Kernel {
static Singleton<StorageManagement> s_the;
static Atomic<u32> 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()
{