block: add some basic extroot documentation
authorRafał Miłecki <rafal@milecki.pl>
Sat, 2 May 2020 11:29:08 +0000 (13:29 +0200)
committerRafał Miłecki <rafal@milecki.pl>
Sat, 2 May 2020 11:31:16 +0000 (13:31 +0200)
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
block.c

diff --git a/block.c b/block.c
index dfee7fb79066ca51aa351af017c7df7d737a39db..a7631c4af2a8e64fb4122d94301b1e9c501b5d16 100644 (file)
--- a/block.c
+++ b/block.c
@@ -1374,6 +1374,15 @@ static int test_fs_support(const char *name)
        return rv;
 }
 
+/**
+ * Check if mounted partition is a valid extroot
+ *
+ * @path target mount point
+ *
+ * Valid extroot partition has to contain /etc/.extroot-uuid with UUID of root
+ * device. This function reads UUID and verifies it OR writes UUID to
+ * .extroot-uuid if it doesn't exist yet (first extroot usage).
+ */
 static int check_extroot(char *path)
 {
        struct probe_info *pr = NULL;
@@ -1528,6 +1537,12 @@ static int mount_extroot(char *cfg)
        return err;
 }
 
+/**
+ * Look for extroot config and mount it if present
+ *
+ * Look for /etc/config/fstab on all supported partitions and use it for
+ * mounting extroot if specified.
+ */
 static int main_extroot(int argc, char **argv)
 {
        struct probe_info *pr;
@@ -1601,6 +1616,7 @@ static int main_extroot(int argc, char **argv)
        }
 #endif
 
+       /* As a last resort look for /etc/config/fstab on "rootfs" partition */
        return mount_extroot(NULL);
 }