aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/freeze/files/unfreeze
blob: 5be1459c3c9902e48bd684649358157dbc086326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh
#
# This script must be executed with the following environment variables
# and arguments:
#
# export FROZEN_DIR=<place to write conf files>
# export DISTRO=<distro being frozen>
# unfreeze
#
# If not given or empty FROZEN_DIR defaults to the directory on BBPATH containing
# conf/local.conf.
#
# The output of the script consists of two files:
# 	$FROZEN_DIR/$DISTRO-bbfiles.conf
#	  empty
#
#	$FROZEN_DIR/$DISTRO-packages.conf
#	  empty
#
# Check the arguments.
test -n "$DISTRO" || {
	echo "FATAL: unfreeze: set \$DISTRO to the name of the distro to freeze" >&2
	exit 1
}
if test -n "$FROZEN_DIR" -a -d "$FROZEN_DIR"
then
	: # ok, given a directory
else
	if test -n "$BBPATH"
	then
		FROZEN_DIR=""
		for d in ${BBPATH//:/ }
		do
			if test -r "$d/conf/local.conf" -o -r "$d/conf/auto.conf"
			then
				FROZEN_DIR="$d/conf"
				break
			elif test -z "$FROZEN_DIR" -a -d "$d"
			then
				# default to the first existing directory on
				# the path
				FROZEN_DIR="$d"
			fi
		done
	fi
	if test -n "$FROZEN_DIR"
	then
		echo "NOTE: unfreeze: \$FROZEN_DIR=\"$FROZEN_DIR\"" >&2
		echo "NOTE:           (defaulted from \$BBPATH=\"$BBPATH\")" >&2
	else
		echo "FATAL: unfreeze: set \$FROZEN_DIR to the directory for the new .conf files" >&2
		exit 1
	fi
fi
#
# do it
#
# the simple bb file list (package/bbfile.bb)
out="$FROZEN_DIR/$DISTRO-bbfiles.conf"
echo '# automatically generated by bitbake unfreeze' >"$out"
#
# the package directories list (package)
out="$FROZEN_DIR/$DISTRO-packages.conf"
echo '# automatically generated by bitbake unfreeze' >"$out"
echo 'BBFILES := "${PKGDIR}/packages/*/*.bb"' >>"$out"