diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-01-25 20:29:34 +0200 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2022-01-25 22:41:17 +0200 |
commit | fa0a052fc6a68a4c01082209c297b27c5f4ad2f8 (patch) | |
tree | f76849b7a0e29eed17dbf842d90cfb7dc7330a07 /Kernel/Storage | |
parent | 971ab3b919a797248dd031c5f750b59eb6ce4578 (diff) | |
download | serenity-fa0a052fc6a68a4c01082209c297b27c5f4ad2f8.zip |
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.
Diffstat (limited to 'Kernel/Storage')
-rw-r--r-- | Kernel/Storage/StorageManagement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<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() { |