diff options
-rw-r--r-- | meta/conf/bitbake.conf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 4292395bf6..8acc95f9b3 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -1,4 +1,38 @@ | |||
1 | ################################################################## | 1 | ################################################################## |
2 | # Standard target filesystem layout. | ||
3 | ################################################################## | ||
4 | |||
5 | # Note these currently match the existing staging layout but this | ||
6 | # is planned to change, see the oe-dev mailing list | ||
7 | |||
8 | # Path prefixes | ||
9 | layout_prefix = "" | ||
10 | layout_exec_prefix = "" | ||
11 | layout_base_prefix = "" | ||
12 | |||
13 | # Base paths | ||
14 | layout_base_bindir = "${layout_base_prefix}/bin" | ||
15 | layout_base_sbindir = "${layout_base_prefix}/bin" | ||
16 | layout_base_libdir = "${layout_base_prefix}/lib" | ||
17 | |||
18 | # Architecture independent paths | ||
19 | layout_sysconfdir = "/etc" | ||
20 | layout_localstatedir = "/var" | ||
21 | layout_servicedir = "/srv" | ||
22 | layout_sharedstatedir = "${layout_prefix}/com" | ||
23 | layout_datadir = "${layout_prefix}/share" | ||
24 | layout_infodir = "${layout_datadir}/info" | ||
25 | layout_mandir = "${layout_datadir}/man" | ||
26 | layout_docdir = "${layout_datadir}/doc" | ||
27 | |||
28 | # Architecture dependent paths | ||
29 | layout_bindir = "${layout_exec_prefix}/bin" | ||
30 | layout_sbindir = "${layout_exec_prefix}/bin" | ||
31 | layout_libdir = "${layout_exec_prefix}/lib" | ||
32 | layout_includedir = "${layout_exec_prefix}/include" | ||
33 | layout_libexecdir = "${layout_exec_prefix}/libexec" | ||
34 | |||
35 | ################################################################## | ||
2 | # Standard target filesystem paths. | 36 | # Standard target filesystem paths. |
3 | ################################################################## | 37 | ################################################################## |
4 | 38 | ||