diff options
author | Richard Purdie <richard@openedhand.com> | 2007-10-29 20:18:06 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-10-29 20:18:06 +0000 |
commit | 3b945ff45c9caf683962ad34dcde602cba0a1186 (patch) | |
tree | 5a7bad7f1cfd5c5e79a863a04404c40f628603f5 /meta/conf | |
parent | d49d6f6169f57194cbdbc25ee9423871bf244aa9 (diff) | |
download | openembedded-core-3b945ff45c9caf683962ad34dcde602cba0a1186.tar.gz openembedded-core-3b945ff45c9caf683962ad34dcde602cba0a1186.tar.bz2 openembedded-core-3b945ff45c9caf683962ad34dcde602cba0a1186.tar.xz openembedded-core-3b945ff45c9caf683962ad34dcde602cba0a1186.zip |
bitbake.conf: Add dummy layout variables (describing the current staging layout for now)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3026 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf')
-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 4292395bf..8acc95f9b 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -1,4 +1,38 @@ ################################################################## +# Standard target filesystem layout. +################################################################## + +# Note these currently match the existing staging layout but this +# is planned to change, see the oe-dev mailing list + +# Path prefixes +layout_prefix = "" +layout_exec_prefix = "" +layout_base_prefix = "" + +# Base paths +layout_base_bindir = "${layout_base_prefix}/bin" +layout_base_sbindir = "${layout_base_prefix}/bin" +layout_base_libdir = "${layout_base_prefix}/lib" + +# Architecture independent paths +layout_sysconfdir = "/etc" +layout_localstatedir = "/var" +layout_servicedir = "/srv" +layout_sharedstatedir = "${layout_prefix}/com" +layout_datadir = "${layout_prefix}/share" +layout_infodir = "${layout_datadir}/info" +layout_mandir = "${layout_datadir}/man" +layout_docdir = "${layout_datadir}/doc" + +# Architecture dependent paths +layout_bindir = "${layout_exec_prefix}/bin" +layout_sbindir = "${layout_exec_prefix}/bin" +layout_libdir = "${layout_exec_prefix}/lib" +layout_includedir = "${layout_exec_prefix}/include" +layout_libexecdir = "${layout_exec_prefix}/libexec" + +################################################################## # Standard target filesystem paths. ################################################################## |