summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 780cb6e..ec1aa07 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
1# meta-readonly-rootfs-overlay 1# meta-readonly-rootfs-overlay
2 2
3This yocto layer provides the necessary scripts and configurations to setup a 3This OpenEmbedded layer provides the necessary scripts and configurations to
4writable root file system overlay on top of a read-only root file system. 4setup a writable root file system overlay on top of a read-only root file system.
5 5
6## Why does this exists? 6## Why does this exists?
7 7
@@ -69,16 +69,16 @@ In order to use this layer, you need to make the build system aware of
69it. 69it.
70 70
71Assuming the readonly-rootfs-overlay layer exists at the top-level of your 71Assuming the readonly-rootfs-overlay layer exists at the top-level of your
72yocto build tree, you can add it to the build system by adding the 72OpenEmbedded source tree, you can add it to the build system by adding the
73location of the readonly-rootfs-overlay layer to bblayers.conf, along with any 73location of the readonly-rootfs-overlay layer to bblayers.conf, along with any
74other layers needed. e.g.: 74other layers needed. e.g.:
75 75
76``` 76```
77 BBLAYERS ?= " \ 77 BBLAYERS ?= " \
78 /path/to/yocto/meta \ 78 /path/to/layers/meta \
79 /path/to/yocto/meta-poky \ 79 /path/to/layers/meta-poky \
80 /path/to/yocto/meta-yocto-bsp \ 80 /path/to/layers/meta-yocto-bsp \
81 /path/to/yocto/meta-readonly-rootfs-overlay \ 81 /path/to/layers/meta-readonly-rootfs-overlay \
82 " 82 "
83``` 83```
84 84