From a03aed2198420a55ef7bd23477bd613f215722bd Mon Sep 17 00:00:00 2001 From: alexander stefanov Date: Thu, 14 Nov 2024 01:05:24 +0300 Subject: [PATCH] add micro comments --- build.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.py b/build.py index 148f04c..134b9d1 100755 --- a/build.py +++ b/build.py @@ -84,12 +84,15 @@ def main(): print("Skipping U-Boot build.") if not skip_rootfs: + # dd here disk_image_path = create_disk_image(TMP_DIR, config, vendor, device) if disk_image_path: loop_device = setup_loop_device(disk_image_path) print(f"Loop device setup at {loop_device}") + # fdisk, mkfs here create_partitions(loop_device, config) mount_partitions(config, loop_device, TMP_DIR, vendor, device) + # dnf install rootfs here setup_bootstrap("bootstrap", TMP_DIR, vendor, device, distro, arch) else: