From 543b8e906dfebc133c6afe77bb6e43b3d41d9d58 Mon Sep 17 00:00:00 2001 From: Giulio Benetti Date: Sun, 7 Nov 2021 03:43:05 +0100 Subject: [PATCH] board/qemu/aarch64-sbsa/genimage.cfg: beautify file Beatify this genimage .cfg file to have consistency with all genimage .cfg files in Buildroot. Signed-off-by: Giulio Benetti Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- board/qemu/aarch64-sbsa/genimage.cfg | 42 +++++++++++++++------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/board/qemu/aarch64-sbsa/genimage.cfg b/board/qemu/aarch64-sbsa/genimage.cfg index de585b3b91..957f1a0530 100644 --- a/board/qemu/aarch64-sbsa/genimage.cfg +++ b/board/qemu/aarch64-sbsa/genimage.cfg @@ -1,27 +1,29 @@ image efi-part.vfat { - vfat { - file EFI { - image = "efi-part/EFI" - } - file Image { - image = "Image" - } - } - size = 64M + vfat { + file EFI { + image = "efi-part/EFI" + } + + file Image { + image = "Image" + } + } + + size = 64M } image disk.img { - hdimage { - gpt = true - } + hdimage { + gpt = true + } - partition boot { - partition-type = 0xEF - image = "efi-part.vfat" - } + partition boot { + partition-type = 0xEF + image = "efi-part.vfat" + } - partition root { - partition-type = 0x83 - image = "rootfs.ext2" - } + partition root { + partition-type = 0x83 + image = "rootfs.ext2" + } }