summaryrefslogtreecommitdiffstats
path: root/build/scripts/install_freebsd.sh
blob: cfc3f136c2583ee962afeb8198e107d44c7c0f47 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/bin/sh
#
# install_freebsd.sh
#
# part of pfSense (https://www.pfsense.org)
# Copyright (c) 2004-2016 Electric Sheep Fencing, LLC
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

export PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin

scripts_path=$(dirname $(realpath $0))

if [ ! -f "${scripts_path}/common.subr" ]; then
	echo >&2 "ERROR: common.subr is missing"
	exit 1
fi

. ${scripts_path}/common.subr

usage() {
	cat >&2 <<END
Usage: $(basename $0) -s srcdir -d destdir [-o objdir] [-iWKDhz]

Options:
	-s srcdir  -- Path to src directory
	-d destdir -- Destination directory to install
	-o objdir  -- Obj directory used to build
	-i         -- Include BSDInstall
	-W         -- Skip installworld
	-K         -- Skip installkernel
	-D         -- Skip distribution
	-h         -- Show this help and exit
	-z         -- gzip kernel

Environment:
	__MAKE_CONF      -- Path to make.conf
	SRCCONF          -- Path to src.conf
	SRC_ENV_CONF     -- Path to src-env.conf
	KERNCONF         -- Kernel names
	MODULES_OVERRIDE -- List of kernel modules to install
	TARGET           -- Machine hardware name
	TARGET_ARCH      -- Machine processor arquitecture name
END
	exit 1
}

unset with_bsdinstall
unset skip_world
unset skip_kernel
unset skip_distribution
unset gzip_kernel
while getopts s:d:o:iWKDhz opt; do
	case "$opt" in
		s)
			srcdir=$OPTARG
			;;
		d)
			destdir=$OPTARG
			;;
		o)
			objdir=$OPTARG
			;;
		i)
			with_bsdinstall=1
			;;
		W)
			skip_world=1
			;;
		K)
			skip_kernel=1
			;;
		D)
			skip_distribution=1
			;;
		z)
			gzip_kernel=1
			;;
		*)
			usage
			;;
	esac
done

# Default obj dir to src/../obj
: ${objdir=$(realpath ${srcdir}/../obj)}

[ -z "$srcdir" ] \
	&& err "source directory is not defined"

[ -e $srcdir -a ! -d $srcdir ] \
	&& err "source path already exists and is not a directory"

[ -z "$destdir" ] \
	&& err "destination directory is not defined"

[ -e $destdir -a ! -d $destdir ] \
	&& err "destination path already exists and is not a directory"

[ -n "$objdir" -a -e $objdir -a ! -d $objdir ] \
	&& err "obj path already exists and is not a directory"

for env_var in __MAKE_CONF SRCCONF SRC_ENV_CONF; do
	eval "value=\${$env_var}"
	[ -n "${value}" -a ! -f "${value}" ] \
		&& err "${env_var} is pointing to a nonexistent file ${value}"
done

[ ! -f ${srcdir}/sys/sys/param.h ] \
	&& err "Source directory is missing sys/sys/param.h"

ncpu=$(sysctl -n hw.ncpu)
njobs=$((ncpu*2))
j="-j${njobs}"

[ -n "${objdir}" ] \
	&& export MAKEOBJDIRPREFIX=${objdir}

[ -z "${with_bsdinstall}" ] \
	&& export WITHOUT_BSDINSTALL=yes

[ -d $destdir ] \
	&& force_rm ${destdir}

export DESTDIR=${destdir}

make_cmd="make -C ${srcdir} -s ${j}"

[ -z "${skip_world}" ] \
	&& run "Installing world" \
		"${make_cmd} installworld"

if [ -z "${skip_kernel}" ]; then
	run "Installing kernel" \
		"${make_cmd} KERNCONF=${KERNCONF:-pfSense} installkernel"

	[ -n "${gzip_kernel}" ] \
		&& run "Compressing kernel" \
			"gzip -f9 ${destdir}/boot/kernel/kernel"
fi

[ -z "${skip_distribution}" ] \
	&& run "Installing distribution" \
		"${make_cmd} distribution"

[ -n "${with_bsdinstall}" ] \
	&& run "Copying /etc/rc.local to start bsdinstall" \
		"cp ${srcdir}/release/rc.local ${destdir}/etc"

exit 0
OpenPOWER on IntegriCloud