xref: /freebsd/tools/tools/nanobsd/dhcpd/common (revision 6419bb52)
1# $FreeBSD$
2
3#-
4# Copyright (c) 2014 M. Warner Losh <imp@FreeBSD.org>
5# Copyright (c) 2010 iXsystems, Inc.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions
9# are met:
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13#    notice, this list of conditions and the following disclaimer in the
14#    documentation and/or other materials provided with the distribution.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19# ARE DISCLAIMED.  IN NO EVENT SHALL iXsystems, Inc OR CONTRIBUTORS BE LIABLE
20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26# SUCH DAMAGE.
27#
28#
29# This file is heavily derived from both Sam Leffler's Avilia config,
30# as well as the BSDRP project's config file.  Neither of these have
31# an explicit copyright/license statement, but are implicitly BSDL. This
32# example has been taken from the FreeNAS project (an early version) and
33# simplified to meet the needs of the example.
34#
35
36# NB: You want the other file
37
38NANO_PMAKE="make -j $(sysctl -n hw.ncpu)"
39
40NANO_CFG_BASE=$(pwd)
41NANO_CFG_BASE=${NANO_CFG_BASE%/dhcpd}
42NANO_SRC=$(pwd)
43NANO_SRC=${NANO_SRC%/tools/tools/nanobsd/dhcpd}
44NANO_OBJ=${NANO_SRC}/../dhcpd/obj
45# Where cust_pkg() finds packages to install
46#XXX: Is this the right place?
47#NANO_PORTS=$(realpath ${NANO_SRC}/../ports)
48NANO_PORTS=/usr/ports
49NANO_PACKAGE_DIR=${NANO_SRC}/${NANO_TOOLS}/Pkg
50NANO_DATADIR=${NANO_OBJ}/_.data
51NANO_DATASIZE=40960
52NANO_INIT_IMG2=0
53unset MAKEOBJDIRPREFIX
54
55# this to go into nanobsd.sh
56NANO_PORTS=${NANO_PORTS:-/usr/ports}
57
58customize_cmd cust_allow_ssh_root
59
60add_etc_make_conf()
61{
62	touch ${NANO_WORLDDIR}/etc/make.conf
63}
64customize_cmd add_etc_make_conf
65
66clean_usr_local()
67{
68	LOCAL_DIR=${NANO_WORLDDIR}/usr/local
69	pprint 2 "Clean and create world directory (${LOCAL_DIR})"
70	if rm -rf ${LOCAL_DIR}/ > /dev/null 2>&1 ; then
71		true
72	else
73		chflags -R noschg ${LOCAL_DIR}/
74		rm -rf ${LOCAL_DIR}/
75	fi
76	for f in bin etc lib libdata libexec sbin share; do
77		mkdir -p ${LOCAL_DIR}/$f
78	done
79}
80customize_cmd clean_usr_local
81
82cust_install_machine_files()
83{
84	echo "cd ${NANO_CFG_BASE}/Files"
85	cd ${NANO_CFG_BASE}/Files
86	find . -print | grep -Ev '/(CVS|\.git|\.hg|\.svn)' | cpio -dumpv ${NANO_WORLDDIR}
87}
88customize_cmd cust_install_files
89customize_cmd cust_install_machine_files
90
91buildenv()
92{
93	cd ${NANO_SRC}
94	env __MAKE_CONF=${NANO_MAKE_CONF_BUILD} DESTDIR=${NANO_WORLDDIR} make buildenv
95}
96
97NANO_MAKEFS="makefs -B big \
98	-o bsize=4096,fsize=512,density=8192,optimization=space"
99export NANO_MAKEFS
100
101# NB: leave c++ enabled so devd can be built
102CONF_BUILD="
103WITHOUT_ACPI=true
104WITHOUT_ATM=true
105WITHOUT_AUDIT=true
106WITHOUT_BLUETOOTH=true
107WITHOUT_CALENDAR=true
108WITHOUT_DICT=true
109WITHOUT_EXAMPLES=true
110WITHOUT_GAMES=true
111WITHOUT_HTML=true
112WITHOUT_IPFILTER=true
113WITHOUT_LLVM_COV=true
114WITHOUT_LOCALES=true
115WITHOUT_LPR=true
116WITHOUT_MAN=true
117WITHOUT_NETCAT=true
118WITHOUT_NIS=true
119WITHOUT_NLS=true
120WITHOUT_NS_CACHING=true
121WITHOUT_PROFILE=true
122WITHOUT_SENDMAIL=true
123WITHOUT_SHAREDOCS=true
124WITHOUT_SYSCONS=true
125WITHOUT_LIB32=true
126"
127CONF_INSTALL="$CONF_BUILD
128INSTALL_NODEBUG=t
129NOPORTDOCS=t
130NO_INSTALL_MANPAGES=t
131"
132# The following would help...
133# WITHOUT_TOOLCHAIN=true		can't build ports
134# WITHOUT_INSTALLLIB=true		libgcc.a
135PKG_ONLY_MAKE_CONF="
136WITHOUT_TOOLCHAIN=true
137WITHOUT_INSTALLLIB=true
138"
139
140NANO_PACKAGE_ONLY=1
141
142# install a package from a pre-built binary
143do_add_pkg ()
144{
145	# Need to create ${NANO_OBJ}/ports in this add_pkg_${port} function
146	set -x
147	mkdir -p ${NANO_OBJ}/ports/distfiles
148	mkdir -p ${NANO_OBJ}/ports/packages
149	mkdir -p ${NANO_WORLDDIR}/usr/ports/packages
150	mkdir -p ${NANO_WORLDDIR}/usr/ports/distfiles
151	mount -t nullfs -o noatime ${NANO_OBJ}/ports/packages \
152	    ${NANO_WORLDDIR}/usr/ports/packages
153	mount -t nullfs -o noatime ${NANO_OBJ}/ports/distfiles \
154	    ${NANO_WORLDDIR}/usr/ports/distfiles
155	CR env ASSUME_ALWAYS_YES=YES SIGNATURE_TYPE=none /usr/sbin/pkg add /usr/ports/packages/All/$1.txz
156	umount ${NANO_WORLDDIR}/usr/ports/distfiles
157	umount ${NANO_WORLDDIR}/usr/ports/packages
158	rmdir ${NANO_WORLDDIR}/usr/ports/packages
159	rmdir ${NANO_WORLDDIR}/usr/ports/distfiles
160	rmdir ${NANO_WORLDDIR}/usr/ports
161	set +x
162}
163
164# Build a port (with the side effect of creating a package)
165do_add_port ()
166{
167	local port_path
168	port_path=$1
169	shift
170	set -x
171	# Need to create ${NANO_OBJ}/ports in this add_port_${port} function
172	mkdir -p ${NANO_OBJ}/ports/distfiles
173	mkdir -p ${NANO_OBJ}/ports/packages
174	mkdir -p ${NANO_PORTS}/packages
175	mkdir -p ${NANO_PORTS}/distfiles
176	mkdir -p ${NANO_WORLDDIR}/usr/src
177	mkdir -p ${NANO_WORLDDIR}/usr/ports
178      	mount -t nullfs -o noatime ${NANO_SRC} ${NANO_WORLDDIR}/usr/src
179	mount -t nullfs -o noatime ${NANO_PORTS} ${NANO_WORLDDIR}/usr/ports
180	mount -t nullfs -o noatime ${NANO_OBJ}/ports/packages \
181	    ${NANO_WORLDDIR}/usr/ports/packages
182	mount -t nullfs -o noatime ${NANO_OBJ}/ports/distfiles \
183	    ${NANO_WORLDDIR}/usr/ports/distfiles
184	mkdir -p ${NANO_WORLDDIR}/dev
185	mount -t devfs devfs ${NANO_WORLDDIR}/dev
186	mkdir -p ${NANO_WORLDDIR}/usr/workdir
187	cp /etc/resolv.conf ${NANO_WORLDDIR}/etc/resolv.conf
188	# OK, a little inefficient, but likely not enough to worry about.
189	CR ldconfig /lib /usr/lib /usr/local/lib
190	CR ldconfig -R
191	CR ldconfig -r
192# Improvement: Don't know why package-recursive don't works here
193	CR "env UNAME_p=${NANO_ARCH} TARGET=${NANO_ARCH} \
194	    TARGET_ARCH=${NANO_ARCH} PORTSDIR=${NANO_PORTS} make \
195	    __MAKE_CONF=${NANO_MAKE_CONF_BUILD} \
196	    WRKDIRPREFIX=/usr/workdir -C /usr/ports/$port_path \
197	    package-recursive BATCH=yes $* clean FORCE_PKG_REGISTER=t"
198	rm ${NANO_WORLDDIR}/etc/resolv.conf
199	rm -rf ${NANO_WORLDDIR}/usr/obj
200	rm -rf ${NANO_WORLDDIR}/usr/workdir
201	umount ${NANO_WORLDDIR}/dev
202	umount ${NANO_WORLDDIR}/usr/ports/packages
203	umount ${NANO_WORLDDIR}/usr/ports/distfiles
204	umount ${NANO_WORLDDIR}/usr/ports
205	umount ${NANO_WORLDDIR}/usr/src
206	set +x
207}
208
209# Need to check if this function works with cross-compiling architecture!!!!
210# Recursive complex fonction: Generate one function for each ports
211add_port () {
212    local port_path=$1
213    local port=`echo $1 | sed -e 's/\//_/'`
214    shift
215    # Check if package already exist
216    # Need to:
217    # 1. check ARCH of this package!
218    # 2. Add a trap
219    cd ${NANO_PORTS}/${port_path}
220    PKG_NAME=`env PORTSDIR=${NANO_PORTS} make __MAKE_CONF=${NANO_MAKE_CONF_BUILD} package-name`
221    if [ -f ${NANO_OBJ}/ports/packages/All/${PKG_NAME}.txz ]; then
222	# Pkg file found: Generate add_pkg_NAME function
223	eval "
224	    add_pkg_${port} () {
225	        do_add_pkg ${PKG_NAME}
226	    }
227            customize_cmd add_pkg_${port}
228            "
229    else
230	# No pkg file: Generate add_port_NAME function
231        eval "
232            add_port_${port} () {
233	        do_add_port ${port_path} $*
234	    }
235	    customize_cmd add_port_${port}
236	"
237	NANO_PACKAGE_ONLY=0
238    fi
239}
240
241die()
242{
243	echo "$*"
244	exit 1
245}
246
247# Automatically include the packaging port here so it is always first so it
248# builds the port and adds the package so we can add other packages.
249add_port ports-mgmt/pkg
250
251rp=$(realpath ${NANO_OBJ}/)
252__a=`mount | grep ${rp} | awk '{print length($3), $3;}' | sort -rn | awk '{$1=""; print;}'`
253if [ -n "$__a" ]; then
254    echo "unmounting $__a"
255    umount $__a
256fi
257
258NANO_BOOTLOADER="boot/boot0"
259