diff options
author | Claudius Heine <ch@denx.de> | 2017-03-22 11:28:00 +0100 |
---|---|---|
committer | Claudius Heine <ch@denx.de> | 2017-03-22 11:28:00 +0100 |
commit | 5200c58a72e660b1bf1fc4b9a08fd16c47550ce4 (patch) | |
tree | 6714214f5452c59b46700539d0b4032827dccc8f /README.md | |
parent | d967645658b1607401a4256472397ab5a2a78487 (diff) | |
download | meta-readonly-rootfs-overlay-5200c58a72e660b1bf1fc4b9a08fd16c47550ce4.tar.gz |
Corrected Readme.md to use OpenEmbedded instead of Yocto.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,7 +1,7 @@ | |||
1 | # meta-readonly-rootfs-overlay | 1 | # meta-readonly-rootfs-overlay |
2 | 2 | ||
3 | This yocto layer provides the necessary scripts and configurations to setup a | 3 | This OpenEmbedded layer provides the necessary scripts and configurations to |
4 | writable root file system overlay on top of a read-only root file system. | 4 | setup 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 | |||
69 | it. | 69 | it. |
70 | 70 | ||
71 | Assuming the readonly-rootfs-overlay layer exists at the top-level of your | 71 | Assuming the readonly-rootfs-overlay layer exists at the top-level of your |
72 | yocto build tree, you can add it to the build system by adding the | 72 | OpenEmbedded source tree, you can add it to the build system by adding the |
73 | location of the readonly-rootfs-overlay layer to bblayers.conf, along with any | 73 | location of the readonly-rootfs-overlay layer to bblayers.conf, along with any |
74 | other layers needed. e.g.: | 74 | other 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 | ||