1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| SUMMARY = "Overlayfs class unit test"
| DESCRIPTION = "Contains an overlayfs configuration"
| LICENSE = "MIT"
|
| INHIBIT_DEFAULT_DEPS = "1"
| EXCLUDE_FROM_WORLD = "1"
|
| inherit ${@bb.utils.contains("DISTRO_FEATURES", "overlayfs", "overlayfs", "", d)}
| include test_recipe.inc
|
| OVERLAYFS_WRITABLE_PATHS[mnt-overlay] = "/usr/share/my-application"
|
| do_install() {
| install -d ${D}/usr/share/my-application
| }
|
| FILES:${PN} += "/usr"
|
|