aboutsummaryrefslogtreecommitdiffstats
path: root/conf/distro/include/freeze.inc
blob: 4c2c8b1e2e310ef65ec62cbce6c9e3ed2dc68677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 a distro-specific frozen directory - the former take
# precedence over the latter.
include conf/${DISTRO}-packages.conf
include ${FROZEN_DIR}/${DISTRO}-packages.conf

include conf/${DISTRO}-bbfiles.conf
include ${FROZEN_DIR}/${DISTRO}-bbfiles.conf