mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
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:
parent
971ab3b919
commit
fa0a052fc6
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue