From 0636e261a937973904916973a80cdc139c1a0769 Mon Sep 17 00:00:00 2001 From: John Bowler Date: Tue, 26 Jul 2005 01:56:54 +0000 Subject: Support for freezing BBFILES and reading BBFILES from a conf file. --- conf/distro/freeze.conf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 conf/distro/freeze.conf (limited to 'conf/distro/freeze.conf') 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 -- cgit v1.2.3