mirror of
https://github.com/brain-hackers/brain-config.git
synced 2024-12-22 12:10:07 +09:00
add ability to try to upgrade raspi-config
This commit is contained in:
parent
fa1d2c3708
commit
8afc286e8b
@ -198,6 +198,13 @@ do_boot_behaviour() {
|
||||
fi
|
||||
}
|
||||
|
||||
do_update() {
|
||||
apt-get update &&
|
||||
apt-get install raspi-config &&
|
||||
printf "To start raspi-config again, do 'sudo raspi-config'. Now exiting\n"
|
||||
exit 0
|
||||
}
|
||||
|
||||
do_finish() {
|
||||
if [ -e /etc/profile.d/raspi-config.sh ]; then
|
||||
rm -f /etc/profile.d/raspi-config.sh
|
||||
@ -228,6 +235,7 @@ while true; do
|
||||
"memory_split" "Change memory split" \
|
||||
"ssh" "Enable or disable ssh server" \
|
||||
"boot_behaviour" "Start desktop on boot?" \
|
||||
"update" "Try to upgrade raspi-config" \
|
||||
3>&1 1>&2 2>&3)
|
||||
RET=$?
|
||||
if [ $RET -eq 1 ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user