diff options
author | kiwigod <amissier@pm.me> | 2020-05-18 23:35:43 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2020-05-28 14:40:04 -0400 |
commit | bf367ad2b6746f9bb5a7490259f69d28bb832f84 (patch) | |
tree | 8708dd737f602680445ddbd0dc93831784e65c26 | |
parent | 1ab41cf41da9544046baf1db631cf7691ea65a88 (diff) | |
download | kutter-bf367ad2b6746f9bb5a7490259f69d28bb832f84.tar.gz kutter-bf367ad2b6746f9bb5a7490259f69d28bb832f84.tar.xz kutter-bf367ad2b6746f9bb5a7490259f69d28bb832f84.zip |
scripts: add arch linux install script
Automate installation for Arch Linux based systems
Signed-off-by: Arjun Sardjoe Missier <amissier@pm.me>
-rwxr-xr-x | scripts/install-arch.sh | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/scripts/install-arch.sh b/scripts/install-arch.sh new file mode 100755 index 00000000..ad5820c0 --- /dev/null +++ b/scripts/install-arch.sh @@ -0,0 +1,102 @@ +#!/bin/bash +# This script installs Klipper on an Arch Linux system + +PYTHONDIR="${HOME}/klippy-env" +SYSTEMDDIR="/etc/systemd/system" +AURCLIENT="pamac" +KLIPPER_USER=$USER +KLIPPER_GROUP=$KLIPPER_USER + +# Step 1: Install system packages +install_packages() +{ + # Packages for python cffi + PKGLIST="python2-virtualenv libffi base-devel" + # kconfig requirements + PKGLIST="${PKGLIST} ncurses" + # hub-ctrl + PKGLIST="${PKGLIST} libusb" + # AVR chip installation and building + PKGLIST="${PKGLIST} avrdude avr-gcc avr-binutils avr-libc" + # ARM chip installation and building + AURLIST="stm32flash" + PKGLIST="${PKGLIST} arm-none-eabi-newlib" + PKGLIST="${PKGLIST} arm-none-eabi-gcc arm-none-eabi-binutils" + + # Install desired packages + report_status "Installing packages..." + sudo pacman -S ${PKGLIST} + $AURCLIENT build ${AURLIST} +} + +# Step 2: Create python virtual environment +create_virtualenv() +{ + report_status "Updating python virtual environment..." + + # Create virtualenv if it doesn't already exist + [ ! -d ${PYTHONDIR} ] && virtualenv2 ${PYTHONDIR} + + # Install/update dependencies + ${PYTHONDIR}/bin/pip install -r ${SRCDIR}/scripts/klippy-requirements.txt +} + +# Step 3: Install startup script +install_script() +{ +# Create systemd service file + KLIPPER_LOG=/tmp/klippy.log + report_status "Installing system start script..." + sudo /bin/sh -c "cat > $SYSTEMDDIR/klipper.service" << EOF +#Systemd service file for klipper +[Unit] +Description=Starts klipper on startup +After=network.target + +[Install] +WantedBy=multi-user.target + +[Service] +Type=simple +User=$KLIPPER_USER +RemainAfterExit=yes +ExecStart=${PYTHONDIR}/bin/python ${SRCDIR}/klippy/klippy.py ${HOME}/printer.cfg -l ${KLIPPER_LOG} +EOF +# Use systemctl to enable the klipper systemd service script + sudo systemctl enable klipper.service + report_status "Make sure to add $KLIPPER_USER to the user group controlling your serial printer port" +} + +# Step 4: Start host software +start_software() +{ + report_status "Launching Klipper host software..." + sudo systemctl start klipper +} + +# Helper functions +report_status() +{ + echo -e "\n\n###### $1" +} + +verify_ready() +{ + if [ "$EUID" -eq 0 ]; then + echo "This script must not run as root" + exit -1 + fi +} + +# Force script to exit if an error occurs +set -e + +# Find SRCDIR from the pathname of this script +SRCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )" + +# Run installation steps defined above +verify_ready +install_packages +create_virtualenv +install_script +start_software |