Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 94ce40a5 authored by Roman Kiryanov's avatar Roman Kiryanov
Browse files

Do not populate `ro.kernel.qemu` in `ProcessKernelCmdline`



The emulator migrated to `ro.boot.qemu`.

Bug: 182291166
Test: presubmit
Signed-off-by: default avatarRoman Kiryanov <rkir@google.com>
Change-Id: Iaa3bdff5cc1efa79c21ae2dc2bdf7ec74731f66c
parent 12744bd2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1172,7 +1172,8 @@ static void ProcessKernelCmdline() {
        } else if (StartsWith(key, "qemu."sv)) {
            InitPropertySet("ro.kernel." + key, value);
        } else if (key == "qemu") {
            InitPropertySet("ro.kernel." + key, value);  // emulator specific, deprecated
            // emulator specific, should be retired once emulator migrates to
            // androidboot.
            InitPropertySet("ro.boot." + key, value);
        }
    });