2020-12-08 12:14:43 -05:00
|
|
|
#! /bin/bash
|
2020-12-08 12:26:37 -05:00
|
|
|
#
|
|
|
|
# Copyright 2020, Stormux, <storm_dragon@linux-a11y.org>
|
|
|
|
#
|
|
|
|
# This is free software; you can redistribute it and/or modify it under the
|
|
|
|
# terms of the GNU General Public License as published by the Free
|
|
|
|
# Software Foundation; either version 3, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This software is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this package; see the file COPYING. If not, write to the Free
|
|
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
# 02110-1301, USA.
|
|
|
|
#
|
2020-12-08 12:14:43 -05:00
|
|
|
|
2020-12-09 10:39:57 -05:00
|
|
|
# keep track of mounted status for exit function
|
|
|
|
mounted=1
|
|
|
|
|
2020-12-08 12:14:43 -05:00
|
|
|
set -e # Don't want to destroy stuff if this goes majorly wrong.
|
2020-12-09 10:39:57 -05:00
|
|
|
trap cleanup EXIT # make sure the script cleans up after itself before closing.
|
|
|
|
|
2020-12-08 21:58:13 -05:00
|
|
|
|
2020-12-09 10:39:57 -05:00
|
|
|
cleanup() {
|
|
|
|
if [[ $mounted -eq 0 ]]; then
|
|
|
|
umount -R /mnt
|
2020-12-09 19:40:39 -05:00
|
|
|
partx -d "${loopdev}"
|
|
|
|
losetup --detach "${loopdev}"
|
2020-12-09 10:39:57 -05:00
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
}
|
2020-12-08 21:58:13 -05:00
|
|
|
|
|
|
|
help() {
|
|
|
|
echo -e "Usage:\n"
|
2020-12-09 08:24:34 -05:00
|
|
|
echo "With no arguments, build with default parameters."
|
2020-12-08 21:58:13 -05:00
|
|
|
for i in "${!command[@]}" ; do
|
2020-12-12 14:56:20 -05:00
|
|
|
echo "-${i/:/ <parameter>}: ${command[${i}]}"
|
2020-12-08 21:58:13 -05:00
|
|
|
done | sort
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Array of command line arguments
|
|
|
|
declare -A command=(
|
|
|
|
[h]="This help screen."
|
2020-12-12 14:56:20 -05:00
|
|
|
[l:]="Language default is en_US."
|
|
|
|
[n:]="Image name, default is stormux-pi<3|4>-<yyyy-mm-dd>.img"
|
|
|
|
[s:]="image size in GB, default is 4."
|
|
|
|
[v:]="Version of the Raspberry Pi for which you are building. (3|4 default)"
|
2020-12-08 21:58:13 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# Convert the keys of the associative array to a format usable by getopts
|
|
|
|
args="${!command[*]}"
|
|
|
|
args="${args//[[:space:]]/}"
|
|
|
|
while getopts "${args}" i ; do
|
|
|
|
case "$i" in
|
2020-12-12 14:56:20 -05:00
|
|
|
h) help;;
|
|
|
|
l)
|
|
|
|
imageLanguage="${OPTARG}.UTF-8"
|
|
|
|
;;
|
2020-12-08 21:58:13 -05:00
|
|
|
n)
|
2020-12-12 14:56:20 -05:00
|
|
|
imageName="${OPTARG}"
|
2020-12-08 21:58:13 -05:00
|
|
|
;;
|
|
|
|
s)
|
2020-12-12 14:56:20 -05:00
|
|
|
if [[ "${OPTARG}" =~ ^[[:digit:]]+$ ]]; then
|
|
|
|
imageSize="${OPTARG}G"
|
2020-12-08 21:58:13 -05:00
|
|
|
else
|
|
|
|
echo "Image size must be numeric."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
v)
|
2020-12-12 14:56:20 -05:00
|
|
|
if [[ "${OPTARG}" =~ ^[34]$ ]]; then
|
|
|
|
imageVersion="${OPTARG}"
|
2020-12-08 21:58:13 -05:00
|
|
|
else
|
|
|
|
echo "Image version must be 3 for the Raspberry Pi 3, or 4 for the Raspberry Pi 4 (default)."
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-12-12 14:56:20 -05:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
exit 1
|
2020-12-08 21:58:13 -05:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# make sure variables are set, or use defaults.
|
|
|
|
export imageVersion="${imageVersion:-4}"
|
|
|
|
export imageSize="${imageSize:-4G}"
|
|
|
|
export imageName="${imageName:-stormux-pi${imageVersion}-$(date '+%Y-%m-%d').img}"
|
2020-12-12 14:56:20 -05:00
|
|
|
export imageLanguage="${imageLanguage:-en_US.UTF-8}"
|
2020-12-08 21:58:13 -05:00
|
|
|
|
|
|
|
# Make sure the image file doesn't exist.
|
|
|
|
if [[ -e "$imageName" ]]; then
|
|
|
|
echo "${imageName} exists, please remove or move it for this script to continue."
|
|
|
|
exit 1
|
2020-12-08 12:14:43 -05:00
|
|
|
fi
|
2020-12-08 21:58:13 -05:00
|
|
|
|
|
|
|
# Make sure this script is ran as root.
|
2020-12-08 12:14:43 -05:00
|
|
|
if [ "$(whoami)" != "root" ] ; then
|
2020-12-08 21:58:13 -05:00
|
|
|
echo "Error: This script must be run as root."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# make sure the needed tools are installed
|
|
|
|
if [[ "$(uname -m)" == "x86_64" ]]; then
|
|
|
|
if ! pacman -Q qemu-user-static &> /dev/null ; then
|
2020-12-27 11:02:23 -05:00
|
|
|
echo "Please install qemu-user-static before continuing."
|
2020-12-08 21:58:13 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2020-12-08 12:14:43 -05:00
|
|
|
fi
|
2021-03-09 20:01:20 -05:00
|
|
|
for i in dosfstools parted wget ; do
|
2020-12-08 21:58:13 -05:00
|
|
|
if ! pacman -Q $i &> /dev/null ; then
|
|
|
|
echo "Please install $i before continuing."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2020-12-09 08:24:34 -05:00
|
|
|
# Url for the image to be downloaded.
|
2020-12-12 14:56:20 -05:00
|
|
|
#url[3]="http://os.archlinuxarm.org/os/ArchLinuxARM-rpi-aarch64-latest.tar.gz"
|
|
|
|
url[3]="http://os.archlinuxarm.org/os/ArchLinuxARM-rpi-2-latest.tar.gz"
|
2020-12-11 19:59:57 -05:00
|
|
|
#url[4]="http://os.archlinuxarm.org/os/ArchLinuxARM-rpi-aarch64-latest.tar.gz"
|
|
|
|
url[4]="http://os.archlinuxarm.org/os/ArchLinuxARM-rpi-4-latest.tar.gz"
|
2020-12-09 08:24:34 -05:00
|
|
|
|
2020-12-24 13:15:37 -05:00
|
|
|
fallocate -l "$imageSize" "$imageName"
|
2020-12-08 21:58:13 -05:00
|
|
|
loopdev="$(losetup --find --show "${imageName}")"
|
2020-12-09 19:40:39 -05:00
|
|
|
parted --script "${loopdev}" mklabel msdos mkpart primary fat32 0% 100M mkpart primary ext4 100M 100%
|
|
|
|
mkfs.vfat -F32 "${loopdev}p1"
|
|
|
|
mkfs.ext4 -F "${loopdev}p2"
|
|
|
|
mount "${loopdev}p2" /mnt
|
2020-12-08 12:14:43 -05:00
|
|
|
mkdir /mnt/boot
|
2020-12-09 19:40:39 -05:00
|
|
|
mount "${loopdev}p1" /mnt/boot
|
2020-12-09 10:39:57 -05:00
|
|
|
# Things are mounted now, so set mounted to 0 (bash true)
|
|
|
|
mounted=0
|
2020-12-09 08:24:34 -05:00
|
|
|
wget "${url[$imageVersion]}" -O- | bsdtar -xpf - -C /mnt
|
2020-12-09 08:53:05 -05:00
|
|
|
arch-chroot /mnt << EOF
|
2020-12-08 21:58:13 -05:00
|
|
|
# set up pacman
|
2020-12-08 12:14:43 -05:00
|
|
|
pacman-key --init
|
|
|
|
pacman-key --populate archlinuxarm
|
2021-10-18 14:03:30 -04:00
|
|
|
pacman -Syyu --needed --noconfirm alsa-utils base base-devel bash-completion bluez bluez-utils cronie espeak-ng git magic-wormhole man man-pages rhvoice-voice-bdl sox w3m wget xdg-user-dirs
|
2020-12-12 14:56:20 -05:00
|
|
|
# set the language
|
|
|
|
sed -i "s/#$imageLanguage/$imageLanguage/" /etc/locale.gen
|
|
|
|
echo "LANG=$imageLanguage" > /etc/locale.conf
|
|
|
|
locale-gen
|
2020-12-08 21:58:13 -05:00
|
|
|
# Set the distribution name.
|
|
|
|
echo 'Stormux \r (\l)' > /etc/issue
|
|
|
|
echo >> /etc/issue
|
|
|
|
# Change the alarm user to be stormux
|
|
|
|
usermod -a -g users -G wheel,audio,video -m -d /home/stormux -l stormux alarm
|
2020-12-09 15:34:03 -05:00
|
|
|
# Grant sudo privileges to the stormux user for package installation.
|
|
|
|
echo 'stormux ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers.d/wheel
|
2020-12-12 14:56:20 -05:00
|
|
|
# Set the password for the root user
|
|
|
|
echo -e "root\nroot" | passwd "root"
|
2020-12-09 15:34:03 -05:00
|
|
|
# Set the password for the stormux user
|
|
|
|
echo -e "stormux\nstormux" | passwd "stormux"
|
2020-12-08 21:58:13 -05:00
|
|
|
# Change to the stormux user and install some packages
|
2021-10-06 23:04:00 -04:00
|
|
|
sudo -iu stormux
|
|
|
|
# Create desktop, downloads, music, and other directories.
|
|
|
|
xdg-user-dirs-update
|
|
|
|
# Install the yay package manager
|
2020-12-08 21:58:13 -05:00
|
|
|
git clone https://aur.archlinux.org/yay.git
|
|
|
|
cd yay
|
2020-12-11 19:59:57 -05:00
|
|
|
makepkg -si --noconfirm
|
2020-12-08 21:58:13 -05:00
|
|
|
cd ~
|
|
|
|
rm -rf yay
|
2021-10-06 13:23:37 -04:00
|
|
|
yay -S --noconfirm fenrir-git growpartfs
|
2020-12-08 21:58:13 -05:00
|
|
|
exit
|
2020-12-09 08:24:34 -05:00
|
|
|
# Configure sudo for group wheel, remove nopasswd for the stormux user
|
|
|
|
sed '/stormux/d' /etc/sudoers.d/wheel
|
|
|
|
sed 's/^# %wheel ALL=(ALL) ALL$/%wheel ALL=(ALL) ALL/' /etc/sudoers.d/wheel
|
2020-12-09 15:17:51 -05:00
|
|
|
# Set the hostname
|
|
|
|
echo stormux > /etc/hostname
|
2020-12-09 08:24:34 -05:00
|
|
|
# Enable services
|
|
|
|
systemctl enable cronie.service fenrirscreenreader.service
|
2020-12-09 08:53:05 -05:00
|
|
|
# Update fstab for Raspberry Pi 4.
|
2020-12-11 19:59:57 -05:00
|
|
|
#[[ $imageVersion -eq 4 ]] && sed -i 's/mmcblk0/mmcblk1/g' /etc/fstab
|
2020-12-08 12:14:43 -05:00
|
|
|
EOF
|
2020-12-09 10:39:57 -05:00
|
|
|
|
2020-12-24 12:25:33 -05:00
|
|
|
# Copy override files into place.
|
2021-06-22 01:23:57 -04:00
|
|
|
cp -rv ../files/boot/* /mnt/boot
|
2020-12-24 12:25:33 -05:00
|
|
|
cp -rv ../files/etc/* /mnt/etc
|
2021-06-22 01:23:57 -04:00
|
|
|
cp -rv ../files/var/* /mnt/var
|
2020-12-24 12:25:33 -05:00
|
|
|
|
|
|
|
# Exiting calls the cleanup function to unmount.
|
2020-12-09 10:39:57 -05:00
|
|
|
exit 0
|