summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaudius Heine <ch@denx.de>2017-03-22 11:28:00 +0100
committerClaudius Heine <ch@denx.de>2017-03-22 11:28:00 +0100
commit5200c58a72e660b1bf1fc4b9a08fd16c47550ce4 (patch)
tree6714214f5452c59b46700539d0b4032827dccc8f
parentd967645658b1607401a4256472397ab5a2a78487 (diff)
downloadmeta-readonly-rootfs-overlay-5200c58a72e660b1bf1fc4b9a08fd16c47550ce4.tar.gz
Corrected Readme.md to use OpenEmbedded instead of Yocto.
-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