OpenEmbedded renamed the packages directory to recipes.
[nslu2-linux/master.git] / conf / site.conf
bloba750dac52cc5a5e93bbb993bd58d369a35a4769c
1 # NSLU2 master makefile bitbake site configuration
2 # It should not be necessary to alter this file!
4 # This configuration defines the location of the directories
5 # bitbake requires to build a particular distribution (DISTRO)
7 # Each DISTRO must create a appropriate topdir file containing
8 # (just) the definition of TOPDIR
9 include conf/topdir.conf
11 # These definitions should be the same for every DISTRO - if
12 # a change is necessary make it in the DISTRO auto.conf.  The
13 # rvalues are evaluated here for safety (i.e. to prevent accidents
14 # if something else defines TOPDIR).
15 TMPDIR := "${TOPDIR}/tmp"
16 CACHE := "${TMPDIR}/cache"
17 DL_DIR := "${TOPDIR}/downloads"
19 # The following is not defined or used by the standard bitbake
20 # configuration files, however it must be defined here for 'freeze'
21 # and 'unfreeze' to work correctly
22 PKGDIR := "${TOPDIR}/openembedded"
24 # BBFILES is the list of all the .bb files bitbake looks at when
25 # working out how to build a package.  By default this value is
26 # overridden later in the ${DISTRO}.conf file (when it includes
27 # conf/distro/freeze.conf).
28 BBFILES := "${PKGDIR}/recipes/*/*.bb"
30 # The distro must create the following directories - either by
31 # populating them with the required files or, in the master makefile
32 # environment, by symbolic links to the relevant shared directories
33 # (which are directories of the same name in ..)
35 # common - contains conf/site.conf - this file
36 # bitbake - the directory containing the bitbake program
37 # downloads - contains the source files downloaded from the network
38 # openembedded - the directory containing the OE source
40 # All these directories may be shared between multiple distros.
41 # The 'tmp' directory may not be shared, however bitbake will create
42 # it automatically when required.  The 'downloads' directory will also
43 # be created if required by bitbake.