xref: /freebsd/usr.sbin/bsdinstall/scripts/script (revision c0e249d32c780ee8240fe8b3b8144078a8eec41f)
12ffbec18SNathan Whitehorn#!/bin/sh
22ffbec18SNathan Whitehorn#-
32ffbec18SNathan Whitehorn# Copyright (c) 2013 Nathan Whitehorn
4e5a24129SDevin Teske# Copyright (c) 2013-2015 Devin Teske
52ffbec18SNathan Whitehorn# All rights reserved.
62ffbec18SNathan Whitehorn#
72ffbec18SNathan Whitehorn# Redistribution and use in source and binary forms, with or without
82ffbec18SNathan Whitehorn# modification, are permitted provided that the following conditions
92ffbec18SNathan Whitehorn# are met:
102ffbec18SNathan Whitehorn# 1. Redistributions of source code must retain the above copyright
112ffbec18SNathan Whitehorn#    notice, this list of conditions and the following disclaimer.
122ffbec18SNathan Whitehorn# 2. Redistributions in binary form must reproduce the above copyright
132ffbec18SNathan Whitehorn#    notice, this list of conditions and the following disclaimer in the
142ffbec18SNathan Whitehorn#    documentation and/or other materials provided with the distribution.
152ffbec18SNathan Whitehorn#
162ffbec18SNathan Whitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
172ffbec18SNathan Whitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
182ffbec18SNathan Whitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
192ffbec18SNathan Whitehorn# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
202ffbec18SNathan Whitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
212ffbec18SNathan Whitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
222ffbec18SNathan Whitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
232ffbec18SNathan Whitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
242ffbec18SNathan Whitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
252ffbec18SNathan Whitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
262ffbec18SNathan Whitehorn# SUCH DAMAGE.
272ffbec18SNathan Whitehorn#
28bc4a673fSDevin Teske#
29bc4a673fSDevin Teske############################################################ INCLUDES
30bc4a673fSDevin Teske
31bc4a673fSDevin TeskeBSDCFG_SHARE="/usr/share/bsdconfig"
32bc4a673fSDevin Teske. $BSDCFG_SHARE/common.subr || exit 1
33bc4a673fSDevin Teskef_dprintf "%s: loading includes..." "$0"
34bc4a673fSDevin Teskef_include $BSDCFG_SHARE/dialog.subr
35bc4a673fSDevin Teskef_include $BSDCFG_SHARE/variable.subr
36bc4a673fSDevin Teske
37bc4a673fSDevin Teske############################################################ CONFIGURATION
382ffbec18SNathan Whitehorn
392ffbec18SNathan Whitehorn# VARIABLES:
402ffbec18SNathan Whitehorn# PARTITIONS
412ffbec18SNathan Whitehorn# DISTRIBUTIONS
422ffbec18SNathan Whitehorn# BSDINSTALL_DISTDIR
432ffbec18SNathan Whitehorn
442f34d6c3SRoger Pau Monné#
452f34d6c3SRoger Pau Monné# Default name of the ZFS boot-pool
462f34d6c3SRoger Pau Monné#
472f34d6c3SRoger Pau Monné: ${ZFSBOOT_POOL_NAME:=zroot}
482f34d6c3SRoger Pau Monné
49bc4a673fSDevin Teske############################################################ GLOBALS
50bc4a673fSDevin Teske
51a107ddbbSRebecca Cran: ${TMPDIR:="/tmp"}
52a107ddbbSRebecca Cran
53bc4a673fSDevin Teske#
54bc4a673fSDevin Teske# Strings that should be moved to an i18n file and loaded with f_include_lang()
55bc4a673fSDevin Teske#
56bc4a673fSDevin Teskemsg_installation_error="Installation Error!"
57bc4a673fSDevin Teske
58bc4a673fSDevin Teske############################################################ FUNCTIONS
59bc4a673fSDevin Teske
60bc4a673fSDevin Teskeerror()
61bc4a673fSDevin Teske{
62bc4a673fSDevin Teske	local file
63bc4a673fSDevin Teske	f_getvar "$VAR_DEBUG_FILE#+" file
64bc4a673fSDevin Teske	if [ "$file" ]; then
65bc4a673fSDevin Teske		f_dialog_title "$msg_installation_error"
66bc4a673fSDevin Teske		f_dialog_textbox "$file"
67bc4a673fSDevin Teske		# No need to restore title, pining for the fjords
68bc4a673fSDevin Teske	fi
69bc4a673fSDevin Teske
702f34d6c3SRoger Pau Monné	[ -f "$PATH_FSTAB" ] || exit
712f34d6c3SRoger Pau Monné	if [ "$ZFSBOOT_DISKS" ]; then
722f34d6c3SRoger Pau Monné		zpool export $ZFSBOOT_POOL_NAME
732f34d6c3SRoger Pau Monné	else
742f34d6c3SRoger Pau Monné		bsdinstall umount
752f34d6c3SRoger Pau Monné	fi
762f34d6c3SRoger Pau Monné
772ffbec18SNathan Whitehorn	exit 1
782ffbec18SNathan Whitehorn}
792ffbec18SNathan Whitehorn
80bc4a673fSDevin Teske############################################################ MAIN
81bc4a673fSDevin Teske
822ffbec18SNathan Whitehornset -e
832ffbec18SNathan Whitehorntrap error EXIT
842ffbec18SNathan Whitehorn
852ffbec18SNathan WhitehornSCRIPT="$1"
862ffbec18SNathan Whitehornshift
872ffbec18SNathan Whitehorn
884c5d7fabSDevin Teskef_dprintf "Began Installation at %s" "$( date )"
892ffbec18SNathan Whitehornrm -rf $BSDINSTALL_TMPETC
902ffbec18SNathan Whitehornmkdir $BSDINSTALL_TMPETC
912ffbec18SNathan Whitehorn
92a107ddbbSRebecca Cransplit -a 2 -p '^#!.*' "$SCRIPT" $TMPDIR/bsdinstall-installscript-
932ffbec18SNathan Whitehorn
94a107ddbbSRebecca Cran. $TMPDIR/bsdinstall-installscript-aa
952ffbec18SNathan Whitehorn: ${DISTRIBUTIONS="kernel.txz base.txz"}; export DISTRIBUTIONS
962ffbec18SNathan Whitehornexport BSDINSTALL_DISTDIR
972ffbec18SNathan Whitehorn
98bc4a673fSDevin Teske# Re-initialize a new log if preamble changed BSDINSTALL_LOG
99bc4a673fSDevin Teskeif [ "$BSDINSTALL_LOG" != "${debugFile#+}" ]; then
100bc4a673fSDevin Teske	export debugFile="$BSDINSTALL_LOG"
101bc4a673fSDevin Teske	f_quietly f_debug_init
102bc4a673fSDevin Teske	# NB: Being scripted, let debug go to terminal for invalid debugFile
1035104dfbeSNavdeep Parhar	f_dprintf "Began Installation at %s" "$( date )"
104bc4a673fSDevin Teskefi
105bc4a673fSDevin Teske
1062ffbec18SNathan Whitehorn# Make partitions
1072ffbec18SNathan Whitehornrm -f $PATH_FSTAB
1082ffbec18SNathan Whitehorntouch $PATH_FSTAB
109c7684efdSDevin Teskeif [ "$ZFSBOOT_DISKS" ]; then
110c7684efdSDevin Teske	bsdinstall zfsboot
111c7684efdSDevin Teskeelse
1122ffbec18SNathan Whitehorn	bsdinstall scriptedpart "$PARTITIONS"
1132f34d6c3SRoger Pau Monnéfi
11434766aa8SNathan Whitehornbsdinstall mount
1152ffbec18SNathan Whitehorn
11640923b0cSNathan Whitehorn# Fetch missing distribution files, if any
117*c0e249d3SLars Kellogg-Stedmanexec 5>&1
118*c0e249d3SLars Kellogg-Stedmanexport BSDINSTALL_DISTDIR=$(`dirname $0`/fetchmissingdists 2>&1 1>&5)
11940923b0cSNathan WhitehornFETCH_RESULT=$?
120*c0e249d3SLars Kellogg-Stedmanexec 5>&-
121*c0e249d3SLars Kellogg-Stedman
122*c0e249d3SLars Kellogg-Stedman[ $FETCH_RESULT -ne 0 ] && error "Could not fetch remote distributions"
12340923b0cSNathan Whitehorn
1242ffbec18SNathan Whitehorn# Unpack distributions
1252ffbec18SNathan Whitehornbsdinstall checksum
126c2f16c59SNathan Whitehornif [ -t 0 ]; then
127c2f16c59SNathan Whitehorn	# If install is a tty, use distextract as normal
128c2f16c59SNathan Whitehorn	bsdinstall distextract
129c2f16c59SNathan Whitehornelse
130c2f16c59SNathan Whitehorn	# Otherwise, we need to use tar (see https://reviews.freebsd.org/D10736)
131d7640440SRoger Pau Monné	for set in $DISTRIBUTIONS; do
132d7640440SRoger Pau Monné		f_dprintf "Extracting $BSDINSTALL_DISTDIR/$set"
133c2f16c59SNathan Whitehorn		# XXX: The below fails if any mountpoints are FAT, due to
134c2f16c59SNathan Whitehorn		# inability to set ctime/mtime on the root of FAT partitions,
135c2f16c59SNathan Whitehorn		# which is needed to support e.g. EFI system partitions. tar has
136c2f16c59SNathan Whitehorn		# no option to ignore this (distextract ignores them internally
137c2f16c59SNathan Whitehorn		# through a hack), and returns 1 on any warning or error,
138c2f16c59SNathan Whitehorn		# effectively turning all warnings into fatal errors.
139c2f16c59SNathan Whitehorn		#
140c2f16c59SNathan Whitehorn		# Work around this in an extremely lame way for the specific
141c2f16c59SNathan Whitehorn		# case of EFI system partitions only. This *ONLY WORKS* if
142c2f16c59SNathan Whitehorn		# /boot/efi is empty and does not handle analagous problems on
143c2f16c59SNathan Whitehorn		# other systems (ARM, PPC64).
144c2f16c59SNathan Whitehorn		tar -xf "$BSDINSTALL_DISTDIR/$set" -C $BSDINSTALL_CHROOT --exclude boot/efi
145c2f16c59SNathan Whitehorn		mkdir -p $BSDINSTALL_CHROOT/boot/efi
146d7640440SRoger Pau Monné	done
147c2f16c59SNathan Whitehornfi
1482ffbec18SNathan Whitehorn
1498befcf7bSNathan Whitehorn# Configure bootloader if needed
1508befcf7bSNathan Whitehornbsdinstall bootconfig
1518befcf7bSNathan Whitehorn
1522ffbec18SNathan Whitehorn# Finalize install
1532ffbec18SNathan Whitehornbsdinstall config
1542ffbec18SNathan Whitehorn
1554bdf7393SNathan Whitehorn# Make sure networking is functional, if we can arrange that
1564bdf7393SNathan Whitehornif [ ! -f $BSDINSTALL_CHROOT/etc/resolv.conf -a -f /etc/resolv.conf ]; then
1574bdf7393SNathan Whitehorn	cp /etc/resolv.conf $BSDINSTALL_CHROOT/etc/resolv.conf
1584bdf7393SNathan Whitehornfi
1594bdf7393SNathan Whitehorn
1602ffbec18SNathan Whitehorn# Run post-install script
161a107ddbbSRebecca Cranif [ -f $TMPDIR/bsdinstall-installscript-ab ]; then
162a107ddbbSRebecca Cran	cp $TMPDIR/bsdinstall-installscript-ab $BSDINSTALL_CHROOT/tmp/installscript
1632ffbec18SNathan Whitehorn	chmod a+x $BSDINSTALL_CHROOT/tmp/installscript
1642ffbec18SNathan Whitehorn	chroot $BSDINSTALL_CHROOT /tmp/installscript $@ 2>&1
1652ffbec18SNathan Whitehorn	rm $BSDINSTALL_CHROOT/tmp/installscript
1662ffbec18SNathan Whitehornfi
1672ffbec18SNathan Whitehorn
168dfc23ba5SDag-Erling Smørgravbsdinstall entropy
169450b4ac2SCorvin Köhnebsdinstall umount
1702f34d6c3SRoger Pau Monnéif [ "$ZFSBOOT_DISKS" ]; then
1712f34d6c3SRoger Pau Monné	zpool export $ZFSBOOT_POOL_NAME
1722f34d6c3SRoger Pau Monnéfi
1732ffbec18SNathan Whitehorn
174bc4a673fSDevin Teskef_dprintf "Installation Completed at %s" "$( date )"
1752ffbec18SNathan Whitehorn
17696eeaba5SDevin Tesketrap - EXIT
17796eeaba5SDevin Teskeexit $SUCCESS
178bc4a673fSDevin Teske
179bc4a673fSDevin Teske################################################################################
180bc4a673fSDevin Teske# END
181bc4a673fSDevin Teske################################################################################
182