From d7a6aa81ef4506b7d4e10ddf09ee1662e0eebbd0 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Thu, 7 Aug 2025 02:30:42 +0100 Subject: remove some cruft --- scripts/install-beaglebone.sh | 80 ------------------------------------------- 1 file changed, 80 deletions(-) delete mode 100755 scripts/install-beaglebone.sh (limited to 'scripts/install-beaglebone.sh') diff --git a/scripts/install-beaglebone.sh b/scripts/install-beaglebone.sh deleted file mode 100755 index 58424c05..00000000 --- a/scripts/install-beaglebone.sh +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/bash -# This script installs Klipper on a Beaglebone running Debian Bullseye -# for use with its PRU micro-controller. - -# Step 1: Do main install -install_main() -{ - # Run the debian script - should - # work. - ${SRCDIR}/scripts/install-debian.sh -} - -# Step 2: Install additional system packages -install_packages() -{ - # Remove conflicting AVR packages - PKGLIST_REMOVE="avrdude gcc-avr binutils-avr avr-libc" - - report_status "Removing ARM packages because of conflicts with PRU packages" - sudo apt-get remove --yes ${PKGLIST_REMOVE} - - # Install desired packages - PKGLIST="gcc-pru" - - report_status "Installing beaglebone packages..." - sudo apt-get install --yes ${PKGLIST} -} - -# Step 3: Install startup script -install_script() -{ - report_status "Installing pru start script..." - sudo cp "${SRCDIR}/scripts/klipper-pru-start.sh" /etc/init.d/klipper_pru - sudo update-rc.d klipper_pru defaults-disabled -} - -# Step 4: Install pru udev rule -install_udev() -{ - report_status "Installing pru udev rule..." - sudo /bin/sh -c "cat > /etc/udev/rules.d/pru.rules" <