diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-07-26 01:56:54 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-26 01:56:54 +0000 |
commit | 0636e261a937973904916973a80cdc139c1a0769 (patch) | |
tree | f8b70a36a759e030393d1b7a63827e61707a1c81 /conf/distro/freeze.conf | |
parent | f00bfb5d43172cceb5855fdf37ca9d01cd53ffe6 (diff) |
Support for freezing BBFILES and reading BBFILES from a conf file.
Diffstat (limited to 'conf/distro/freeze.conf')
-rw-r--r-- | conf/distro/freeze.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/conf/distro/freeze.conf b/conf/distro/freeze.conf new file mode 100644 index 0000000000..a51e40f8d6 --- /dev/null +++ b/conf/distro/freeze.conf @@ -0,0 +1,24 @@ +# general configuration file for freezing a distribution +# +# If freeze.conf is included (include distro/freeze.conf) in the +# distro conf file it will define BBFILES from the information in +# ${DISTRO}-bbfiles.conf or ${DISTRO}-package-dirs.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. +# +# First 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. +PKGDIR ?= "${TOPDIR}/openembedded" +FROZEN_DIR ?= "/non/-existent/-directory/-for/-security" + +include conf/distro/${DISTRO}-packages.conf +include conf/${DISTRO}-packages.conf +include ${FROZEN_DIR}/${DISTRO}-packages.conf + +include conf/distro/${DISTRO}-bbfiles.conf +include conf/${DISTRO}-bbfiles.conf +include ${FROZEN_DIR}/${DISTRO}-bbfiles.conf |