diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-07-14 22:27:42 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-07-14 22:27:42 +0000 |
commit | e3db3e898d593acc7fcfc3f48a356bbe6bd0b6a0 (patch) | |
tree | 64748727d4d030b7761c208860438efc117a0c89 /conf/distro/include/freeze.inc | |
parent | 39cd41c83354be9b04ce91c3d0c064c32413a7e7 (diff) |
distro configurations: rename include files to *.inc and adjust those which include it accordingly
Diffstat (limited to 'conf/distro/include/freeze.inc')
-rw-r--r-- | conf/distro/include/freeze.inc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/conf/distro/include/freeze.inc b/conf/distro/include/freeze.inc new file mode 100644 index 0000000000..d41cb89111 --- /dev/null +++ b/conf/distro/include/freeze.inc @@ -0,0 +1,25 @@ +# general configuration file for freezing a distribution +# +# If freeze.conf is included (require conf/distro/include/freeze.inc) in the +# distro conf file it will define BBFILES from the information in +# ${DISTRO}-bbfiles.conf or ${DISTRO}-packages.conf (whichever +# exists in that order of preference.) +# +# NOTE that these conf files use ${PKGDIR} and therefore that +# variable must be defined before this file is included, or the +# definition below (${TOPDIR}/openmebedded) must be correct. +# +PKGDIR ?= "${TOPDIR}/openembedded" +FROZEN_DIR ?= "/non/-existent/-directory/-for/-security" + +# Pull in the frozen definitions (if they exist) The multiple +# includes allow the frozen file to be stored alongside local.conf +# and in the conf/distro directory - the former take precedence over +# the latter. +require conf/distro/include/${DISTRO}-packages.inc +include conf/${DISTRO}-packages.conf +include ${FROZEN_DIR}/${DISTRO}-packages.conf + +require conf/distro/include/${DISTRO}-bbfiles.inc +include conf/${DISTRO}-bbfiles.conf +include ${FROZEN_DIR}/${DISTRO}-bbfiles.conf |