From 911da26072f8679aa9a8f63e8d85d13b16a908a1 Mon Sep 17 00:00:00 2001 From: Jeremi Piotrowski Date: Fri, 16 Jul 2021 15:31:04 +0000 Subject: [PATCH] disk_layout: devcontainer: use architecture agnostic part uuid The previously used uuid 4f68bce3-e8cd-4db1-96e7-fbcaf984b709 is valid for x86_64 root partitions, which resulted in the dev container not working with systemd-nspawn on aarch64. systemd-nspawn fails with: No suitable root partition found in image Change the partition uuid to the architecture agnostic one documented in the man page: A GUID partition table (GPT) with a single partition of type 0fc63daf-8483-4772-8e79-3d69d8477de4. This makes systemd-nspawn happy on aarch64. Signed-off-by: Jeremi Piotrowski --- build_library/disk_layout.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/disk_layout.json b/build_library/disk_layout.json index 84b452c12d..1022069f79 100644 --- a/build_library/disk_layout.json +++ b/build_library/disk_layout.json @@ -130,7 +130,7 @@ "9":{ "label":"ROOT", "fs_label":"ROOT", - "type":"4f68bce3-e8cd-4db1-96e7-fbcaf984b709", + "type":"0fc63daf-8483-4772-8e79-3d69d8477de4", "blocks":"12582912" } },