source: hybrid/branches/releng-10/nanobsd/cfg/nanobsd.wleiden@ 13415

Last change on this file since 13415 was 13415, checked in by rick, 9 years ago

Simplify block notation

File size: 11.9 KB
Line 
1## Dit is een NanoBSD configuratie-template voor WirelessLeiden.
2## Instellingen weergegeven binnen dit bestand gelden als
3## standaard binnen de organisatie.
4
5# Little hack to allow proper secify of KERNL/PKG location
6if [ -n "$NANO_CFG_FILE" ]; then
7 NANO_CONF_DIR=$(cd $(dirname $NANO_CFG_FILE); pwd -P)
8else
9 NANO_CONF_DIR=$(cd $(dirname $2); pwd -P)
10fi
11
12# object naam in /usr/obj/nanobsd.{obj}
13NANO_NAME=wleiden-hybrid
14NANO_SRC=/usr/src # nanobsd source tree
15NANO_TOOLS=$(pwd)
16NANO_KERNEL=$NANO_CONF_DIR/kernel.wleiden # naam van het kernel configuratiebestand
17NANO_IMAGES=2 # aantal nanobsd code slices/installs (1/2)
18
19MB2bs() {
20 return $(( $1 * 1024 * 1024 / 512))
21}
22
23NANO_CONFSIZE=`MB2bs 4` # volume van de config slice in 512bs
24NANO_DATASIZE=0 # volume van de data slice, 0 = not configured
25NANO_CODESIZE=0 # Let buildscript the operating system slice as large as posible
26NANO_RAM_TMPVARSIZE=`MB2bs 10` # Volume of combined var & tmp slice in 512bs
27
28NANO_LABEL=WLIMG
29NANO_NEWFS="-b 4096 -f 512 -i 8192" # Overwrite the default stettings to disable Soft-updates
30
31
32#XXX: Eeks, fixed packages, needs building a hook to allow building the package
33# of the shelfs if needed, copy to right directory, done. With only input needed
34# a list of ports in the format like net/net-snmp
35NANO_PACKAGE_DIR=$NANO_CONF_DIR/../pkg/All
36NANO_PACKAGE_LIST="*"
37
38
39# Wireless Leiden ports from $WL_PORTSDIR are copied OVER $PORTSDIR
40PORTSDIR='/usr/ports'
41WL_PORTSDIR="$NANO_CONF_DIR/../ports/"
42
43# Dirty quirk to allow comments in part below
44PACKAGE_LIST=`cat <<EOF | sed -e 's/#.*$//g' | xargs
45benchmarks/iperf
46devel/py-yaml
47editors/vim-lite
48#dns/dnsmasq
49ftp/curl
50lang/python2
51lang/python
52net/ladvd
53net-mgmt/iftop
54net-mgmt/net-snmp
55net/mtr
56net/isc-dhcp42-server
57net/pen
58ports-mgmt/pkg
59security/sudo
60security/ca_root_nss
61sysutils/screen
62sysutils/ucspi-tcp
63www/apache24
64www/tinyproxy
65
66# Extra WL ports
67net/lvrouted
68`
69# Package target
70PKG_MAKE_ARGS="PACKAGES=$(dirname $NANO_PACKAGE_DIR) BATCH=yes PACKAGE_BUILDING=yes"
71
72PKG_MAKE_CONF="
73# www/py-cherrypy - include apache templating
74# net-mgmt/net-snmp - no perl please (size)
75# net-mgmt/nagios-plugins - no threading (single CPU)
76# shells/bash-static - logging via syslog
77# net/mtr - no X11 (no screen)
78# lang/ocaml - no TK support (requires X11)
79# devel/ocaml-findlib - no TOOLBOX support (requires ocaml with TK support)
80OPTIONS_SET= APACHE FPING SYSLOG
81OPTIONS_UNSET= PERL PERL_EMBEDDED X11 TK TOOLBOX
82"
83
84##NANO_PACKAGE_LIST=
85
86# Warning: set to 1 to debug make build errors
87# Number of recurrent parrallel make builds
88if `grep -q 'acpi0: <PRLS PRLS_OEM> on motherboard' /var/run/dmesg.boot`; then
89 # Mac OS X Parallels virtual machine
90 NANO_PMAKE="make -B"
91else
92 # Default 2 times number of CPU's inside machine
93 NANO_PARALLEL_MAKE=`expr $(sysctl -n hw.ncpu) \* 2`
94 NANO_PMAKE="make -j ${NANO_PARALLEL_MAKE}"
95fi
96
97# Starting from soekris bios version 1.31 upwards boot0sio does not seems work
98# anymore, but boot0 does (weird)
99NANO_BOOTLOADER="boot/boot0"
100
101# Strip down to a more acceptable size
102# hints from http://people.freebsd.org/~phk/nanobsd/soekris_4x26/make.soekris_4x26.conf (46MB)
103NANO_PRUNE="$NANO_PRUNE usr/share/examples"
104NANO_PRUNE="$NANO_PRUNE usr/share/syscons"
105NANO_PRUNE="$NANO_PRUNE usr/share/calendar"
106# NB! usr/share/misc contains termcap, vi(1) etc fails to work without it.
107# NANOBSD_PRUNE += usr/share/misc
108NANO_PRUNE="$NANO_PRUNE usr/share/pcvt"
109NANO_PRUNE="$NANO_PRUNE usr/share/me"
110NANO_PRUNE="$NANO_PRUNE usr/share/doc"
111
112
113
114
115
116# Opties parsed gedurende build & install world
117# Also check man 3 src.conf for details
118# Some flags are misleading, e.g. could only be installworld (e.g.), for details:
119# http://phk.freebsd.dk/misc/build_options/
120# For details on make options also check:
121# /usr/src/share/mk/bsd.own.mk
122CONF_COMMON='
123# Specific enabled options
124#WITHOUT_ACPI=YES # geen advanced configuration power interface
125#WITHOUT_BIND=YES # geen bind tools, dns/named geinstalleerd
126#WITHOUT_CXX=YES # Set to not build g++(1) and related libraries.
127#WITHOUT_GROFF=YES # Set to not build groff(1).
128#WITHOUT_INET6=YES # geen ondersteuning inet versie 6 architectuur
129#WITHOUT_INFO=YES # geen info bestanden, readable online docs
130#WITHOUT_IPFILTER=YES # geen ip filtering geinstalleerd
131#WITHOUT_KLDLOAD=YES # do not allow loading of kernel modules
132#WITHOUT_MAILWRAPPER=YES # geen mailwrapper bij gebruik sendmail
133#WITHOUT_MAN=YES # geen handleidingen gecompileerd
134#WITHOUT_MISC=YES # geen misc sub directory
135#WITHOUT_MODULES=YES # geen ondersteuning toevoegen modules
136#WITHOUT_PAM=YES # geen ondersteuning pa modules
137#WITHOUT_PF=YES # geen packet filtering geinstalleerd
138#WITHOUT_SHARE=YES # geen share sub directory
139#WITHOUT_USB=YES # geen ondersteuning usb modules
140# Specific disabled options
141WITHOUT_ATM=YES # geen ondersteuning Asynchronous Transfer Mode
142WITHOUT_AUDIT=YES # geen event auditing / audit trails
143WITHOUT_AUTHPF=YES # geen authenticating gateway user shell
144WITHOUT_BLUETOOTH=YES # geen ondersteuning Bluetooth modules
145WITHOUT_CALENDAR=YES # geen calendar reminder service gecompileerd
146WITHOUT_CDDL=YES # Set to not build code licensed under Sun CDDL. (also ZFS)
147WITHOUT_CPP=YES # Set to not build cpp(1).
148WITHOUT_CVS=YES # geen cvs tools geinstalleerd
149WITHOUT_DICT=YES # geen dictionary ondersteuning
150WITHOUT_EXAMPLES=YES # geen voorbeeld configuratiebestanden
151WITHOUT_FORTRAN=YES # geen ondersteuning fortran compilers
152WITHOUT_GAMES=YES # geen games gecompileerd
153WITHOUT_GCOV=YES # geen gcov test coverage program
154WITHOUT_GDB=YES # geen gnu debugger gecompileerd
155WITHOUT_GPIB=YES # geen ondersteuning gpib kaarten
156WITHOUT_HTML=YES # geen html help bestanden gecompileerd
157WITHOUT_I4B=YES # geen ondersteuning voor isdn
158WITHOUT_IPX=YES # geen ondersteuning ipx protocols
159WITHOUT_KERBEROS=YES # geen ondersteuning Kerberos authenticatie
160WITHOUT_LOCALES=YES # geen ondersteuning lokalisatie
161WITHOUT_LPR=YES # geen ondersteuning print services
162WITHOUT_NIS=YES # geen ondersteuning network information system
163WITHOUT_PROFILE=YES # Set to avoid compiling profiled libraries.
164WITHOUT_RCMDS=YES # geen ondersteuning rcmds,
165WITHOUT_RESCUE=YES # geen rescue bestanden gecompileerd
166WITHOUT_SENDMAIL=YES # geen sendmail geinstalleerd
167WITHOUT_SHAREDOCS=YES # geen share/docs directories
168WITHOUT_SYSCONS=YES # geen syscon devices gecompileerd
169'
170
171CONF_BUILD="
172${CONF_COMMON}
173"
174
175CONF_INSTALL="
176${CONF_COMMON}
177WITHOUT_TOOLCHAIN=YES # geen freebsd toolchain
178"
179
180
181# Flash disks arrived, sandisk 1g seems to match the geometry of the (blanc) cards
182#FlashDevice sandisk 1g # nanobsd flashdevice entry
183#FlashDevice sandisk 512mb # nanobsd flashdevice entry
184#FlashDevice transcend 2g # nanobsd flashdevice entry
185# Calculated value of PEAK hardware 1GB CF card
186# C/H/S phys 1954/16/63, logical 977/32/63
187# Mediasize is calculated as C*H*S*512
188
189# Using logical values reported by ALIX board
190# values for PCEngines blanc 1 GB cards
191# C/H/S phys 1966/16/63, logical 983/32/63
192NANO_MEDIASIZE=`expr 1008451584 / 512`
193NANO_HEADS=32
194NANO_SECTS=63
195
196
197# Version tagging
198cust_version_tag() (
199 VERSION_FILE="${NANO_WORLDDIR}/tools/wl-release.txt"
200 (
201 echo "Generated by `id -un`@`hostname -f` at `date`"
202 echo ""
203 echo "=== CONFIG specifics ==="
204 svn info ${NANO_CONF_DIR}/../ || exit 0
205 svn diff ${NANO_CONF_DIR}/../ || exit 0
206 echo "=== BEGIN CONFIG specifics ==="
207 ) > $VERSION_FILE
208)
209
210# Takes a very long time (10+) minutes to generate this file on an ALIX board,
211# not practical for quick debugging and configuration.
212cust_openvpn_dhparam() (
213 DHFILE=${NANO_WORLDDIR}/etc/easy-rsa-keys/dh1024.pem
214 mkdir -p `dirname $DHFILE`
215 openssl dhparam -out $DHFILE 1024
216)
217
218
219
220# Assuming we are running a safe envirionment where snooping could occur during or after the build
221cust_set_root_password() (
222 if [ -n "${CFG_ROOT_PASSWORD}" ]; then
223 pprint 2 "Set root password using CFG_ROOT_PASSWORD variable"
224 chroot ${NANO_WORLDDIR} sh -c "echo '${CFG_ROOT_PASSWORD}' | pw usermod -h 0 -n root"
225 else
226 pprint 2 "Root password is <blank>, no password provided at variable CFG_ROOT_PASSWORD"
227 fi
228)
229
230
231
232# EXPERIMENTAL patch like envirionment
233# Using '*-nanobsd.patch' files to only specify the bare differences between the base/default file to
234# keep us as close as possible to the base OS
235# Patches are applied to the directory they live in
236#cust_apply_nanobsd_patches() (
237# for PATCHFILE in `find ${NANO_WORLDDIR} -regex '.*-nanobsd\.patch$'`; do
238# cd `dirname ${PATCHFILE}`
239# patch -t -N -p0 -i `basename ${PATCHFILE}`
240# #XX: What to with installed patch files? Delete them for the time beeing
241# rm -v ${PATCHFILE}
242#done
243
244
245
246#)
247
248
249
250# Customize ntpd
251cust_ntpd() (
252 chroot ${NANO_WORLDDIR} sh -c "ln -fs /usr/local/etc/ntp.drift /var/db/ntp.drift"
253)
254
255
256# Enable Serial TTYs
257cust_serial_ttys() (
258 chroot ${NANO_WORLDDIR} sed -i '' -e '/ttyv[0-9]/s/on /off/' -e '/ttyu0/s/off/on/' -e '/ttyu0/s/dialup/ansi/' /etc/ttys
259)
260
261# Customize sudoers files
262cust_sudo_rules() {
263 chroot ${NANO_WORLDDIR} find /usr/local/etc/sudoers.d/ -type f -exec chmod 0640 {} \+
264}
265
266
267
268# Install files from specific relative location
269cust_install_files () (
270 cd ${NANO_CONF_DIR}/../files
271 find . -print | grep -v -e /CVS -e .svn | cpio -dumpv ${NANO_WORLDDIR}
272)
273
274
275# Make tools available for root by default
276cust_root_bin_to_tools() {
277 ln -s /tools ${NANO_WORLDDIR}/root/bin
278}
279
280
281# Prune no needed directories of image
282cust_nano_prune () (
283 cd ${NANO_WORLDDIR}
284 for ENTRY in ${NANO_PRUNE}; do
285 rm -vfR ${ENTRY}
286 done
287)
288
289# We actually do need an seperate /tmp, so undo the symlinking done in
290# setup_nanobsd()
291late_cust_unset_common_var_and_tmp() (
292 cd ${NANO_WORLDDIR}
293 rm tmp
294 mkdir -m 1777 tmp
295)
296
297
298# Fill /cfg wmth custom files, based on 'create_i386_diskimage ( )'
299last_nano_fill_cfg () (
300 # Variables to be used
301 IMG=${NANO_DISKIMGDIR}/${NANO_IMGNAME}
302 MNT=${MAKEOBJDIRPREFIX}/_.mnt
303
304 # Mount '/cfg' slize in image
305 MD=`mdconfig -a -t vnode -f ${IMG}`
306 mount /dev/${MD}s3 ${MNT}
307
308 # Location of '/cfg' directory
309 cd ${NANO_CONF_DIR}/../cfg-files
310 find . -print | grep -v -e /CVS -e .svn | cpio -dumpv ${MNT}
311
312
313 # Leave in nice end state
314 umount ${MNT}
315 mdconfig -d -u ${MD}
316) > ${MAKEOBJDIRPREFIX}/_.fc 2>&1
317
318last_nano_disk_usage () (
319 # Variables to be used
320 IMG=${NANO_DISKIMGDIR}/${NANO_IMGNAME}
321 MNT=${MAKEOBJDIRPREFIX}/_.mnt
322
323 # Mount root slize
324 MD=`mdconfig -a -t vnode -f ${IMG}`
325 mount /dev/${MD}s1a ${MNT}
326
327 # Show disk usage (percent free) inc header
328 pprint 2 $(df -h | head -1)
329 pprint 2 "$(df -h | grep /dev/${MD})"
330
331 # Leave in nice end state
332 umount ${MNT}
333 mdconfig -d -u ${MD}
334)
335
336last_orders () (
337 last_nano_fill_cfg
338 last_nano_disk_usage
339)
340
341# Ugly hack to 'escaping' pprint from inside a customize_cmd to output
342# instead of a file
343exec 3>/dev/stdout
344# Progress Print
345# Print $2 at level $1
346pprint() {
347 if [ "$1" -le $PPLEVEL ]; then
348 printf "%.${1}s %s\n" "#####" "$2" 1>&3
349 fi
350}
351
352# Cust macro`s gestart in onderstaande volgorde
353# XXX: Determine size before installing all find of additions to see how much
354# base we are actually using ## du -h -d 0
355customize_cmd cust_pkgng
356customize_cmd cust_install_files
357customize_cmd cust_ntpd
358customize_cmd cust_serial_ttys
359customize_cmd cust_version_tag
360customize_cmd cust_root_bin_to_tools
361customize_cmd cust_allow_ssh_root
362customize_cmd cust_openvpn_dhparam
363customize_cmd cust_nano_prune
364customize_cmd cust_set_root_password
365customize_cmd cust_sudo_rules
366#customize_cmd cust_apply_nanobsd_patches
367late_customize_cmd late_cust_unset_common_var_and_tmp
368
369# Standard overwrite
370if [ -r "$NANO_CONF_DIR/nanobsd.local" ]; then
371 . $NANO_CONF_DIR/nanobsd.local
372fi
373
374# Extra config if existing is not suffient
375if [ -n "$EXTRA_NANOBSD_CONFIG" ]; then
376 for FILE in $EXTRA_NANOBSD_CONFIG; do
377 # File relative to config directory
378 if [ "`echo $FILE | cut -c1`" != "/" ]; then
379 FILE=$NANO_CONF_DIR/$FILE
380 fi
381 pprint 1 "Loading $FILE"
382 . $FILE || exit 1
383 done
384fi
Note: See TracBrowser for help on using the repository browser.