summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index 4daec18..8f037b3 100644
--- a/README.md
+++ b/README.md
@@ -60,16 +60,20 @@ If you use this layer you do *not* need to set `read-only-rootfs` in the
60Example: 60Example:
61 61
62``` 62```
63root=/dev/vda rootfstype=ext4 rootrw=/dev/vdb rootrwfstype=btrfs 63root=/dev/sda1 rootfstype=ext4 rootrw=/dev/sda2 rootrwfstype=btrfs
64``` 64```
65 65
66`root=` specifies the read-only root filesystem device. (required) 66`root=` specifies the read-only root filesystem device. If this is not
67specified, the current rootfs is used.
67 68
68`rootfstype=` if support for the-read only filesystem is not build into the 69`rootfstype=` if support for the-read only filesystem is not build into the
69kernel, you can specifiy the required module name here. 70kernel, you can specifiy the required module name here.
70 71
71`rootrw=` specifies the read-write root filesystem device. If this is not 72`rootrw=` specifies the read-write filesystem device. If this is not
72specified, `tmpfs` is used. 73specified, `tmpfs` is used.
73 74
74`rootrwfstype=` if support for the read-write filesystem is not build into the 75`rootrwfstype=` if support for the read-write filesystem is not build into the
75kernel, you can specifiy the required module name here. 76kernel, you can specifiy the required module name here.
77
78`rootrwreset=` set to `yes` if you want to delete all the files in the
79read-write filesystem prior to building the overlay root files system.