From 90e2c2cfeb7737d50a82112a4d140a32fd918ab1 Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Fri, 11 Oct 2024 13:48:19 +0200 Subject: [PATCH] tizen: sd_fusing.py: correct rootfs partition UUID for x86_64 emulator target According to [1] the x86_64 target should use 4f68bce3-e8cd-4db1-96e7-fbcaf984b709 UUID for the rootfs partition. [1] https://uapi-group.org/specifications/specs/discoverable_partitions_specification/ Suggested-by: Lukasz Stelmach Signed-off-by: Marek Szyprowski Change-Id: Id8e7368e4ddfe181def369f79800a2772ff4c8bc --- scripts/tizen/sd_fusing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tizen/sd_fusing.py b/scripts/tizen/sd_fusing.py index d4a521d4a0..4505bbbd94 100755 --- a/scripts/tizen/sd_fusing.py +++ b/scripts/tizen/sd_fusing.py @@ -915,7 +915,7 @@ class X86emu64(X86emu): long_name = "QEMU x86 64-bit" def __init__(self, device, args): - setattr(args, "_rootfs_uuid", "44479540-F297-41B2-9AF7-D131D5F0458A") + setattr(args, "_rootfs_uuid", "4f68bce3-e8cd-4db1-96e7-fbcaf984b709") super().__init__(device, args) TARGETS = { -- 2.34.1