From 9d53bd00e9be53d6b893afd79111370ee0c053b0 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sun, 15 Jan 2017 15:00:48 +0100 Subject: [PATCH] rconfig: Add a script for setting up a HAMMER/UEFI system. --- share/examples/rconfig/hammer_uefi.sh | 215 ++++++++++++++++++++++++++++++++++ 1 file changed, 215 insertions(+) create mode 100644 share/examples/rconfig/hammer_uefi.sh diff --git a/share/examples/rconfig/hammer_uefi.sh b/share/examples/rconfig/hammer_uefi.sh new file mode 100644 index 0000000000..9e68ca6821 --- /dev/null +++ b/share/examples/rconfig/hammer_uefi.sh @@ -0,0 +1,215 @@ +#!/bin/csh +# +# This will format a new machine with a BOOT+HAMMER setup and install +# the live CD. You would boot the live CD, dhclient your network up, +# then run 'rconfig :hammer', assuming you have a rconfig server on the +# LAN. Alternately fetch the script from a known location and just run it. +# +# ad6s1a will be setup as a small UFS /boot. ad6s1d will be setup as +# HAMMER with all remaining disk space. Pseudo file-systems will be +# created for /var, /usr, etc (giving them separate inode spaces and +# backup domains). +# +# WARNING: HAMMER filesystems (and pseudo-filesystems) must be +# occassionally pruned and reblocked. 'man hammer' for more information. + +set disk = "ad6" + +# For safety this only runs on a CD- or PXE-booted machine +# +df / | egrep -q '^(.*cd|.+:)' +if ( $status > 0 ) then + echo "This program formats your disk and you didn't run it from" + echo "a CD or NFS boot!" + exit 1 +endif + +echo "This program formats disk ${disk}! Hit ^C now or its gone." +foreach i ( 10 9 8 7 6 5 4 3 2 1 ) + echo -n " $i" + sleep 1 +end +echo "" + +# Unmount any prior mounts on /mnt, reverse order to unwind +# sub-directory mounts. +# +foreach i ( `df | fgrep /mnt | awk '{ print $6; }' | tail -r` ) + echo "UMOUNT $i" + umount $i +end + +# Set our disk here +# +sleep 1 +set echo + +# Format and label the disk. +# +# 'a' small UFS boot +# 'd' HAMMER filesystem +# +# Use PFSs for backup domain separation +# +dd if=/dev/zero of=/dev/${disk} bs=32k count=16 +gpt destroy ${disk} +gpt create -f ${disk} +gpt add -i 0 -s 262144 -t efi ${disk} +gpt add -i 1 -t dragonfly ${disk} +newfs_msdos -F 32 -c 2 -L EFI -m 0xf8 ${disk}s0 +mount_msdos /dev/${disk}s0 /mnt +mkdir -p /mnt/EFI/BOOT +cp /boot/boot1.efi /mnt/EFI/BOOT/BOOTX64.EFI +umount /mnt +disklabel64 -r -w ${disk}s1 auto +disklabel64 -B ${disk}s1 +disklabel64 ${disk}s1 > /tmp/label + +cat >> /tmp/label << EOF + a: 1g 0 4.2BSD + b: 2g * swap + d: * * HAMMER +EOF +disklabel64 -R ${disk}s1 /tmp/label + +# Create file systems +newfs /dev/${disk}s1a +newfs_hammer -f -L ROOT /dev/${disk}s1d + +# Mount it +# +mount_hammer /dev/${disk}s1d /mnt +mkdir /mnt/boot +mount /dev/${disk}s1a /mnt/boot + +# Create PFS mount points for nullfs. +# +# Do the mounts manually so we can install the system, setup +# the fstab later on. +mkdir /mnt/pfs + +hammer pfs-master /mnt/pfs/usr +hammer pfs-master /mnt/pfs/usr.obj +hammer pfs-master /mnt/pfs/var +hammer pfs-master /mnt/pfs/var.crash +hammer pfs-master /mnt/pfs/var.tmp +hammer pfs-master /mnt/pfs/tmp +hammer pfs-master /mnt/pfs/home + +mkdir /mnt/usr +mkdir /mnt/var +mkdir /mnt/tmp +mkdir /mnt/home + +mount_null /mnt/pfs/usr /mnt/usr +mount_null /mnt/pfs/var /mnt/var +mount_null /mnt/pfs/tmp /mnt/tmp +mount_null /mnt/pfs/home /mnt/home + +mkdir /mnt/usr/obj +mkdir /mnt/var/tmp +mkdir /mnt/var/crash + +mount_null /mnt/pfs/var.tmp /mnt/var/tmp +mount_null /mnt/pfs/var.crash /mnt/var/crash +mount_null /mnt/pfs/usr.obj /mnt/usr/obj + +chmod 1777 /mnt/tmp +chmod 1777 /mnt/var/tmp + +# Install the system from the live CD +# +cpdup -o / /mnt +cpdup -o /boot /mnt/boot +cpdup -o /usr /mnt/usr +cpdup -o /var /mnt/var +cpdup -i0 /etc.hdd /mnt/etc + +chflags -R nohistory /mnt/tmp +chflags -R nohistory /mnt/var/tmp +chflags -R nohistory /mnt/var/crash +chflags -R nohistory /mnt/usr/obj + +# Create some directories to be used for NFS mounts later on. +# Edit as desired. +# +foreach i ( /proc /usr/doc /usr/src /repository /ftp /archive ) + if ( ! -d /mnt$i ) then + mkdir /mnt$i + endif +end + +cat > /mnt/etc/fstab << EOF +# Device Mountpoint FStype Options Dump Pass# +/dev/${disk}s1d / hammer rw 1 1 +/dev/${disk}s1a /boot ufs rw 1 1 +/dev/${disk}s1b none swap sw 0 0 +/pfs/usr /usr null rw 0 0 +/pfs/var /var null rw 0 0 +/pfs/tmp /tmp null rw 0 0 +/pfs/home /home null rw 0 0 +/pfs/var.tmp /var/tmp null rw 0 0 +/pfs/usr.obj /usr/obj null rw 0 0 +/pfs/var.crash /var/crash null rw 0 0 +proc /proc procfs rw 0 0 +EOF + +# Because root is not on the boot partition we have to tell the loader +# to tell the kernel where root is. +# +cat > /mnt/boot/loader.conf << EOF +vfs.root.mountfrom="hammer:${disk}s1d" +EOF + +# Setup interface, configuration, sshd +# +set ifc = `route -n get default | fgrep interface | awk '{ print $2; }'` +set ip = `ifconfig $ifc | fgrep inet | fgrep -v inet6 | awk '{ print $2; }'` +set lip = `echo $ip | awk -F . '{ print $4; }'` + +echo -n "ifconfig_$ifc=" >> /mnt/etc/rc.conf +echo '"DHCP"' >> /mnt/etc/rc.conf +cat >> /mnt/etc/rc.conf << EOF +sshd_enable="YES" +dntpd_enable="YES" +hostname="test$lip.MYDOMAIN.XXX" +dumpdev="/dev/${disk}s1b" +EOF + +# Misc sysctls +# +cat >> /mnt/etc/sysctl.conf << EOF +#net.inet.ip.portrange.first=4000 +EOF + +# Allow sshd root logins via dsa key only +# +fgrep 'PermitRootLogin without-password' /mnt/etc/ssh/sshd_config >& /dev/null +if ( $?status ) then + echo "PermitRootLogin without-password" >> /mnt/etc/ssh/sshd_config +endif + +# additional loader.conf stuff +#cat >> /mnt/boot/loader.conf << EOF +#if_nfe_load="YES" +#EOF + +# Get sshd working - auto install my key so I can login. +# +#mkdir -p /mnt/root/.ssh +#cat > /mnt/root/.ssh/authorized_keys << EOF +#ssh-dss ... +#EOF + +if ( ! -f /mnt/etc/ssh/ssh_host_dsa_key ) then + cd /mnt/etc/ssh + ssh-keygen -t dsa -f ssh_host_dsa_key -N "" +endif + +# Misc cleanups +# +rm -R /mnt/README* /mnt/autorun* /mnt/index.html /mnt/dflybsd.ico +rm /mnt/boot.catalog + +# take CD out and reboot +# -- 2.11.4.GIT