mirror of
https://github.com/okunze/Argon40-ArgonOne-Script.git
synced 2024-11-17 19:08:57 +01:00
Automated Change by GitHub Action
This commit is contained in:
parent
abafbbb752
commit
3d34904199
@ -1,6 +1,89 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Start code lifted from raspi-config
|
||||||
|
# is_pifive, get_serial_hw and do_serial_hw based on raspi-config
|
||||||
|
|
||||||
|
if [ -e /boot/firmware/config.txt ] ; then
|
||||||
|
FIRMWARE=/firmware
|
||||||
|
else
|
||||||
|
FIRMWARE=
|
||||||
|
fi
|
||||||
|
CONFIG=/boot${FIRMWARE}/config.txt
|
||||||
|
TMPCONFIG=/dev/shm/argontmp.bak
|
||||||
|
|
||||||
|
set_config_var() {
|
||||||
|
lua - "$1" "$2" "$3" <<EOF > "$TMPCONFIG"
|
||||||
|
local key=assert(arg[1])
|
||||||
|
local value=assert(arg[2])
|
||||||
|
local fn=assert(arg[3])
|
||||||
|
local file=assert(io.open(fn))
|
||||||
|
local made_change=false
|
||||||
|
for line in file:lines() do
|
||||||
|
if line:match("^#?%s*"..key.."=.*$") then
|
||||||
|
line=key.."="..value
|
||||||
|
made_change=true
|
||||||
|
end
|
||||||
|
print(line)
|
||||||
|
end
|
||||||
|
|
||||||
|
if not made_change then
|
||||||
|
print(key.."="..value)
|
||||||
|
end
|
||||||
|
EOF
|
||||||
|
sudo chown root:root "$TMPCONFIG"
|
||||||
|
sudo chmod 755 "$TMPCONFIG"
|
||||||
|
sudo mv "$TMPCONFIG" "$3"
|
||||||
|
}
|
||||||
|
|
||||||
|
is_pifive() {
|
||||||
|
grep -q "^Revision\s*:\s*[ 123][0-9a-fA-F][0-9a-fA-F]4[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]$" /proc/cpuinfo
|
||||||
|
return $?
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
get_serial_hw() {
|
||||||
|
if is_pifive ; then
|
||||||
|
if grep -q -E "dtparam=uart0=off" $CONFIG ; then
|
||||||
|
echo 1
|
||||||
|
elif grep -q -E "dtparam=uart0" $CONFIG ; then
|
||||||
|
echo 0
|
||||||
|
else
|
||||||
|
echo 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if grep -q -E "^enable_uart=1" $CONFIG ; then
|
||||||
|
echo 0
|
||||||
|
elif grep -q -E "^enable_uart=0" $CONFIG ; then
|
||||||
|
echo 1
|
||||||
|
elif [ -e /dev/serial0 ] ; then
|
||||||
|
echo 0
|
||||||
|
else
|
||||||
|
echo 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
do_serial_hw() {
|
||||||
|
if [ $1 -eq 0 ] ; then
|
||||||
|
if is_pifive ; then
|
||||||
|
set_config_var dtparam=uart0 on $CONFIG
|
||||||
|
else
|
||||||
|
set_config_var enable_uart 1 $CONFIG
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if is_pifive ; then
|
||||||
|
sudo sed $CONFIG -i -e "/dtparam=uart0.*/d"
|
||||||
|
else
|
||||||
|
set_config_var enable_uart 0 $CONFIG
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# End code lifted from raspi-config
|
||||||
|
##########
|
||||||
|
|
||||||
argon_create_file() {
|
argon_create_file() {
|
||||||
if [ -f $1 ]; then
|
if [ -f $1 ]; then
|
||||||
sudo rm $1
|
sudo rm $1
|
||||||
@ -8,6 +91,7 @@ argon_create_file() {
|
|||||||
sudo touch $1
|
sudo touch $1
|
||||||
sudo chmod 666 $1
|
sudo chmod 666 $1
|
||||||
}
|
}
|
||||||
|
|
||||||
argon_check_pkg() {
|
argon_check_pkg() {
|
||||||
RESULT=$(dpkg-query -W -f='${Status}\n' "$1" 2> /dev/null | grep "installed")
|
RESULT=$(dpkg-query -W -f='${Status}\n' "$1" 2> /dev/null | grep "installed")
|
||||||
|
|
||||||
@ -64,7 +148,15 @@ if [ $? -eq 0 ]
|
|||||||
then
|
then
|
||||||
# Enable i2c and serial
|
# Enable i2c and serial
|
||||||
sudo raspi-config nonint do_i2c 0
|
sudo raspi-config nonint do_i2c 0
|
||||||
sudo raspi-config nonint do_serial 2
|
if [ "$CHECKPLATFORM" = "Raspbian" ]
|
||||||
|
then
|
||||||
|
# bookworm raspi-config prompts user when configuring serial
|
||||||
|
if [ $(get_serial_hw) -eq 1 ]; then
|
||||||
|
do_serial_hw 0
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
sudo raspi-config nonint do_serial 2
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Helper variables
|
# Helper variables
|
||||||
@ -125,6 +217,7 @@ echo ' bus = smbus.SMBus(0)' >> $shutdownscript
|
|||||||
|
|
||||||
echo 'if len(sys.argv)>1:' >> $shutdownscript
|
echo 'if len(sys.argv)>1:' >> $shutdownscript
|
||||||
echo ' address=0x1a' >> $shutdownscript
|
echo ' address=0x1a' >> $shutdownscript
|
||||||
|
|
||||||
# Fan off
|
# Fan off
|
||||||
echo " bus.write_byte(address,0)" >> $shutdownscript
|
echo " bus.write_byte(address,0)" >> $shutdownscript
|
||||||
|
|
||||||
|
@ -1,5 +1,14 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -e /boot/firmware/config.txt ] ; then
|
||||||
|
FIRMWARE=/firmware
|
||||||
|
else
|
||||||
|
FIRMWARE=
|
||||||
|
fi
|
||||||
|
CONFIG=/boot${FIRMWARE}/config.txt
|
||||||
|
|
||||||
|
CHECKGPIOMODE="libgpiod" # gpiod or rpigpio
|
||||||
|
|
||||||
# Check if Raspbian
|
# Check if Raspbian
|
||||||
CHECKPLATFORM="Others"
|
CHECKPLATFORM="Others"
|
||||||
if [ -f "/etc/os-release" ]
|
if [ -f "/etc/os-release" ]
|
||||||
@ -130,8 +139,8 @@ then
|
|||||||
sudo rm $irexecshfile
|
sudo rm $irexecshfile
|
||||||
sudo rm $irdecodefile
|
sudo rm $irdecodefile
|
||||||
|
|
||||||
sudo cat /boot/config.txt | grep -v 'dtoverlay=gpio-ir,gpio_pin=23' > $irtmpconfigfile
|
sudo cat $CONFIG | grep -v 'dtoverlay=gpio-ir,gpio_pin=23' > $irtmpconfigfile
|
||||||
cat $irtmpconfigfile | sudo tee /boot/config.txt 1> /dev/null
|
cat $irtmpconfigfile | sudo tee $CONFIG 1> /dev/null
|
||||||
sudo rm $irtmpconfigfile
|
sudo rm $irtmpconfigfile
|
||||||
|
|
||||||
echo "Uninstall Completed"
|
echo "Uninstall Completed"
|
||||||
@ -234,7 +243,7 @@ then
|
|||||||
|
|
||||||
sudo pip3 install lirc
|
sudo pip3 install lirc
|
||||||
|
|
||||||
echo "dtoverlay=gpio-ir,gpio_pin=23" | sudo tee -a /boot/config.txt 1> /dev/null
|
echo "dtoverlay=gpio-ir,gpio_pin=23" | sudo tee -a $CONFIG 1> /dev/null
|
||||||
|
|
||||||
sudo /usr/share/lirc/lirc-old2new
|
sudo /usr/share/lirc/lirc-old2new
|
||||||
|
|
||||||
@ -286,9 +295,11 @@ then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f "$irdecodefile" ]
|
if [ "$CHECKGPIOMODE" = "rpigpio" ]
|
||||||
then
|
then
|
||||||
sudo wget https://download.argon40.com/argonone-irdecoder.py -O $irdecodefile --quiet
|
sudo wget https://download.argon40.com/argonone-irdecoder.py -O $irdecodefile --quiet
|
||||||
|
else
|
||||||
|
sudo wget https://download.argon40.com/scripts/argonone-irdecoder-libgpiod.py -O $irdecodefile --quiet
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sudo python3 $irdecodefile $remotemode
|
sudo python3 $irdecodefile $remotemode
|
||||||
|
Loading…
Reference in New Issue
Block a user