From fe69f0b0e4a00acbde9a3cd4a039d42b813a6928 Mon Sep 17 00:00:00 2001 From: Pecusx Date: Sat, 29 Oct 2016 15:29:27 +0200 Subject: [PATCH] Delete run_raspi-config.sh --- run_raspi-config.sh | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 run_raspi-config.sh diff --git a/run_raspi-config.sh b/run_raspi-config.sh deleted file mode 100755 index d62c4f9..0000000 --- a/run_raspi-config.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -# Radio daemon post install script 2 -# $Id: run_raspi-config.sh,v 1.3 2015/01/31 15:42:20 bob Exp $ - -TYPE=$1 # No instructions before this line - -I2C=4 # Uses I2C libraries -CAD=5 # PiFace control and display - -echo "The installation will now run the raspi-config cofiguration program!" -echo "When it runs select Advanced options" - -if [[ ${TYPE} -eq ${CAD} ]]; then - echo "and enable automatic loading of the SPI kernel module" -elif [[ ${TYPE} -eq ${I2C} ]]; then - echo "and enable automatic loading of the I2C kernel module" -fi - -echo -n "Enter y to continue or x to exit: " -read ans -if [[ ${ans} == 'x' ]]; then - echo "Installation stopped" - exit 0 -fi -/usr/bin/raspi-config - - -exit 0