summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdinstall/scripts/auto
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2011-02-22 13:56:59 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2011-02-22 13:56:59 +0000
commit1465b80841493b0f463d4fa47545ec6e39514bd0 (patch)
treeee1cc8e5cc001e9d413aec5d1e15fb708a8a4ed6 /usr.sbin/bsdinstall/scripts/auto
parente09c45fb877e3e7513aa012eb25f0651c818cb10 (diff)
downloadFreeBSD-src-1465b80841493b0f463d4fa47545ec6e39514bd0.zip
FreeBSD-src-1465b80841493b0f463d4fa47545ec6e39514bd0.tar.gz
Add support for optional distributions, installation of the ports tree and
src. Fitting all of this on a single CD along with a full system requires changing the default compression algorithm from gzip to xz.
Diffstat (limited to 'usr.sbin/bsdinstall/scripts/auto')
-rwxr-xr-xusr.sbin/bsdinstall/scripts/auto21
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.sbin/bsdinstall/scripts/auto b/usr.sbin/bsdinstall/scripts/auto
index 5fc8f0e..7234ad8 100755
--- a/usr.sbin/bsdinstall/scripts/auto
+++ b/usr.sbin/bsdinstall/scripts/auto
@@ -50,6 +50,27 @@ bsdinstall keymap
trap error SIGINT # Catch cntrl-C here
bsdinstall hostname || error
+LIB32=""
+[ `uname -p` = amd64 -o `uname -p` = powerpc64 ] && \
+ LIB32="lib32 \"32-bit compatibility\" on"
+
+DISTMENU="doc \"Additional documentation\" on \
+ games \"Games (fortune, etc.)\" on \
+ $LIB32 \
+ ports \"Ports tree\" on \
+ src \"System source code\" off"
+
+exec 3>&1
+EXTRA_DISTS=$(echo $DISTMENU | xargs dialog --backtitle "FreeBSD Installer" \
+ --title "Distribution Select" --nocancel --separate-output \
+ --checklist "Choose optional system components to install:" \
+ 0 0 0 \
+2>&1 1>&3)
+DISTRIBUTIONS="base.txz kernel.txz"
+for dist in $EXTRA_DISTS; do
+ export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
+done
+
FETCH_DISTRIBUTIONS=""
for dist in $DISTRIBUTIONS; do
if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
OpenPOWER on IntegriCloud