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 91*731704f5SMichael Gmelinrm -f $TMPDIR/bsdinstall-installscript-setup 922ffbec18SNathan Whitehorn 93*731704f5SMichael Gmelin# split script into preamble and setup script at first shebang 94*731704f5SMichael Gmelinawk 'BEGIN {pathb=ARGV[2]; ARGV[2]=""} /^#!/{b=1} { 95*731704f5SMichael Gmelin if (b) print >pathb; else print}' \ 96*731704f5SMichael Gmelin "$SCRIPT" $TMPDIR/bsdinstall-installscript-setup \ 97*731704f5SMichael Gmelin >$TMPDIR/bsdinstall-installscript-preamble 982ffbec18SNathan Whitehorn 99*731704f5SMichael Gmelin. $TMPDIR/bsdinstall-installscript-preamble 1002ffbec18SNathan Whitehorn: ${DISTRIBUTIONS="kernel.txz base.txz"}; export DISTRIBUTIONS 1012ffbec18SNathan Whitehornexport BSDINSTALL_DISTDIR 1022ffbec18SNathan Whitehorn 103bc4a673fSDevin Teske# Re-initialize a new log if preamble changed BSDINSTALL_LOG 104bc4a673fSDevin Teskeif [ "$BSDINSTALL_LOG" != "${debugFile#+}" ]; then 105bc4a673fSDevin Teske export debugFile="$BSDINSTALL_LOG" 106bc4a673fSDevin Teske f_quietly f_debug_init 107bc4a673fSDevin Teske # NB: Being scripted, let debug go to terminal for invalid debugFile 1085104dfbeSNavdeep Parhar f_dprintf "Began Installation at %s" "$( date )" 109bc4a673fSDevin Teskefi 110bc4a673fSDevin Teske 1112ffbec18SNathan Whitehorn# Make partitions 1122ffbec18SNathan Whitehornrm -f $PATH_FSTAB 1132ffbec18SNathan Whitehorntouch $PATH_FSTAB 114c7684efdSDevin Teskeif [ "$ZFSBOOT_DISKS" ]; then 115c7684efdSDevin Teske bsdinstall zfsboot 116c7684efdSDevin Teskeelse 1172ffbec18SNathan Whitehorn bsdinstall scriptedpart "$PARTITIONS" 1182f34d6c3SRoger Pau Monnéfi 11934766aa8SNathan Whitehornbsdinstall mount 1202ffbec18SNathan Whitehorn 12140923b0cSNathan Whitehorn# Fetch missing distribution files, if any 122c0e249d3SLars Kellogg-Stedmanexec 5>&1 123c0e249d3SLars Kellogg-Stedmanexport BSDINSTALL_DISTDIR=$(`dirname $0`/fetchmissingdists 2>&1 1>&5) 12440923b0cSNathan WhitehornFETCH_RESULT=$? 125c0e249d3SLars Kellogg-Stedmanexec 5>&- 126c0e249d3SLars Kellogg-Stedman 127c0e249d3SLars Kellogg-Stedman[ $FETCH_RESULT -ne 0 ] && error "Could not fetch remote distributions" 12840923b0cSNathan Whitehorn 1292ffbec18SNathan Whitehorn# Unpack distributions 1302ffbec18SNathan Whitehornbsdinstall checksum 131c2f16c59SNathan Whitehornif [ -t 0 ]; then 132c2f16c59SNathan Whitehorn # If install is a tty, use distextract as normal 133c2f16c59SNathan Whitehorn bsdinstall distextract 134c2f16c59SNathan Whitehornelse 135c2f16c59SNathan Whitehorn # Otherwise, we need to use tar (see https://reviews.freebsd.org/D10736) 136d7640440SRoger Pau Monné for set in $DISTRIBUTIONS; do 137d7640440SRoger Pau Monné f_dprintf "Extracting $BSDINSTALL_DISTDIR/$set" 138c2f16c59SNathan Whitehorn # XXX: The below fails if any mountpoints are FAT, due to 139c2f16c59SNathan Whitehorn # inability to set ctime/mtime on the root of FAT partitions, 140c2f16c59SNathan Whitehorn # which is needed to support e.g. EFI system partitions. tar has 141c2f16c59SNathan Whitehorn # no option to ignore this (distextract ignores them internally 142c2f16c59SNathan Whitehorn # through a hack), and returns 1 on any warning or error, 143c2f16c59SNathan Whitehorn # effectively turning all warnings into fatal errors. 144c2f16c59SNathan Whitehorn # 145c2f16c59SNathan Whitehorn # Work around this in an extremely lame way for the specific 146c2f16c59SNathan Whitehorn # case of EFI system partitions only. This *ONLY WORKS* if 147c2f16c59SNathan Whitehorn # /boot/efi is empty and does not handle analagous problems on 148c2f16c59SNathan Whitehorn # other systems (ARM, PPC64). 149c2f16c59SNathan Whitehorn tar -xf "$BSDINSTALL_DISTDIR/$set" -C $BSDINSTALL_CHROOT --exclude boot/efi 150c2f16c59SNathan Whitehorn mkdir -p $BSDINSTALL_CHROOT/boot/efi 151d7640440SRoger Pau Monné done 152c2f16c59SNathan Whitehornfi 1532ffbec18SNathan Whitehorn 1548befcf7bSNathan Whitehorn# Configure bootloader if needed 1558befcf7bSNathan Whitehornbsdinstall bootconfig 1568befcf7bSNathan Whitehorn 1572ffbec18SNathan Whitehorn# Finalize install 1582ffbec18SNathan Whitehornbsdinstall config 1592ffbec18SNathan Whitehorn 1604bdf7393SNathan Whitehorn# Make sure networking is functional, if we can arrange that 1614bdf7393SNathan Whitehornif [ ! -f $BSDINSTALL_CHROOT/etc/resolv.conf -a -f /etc/resolv.conf ]; then 1624bdf7393SNathan Whitehorn cp /etc/resolv.conf $BSDINSTALL_CHROOT/etc/resolv.conf 1634bdf7393SNathan Whitehornfi 1644bdf7393SNathan Whitehorn 1652ffbec18SNathan Whitehorn# Run post-install script 166*731704f5SMichael Gmelinif [ -f $TMPDIR/bsdinstall-installscript-setup ]; then 167*731704f5SMichael Gmelin cp $TMPDIR/bsdinstall-installscript-setup \ 168*731704f5SMichael Gmelin $BSDINSTALL_CHROOT/tmp/installscript 1692ffbec18SNathan Whitehorn chmod a+x $BSDINSTALL_CHROOT/tmp/installscript 1702ffbec18SNathan Whitehorn chroot $BSDINSTALL_CHROOT /tmp/installscript $@ 2>&1 1712ffbec18SNathan Whitehorn rm $BSDINSTALL_CHROOT/tmp/installscript 1722ffbec18SNathan Whitehornfi 1732ffbec18SNathan Whitehorn 174dfc23ba5SDag-Erling Smørgravbsdinstall entropy 175450b4ac2SCorvin Köhnebsdinstall umount 1762f34d6c3SRoger Pau Monnéif [ "$ZFSBOOT_DISKS" ]; then 1772f34d6c3SRoger Pau Monné zpool export $ZFSBOOT_POOL_NAME 1782f34d6c3SRoger Pau Monnéfi 1792ffbec18SNathan Whitehorn 180bc4a673fSDevin Teskef_dprintf "Installation Completed at %s" "$( date )" 1812ffbec18SNathan Whitehorn 18296eeaba5SDevin Tesketrap - EXIT 18396eeaba5SDevin Teskeexit $SUCCESS 184bc4a673fSDevin Teske 185bc4a673fSDevin Teske################################################################################ 186bc4a673fSDevin Teske# END 187bc4a673fSDevin Teske################################################################################ 188