2012-06-11 05:32:01 +09:00
#!/bin/sh
2016-01-08 19:41:39 +09:00
# Part of raspi-config https://github.com/RPi-Distro/raspi-config
2012-06-11 05:32:01 +09:00
#
# See LICENSE file for copyright and license details
2013-03-27 06:58:32 +09:00
INTERACTIVE=True
2012-07-16 02:32:30 +09:00
ASK_TO_REBOOT=0
2015-01-30 08:30:09 +09:00
BLACKLIST=/etc/modprobe.d/raspi-blacklist.conf
CONFIG=/boot/config.txt
2012-07-16 02:32:30 +09:00
2017-01-10 01:52:10 +09:00
is_pi () {
2017-10-30 21:20:14 +09:00
grep -q "^model name\s*:\s*ARMv" /proc/cpuinfo
return $?
2017-01-10 01:52:10 +09:00
}
2017-01-10 20:47:45 +09:00
if is_pi ; then
CMDLINE=/boot/cmdline.txt
else
CMDLINE=/proc/cmdline
fi
2016-01-23 00:05:27 +09:00
is_pione() {
if grep -q "^Revision\s*:\s*00[0-9a-fA-F][0-9a-fA-F]$" /proc/cpuinfo; then
return 0
2017-01-18 03:02:14 +09:00
elif grep -q "^Revision\s*:\s*[ 123][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]0[0-36][0-9a-fA-F]$" /proc/cpuinfo ; then
2016-01-23 00:05:27 +09:00
return 0
else
return 1
fi
}
is_pitwo() {
2016-02-10 00:08:25 +09:00
grep -q "^Revision\s*:\s*[ 123][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]04[0-9a-fA-F]$" /proc/cpuinfo
2016-01-23 00:05:27 +09:00
return $?
}
2016-01-23 18:48:28 +09:00
is_pizero() {
2017-02-28 18:51:59 +09:00
grep -q "^Revision\s*:\s*[ 123][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]0[9cC][0-9a-fA-F]$" /proc/cpuinfo
2016-01-23 18:48:28 +09:00
return $?
}
2016-01-23 00:05:27 +09:00
get_pi_type() {
if is_pione; then
echo 1
elif is_pitwo; then
echo 2
else
echo 0
fi
}
2017-01-10 23:11:21 +09:00
is_live() {
grep -q "boot=live" $CMDLINE
return $?
}
2017-01-28 00:29:05 +09:00
is_ssh() {
if pstree -p | egrep --quiet --extended-regexp ".*sshd.*\($$\)"; then
return 0
else
return 1
fi
}
2013-05-23 03:37:56 +09:00
calc_wt_size() {
# NOTE: it's tempting to redirect stderr to /dev/null, so supress error
# output from tput. However in this case, tput detects neither stdout or
# stderr is a tty and so only gives default 80, 24 values
2013-05-24 10:01:35 +09:00
WT_HEIGHT=17
2013-05-23 03:37:56 +09:00
WT_WIDTH=$(tput cols)
if [ -z "$WT_WIDTH" ] || [ "$WT_WIDTH" -lt 60 ]; then
WT_WIDTH=80
fi
2013-05-24 09:51:37 +09:00
if [ "$WT_WIDTH" -gt 178 ]; then
WT_WIDTH=120
fi
2015-01-30 08:30:09 +09:00
WT_MENU_HEIGHT=$(($WT_HEIGHT-7))
2013-05-23 03:37:56 +09:00
}
2013-05-23 04:11:00 +09:00
do_about() {
2012-07-14 01:13:30 +09:00
whiptail --msgbox "\
2013-03-27 06:58:32 +09:00
This tool provides a straight-forward way of doing initial
configuration of the Raspberry Pi. Although it can be run
at any time, some of the options may have difficulties if
2012-07-14 01:13:30 +09:00
you have heavily customised your installation.\
" 20 70 1
2012-06-11 05:32:01 +09:00
}
2016-05-25 01:28:29 +09:00
get_can_expand() {
2017-07-14 18:21:07 +09:00
ROOT_PART=$(mount | sed -n 's|^/dev/\(.*\) on / .*|\1|p')
2016-05-25 01:28:29 +09:00
PART_NUM=${ROOT_PART#mmcblk0p}
if [ "$PART_NUM" = "$ROOT_PART" ]; then
echo 1
exit
fi
if [ "$PART_NUM" -ne 2 ]; then
echo 1
exit
fi
LAST_PART_NUM=$(parted /dev/mmcblk0 -ms unit s p | tail -n 1 | cut -f 1 -d:)
if [ $LAST_PART_NUM -ne $PART_NUM ]; then
echo 1
exit
fi
echo 0
}
2013-05-23 04:11:00 +09:00
do_expand_rootfs() {
2017-07-14 18:21:07 +09:00
ROOT_PART=$(mount | sed -n 's|^/dev/\(.*\) on / .*|\1|p')
2013-05-21 03:45:01 +09:00
PART_NUM=${ROOT_PART#mmcblk0p}
if [ "$PART_NUM" = "$ROOT_PART" ]; then
2015-05-29 19:35:13 +09:00
whiptail --msgbox "$ROOT_PART is not an SD card. Don't know how to expand" 20 60 2
2013-05-21 03:45:01 +09:00
return 0
fi
2013-05-23 04:47:15 +09:00
# NOTE: the NOOBS partition layout confuses parted. For now, let's only
# agree to work with a sufficiently simple partition layout
if [ "$PART_NUM" -ne 2 ]; then
whiptail --msgbox "Your partition layout is not currently supported by this tool. You are probably using NOOBS, in which case your root filesystem is already expanded anyway." 20 60 2
return 0
fi
2013-05-21 03:45:01 +09:00
LAST_PART_NUM=$(parted /dev/mmcblk0 -ms unit s p | tail -n 1 | cut -f 1 -d:)
2015-05-29 19:35:13 +09:00
if [ $LAST_PART_NUM -ne $PART_NUM ]; then
whiptail --msgbox "$ROOT_PART is not the last partition. Don't know how to expand" 20 60 2
2013-05-21 03:45:01 +09:00
return 0
fi
2012-06-11 05:32:01 +09:00
# Get the starting offset of the root partition
2015-05-29 19:35:13 +09:00
PART_START=$(parted /dev/mmcblk0 -ms unit s p | grep "^${PART_NUM}" | cut -f 2 -d: | sed 's/[^0-9]//g')
2012-06-11 05:32:01 +09:00
[ "$PART_START" ] || return 1
2013-03-27 06:58:32 +09:00
# Return value will likely be error for fdisk as it fails to reload the
2012-06-11 05:32:01 +09:00
# partition table because the root fs is mounted
fdisk /dev/mmcblk0 <<EOF
p
d
2013-05-21 03:45:01 +09:00
$PART_NUM
2012-06-11 05:32:01 +09:00
n
p
2013-05-21 03:45:01 +09:00
$PART_NUM
2012-06-11 05:32:01 +09:00
$PART_START
p
w
EOF
2012-07-16 02:32:30 +09:00
ASK_TO_REBOOT=1
2012-06-11 05:32:01 +09:00
# now set up an init.d script
2015-05-29 19:35:13 +09:00
cat <<EOF > /etc/init.d/resize2fs_once &&
2012-06-17 21:43:38 +09:00
#!/bin/sh
2012-06-11 05:32:01 +09:00
### BEGIN INIT INFO
# Provides: resize2fs_once
# Required-Start:
# Required-Stop:
2015-05-29 19:35:13 +09:00
# Default-Start: 3
2012-06-11 05:32:01 +09:00
# Default-Stop:
# Short-Description: Resize the root filesystem to fill partition
# Description:
### END INIT INFO
. /lib/lsb/init-functions
2015-05-29 19:35:13 +09:00
case "\$1" in
2012-06-11 05:32:01 +09:00
start)
log_daemon_msg "Starting resize2fs_once" &&
2015-05-29 19:35:13 +09:00
resize2fs /dev/$ROOT_PART &&
2012-06-11 05:32:01 +09:00
update-rc.d resize2fs_once remove &&
2015-05-29 19:35:13 +09:00
rm /etc/init.d/resize2fs_once &&
log_end_msg \$?
2012-06-11 05:32:01 +09:00
;;
*)
2015-05-29 19:35:13 +09:00
echo "Usage: \$0 start" >&2
2012-06-11 05:32:01 +09:00
exit 3
;;
esac
EOF
chmod +x /etc/init.d/resize2fs_once &&
update-rc.d resize2fs_once defaults &&
2013-03-27 06:58:32 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Root partition has been resized.\nThe filesystem will be enlarged upon the next reboot" 20 60 2
fi
2012-06-11 05:32:01 +09:00
}
2012-07-14 01:01:48 +09:00
set_config_var() {
2013-05-08 23:11:53 +09:00
lua - "$1" "$2" "$3" <<EOF > "$3.bak"
2012-07-14 01:01:48 +09:00
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
mv "$3.bak" "$3"
}
2015-11-17 20:35:04 +09:00
clear_config_var() {
lua - "$1" "$2" <<EOF > "$2.bak"
local key=assert(arg[1])
local fn=assert(arg[2])
local file=assert(io.open(fn))
for line in file:lines() do
if line:match("^%s*"..key.."=.*$") then
line="#"..line
end
print(line)
end
EOF
mv "$2.bak" "$2"
}
2012-10-29 05:38:27 +09:00
get_config_var() {
lua - "$1" "$2" <<EOF
local key=assert(arg[1])
local fn=assert(arg[2])
local file=assert(io.open(fn))
2015-09-24 05:25:39 +09:00
local found=false
2012-10-29 05:38:27 +09:00
for line in file:lines() do
2015-09-24 05:25:39 +09:00
local val = line:match("^%s*"..key.."=(.*)$")
2012-10-29 05:38:27 +09:00
if (val ~= nil) then
print(val)
2015-09-24 05:25:39 +09:00
found=true
2012-10-29 05:38:27 +09:00
break
end
end
2015-09-24 05:25:39 +09:00
if not found then
print(0)
end
2012-10-29 05:38:27 +09:00
EOF
}
2016-05-25 01:28:29 +09:00
get_overscan() {
OVS=$(get_config_var disable_overscan $CONFIG)
if [ $OVS -eq 1 ]; then
echo 1
else
echo 0
2012-06-11 05:32:01 +09:00
fi
}
2013-05-23 04:21:24 +09:00
do_overscan() {
2016-05-25 01:28:29 +09:00
DEFAULT=--defaultno
CURRENT=0
if [ $(get_overscan) -eq 0 ]; then
DEFAULT=
CURRENT=1
fi
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-25 01:53:44 +09:00
whiptail --yesno "Would you like to enable compensation for displays with overscan?" $DEFAULT 20 60 2
2015-09-15 18:25:53 +09:00
RET=$?
else
RET=$1
fi
2016-05-25 01:28:29 +09:00
if [ $RET -eq $CURRENT ]; then
2012-07-16 02:32:30 +09:00
ASK_TO_REBOOT=1
2016-05-25 01:28:29 +09:00
fi
if [ $RET -eq 0 ] ; then
set_config_var disable_overscan 0 $CONFIG
2016-05-25 02:35:46 +09:00
STATUS=enabled
2016-05-25 01:28:29 +09:00
elif [ $RET -eq 1 ]; then
sed $CONFIG -i -e "s/^overscan_/#overscan_/"
set_config_var disable_overscan 1 $CONFIG
2016-05-25 02:35:46 +09:00
STATUS=disabled
2012-06-11 05:32:01 +09:00
else
2016-05-25 01:28:29 +09:00
return $RET
2012-06-11 05:32:01 +09:00
fi
2016-05-25 02:35:46 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-25 22:22:16 +09:00
whiptail --msgbox "Display overscan compensation is $STATUS" 20 60 1
2016-05-25 02:35:46 +09:00
fi
2012-06-11 05:32:01 +09:00
}
2013-05-23 04:11:00 +09:00
do_change_pass() {
2017-07-14 18:21:07 +09:00
whiptail --msgbox "You will now be asked to enter a new password for the $SUDO_USER user" 20 60 1
passwd $SUDO_USER &&
2012-06-11 05:32:01 +09:00
whiptail --msgbox "Password changed successfully" 20 60 1
}
2013-05-23 04:17:32 +09:00
do_configure_keyboard() {
2012-06-17 07:06:12 +09:00
dpkg-reconfigure keyboard-configuration &&
2012-06-11 05:32:01 +09:00
printf "Reloading keymap. This may take a short while\n" &&
2015-05-27 16:23:36 +09:00
invoke-rc.d keyboard-setup start || return $?
2017-10-30 21:11:57 +09:00
setsid sh -c 'exec setupcon -k --force <> /dev/tty1 >&0 2>&1'
2015-05-26 07:19:35 +09:00
udevadm trigger --subsystem-match=input --action=change
2015-05-27 16:23:36 +09:00
return 0
2012-06-11 05:32:01 +09:00
}
2013-05-23 04:17:32 +09:00
do_change_locale() {
2012-06-11 05:32:01 +09:00
dpkg-reconfigure locales
}
2013-05-23 04:17:32 +09:00
do_change_timezone() {
2012-06-11 05:32:01 +09:00
dpkg-reconfigure tzdata
}
2016-05-24 01:43:13 +09:00
get_wifi_country() {
grep country= /etc/wpa_supplicant/wpa_supplicant.conf | cut -d "=" -f 2
}
2016-05-26 00:36:39 +09:00
do_wifi_country() {
2016-02-24 02:17:26 +09:00
oIFS="$IFS"
2016-02-24 02:42:14 +09:00
if [ "$INTERACTIVE" = True ]; then
IFS="/"
value=$(cat /usr/share/zoneinfo/iso3166.tab | tail -n +26 | tr '\t' '/' | tr '\n' '/')
COUNTRY=$(whiptail --menu "Select the country in which the Pi is to be used" 20 60 10 ${value} 3>&1 1>&2 2>&3)
else
COUNTRY=$1
true
fi
2016-02-24 02:17:26 +09:00
if [ $? -eq 0 ];then
2016-03-02 19:16:52 +09:00
if [ -e /etc/wpa_supplicant/wpa_supplicant.conf ]; then
if grep -q "^country=" /etc/wpa_supplicant/wpa_supplicant.conf ; then
2017-04-03 08:37:47 +09:00
sed -i --follow-symlinks "s/^country=.*/country=$COUNTRY/g" /etc/wpa_supplicant/wpa_supplicant.conf
2016-03-02 19:16:52 +09:00
else
2017-04-03 08:37:47 +09:00
sed -i --follow-symlinks "1i country=$COUNTRY" /etc/wpa_supplicant/wpa_supplicant.conf
2016-03-02 19:16:52 +09:00
fi
2016-02-24 02:17:26 +09:00
else
2016-03-02 19:16:52 +09:00
echo "country=$COUNTRY" > /etc/wpa_supplicant/wpa_supplicant.conf
2016-02-24 02:17:26 +09:00
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Wi-fi country set to $COUNTRY" 20 60 1
fi
ASK_TO_REBOOT=1
fi
IFS=$oIFS
}
2016-05-24 02:14:18 +09:00
get_hostname() {
cat /etc/hostname | tr -d " \t\n\r"
}
2016-05-26 00:36:39 +09:00
do_hostname() {
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "\
2013-04-26 17:43:03 +09:00
Please note: RFCs mandate that a hostname's labels \
may contain only the ASCII letters 'a' through 'z' (case-insensitive),
the digits '0' through '9', and the hyphen.
Hostname labels cannot begin or end with a hyphen.
No other symbols, punctuation characters, or blank spaces are permitted.\
" 20 70 1
2015-09-15 18:25:53 +09:00
fi
2013-04-26 17:43:03 +09:00
CURRENT_HOSTNAME=`cat /etc/hostname | tr -d " \t\n\r"`
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
NEW_HOSTNAME=$(whiptail --inputbox "Please enter a hostname" 20 60 "$CURRENT_HOSTNAME" 3>&1 1>&2 2>&3)
else
NEW_HOSTNAME=$1
true
fi
2013-04-26 17:43:03 +09:00
if [ $? -eq 0 ]; then
echo $NEW_HOSTNAME > /etc/hostname
sed -i "s/127.0.1.1.*$CURRENT_HOSTNAME/127.0.1.1\t$NEW_HOSTNAME/g" /etc/hosts
ASK_TO_REBOOT=1
fi
}
2013-05-23 04:21:24 +09:00
do_memory_split() { # Memory Split
2012-10-29 05:38:27 +09:00
if [ -e /boot/start_cd.elf ]; then
# New-style memory split setting
## get current memory split from /boot/config.txt
2017-10-30 21:20:14 +09:00
arm=$(vcgencmd get_mem arm | cut -d '=' -f 2 | cut -d 'M' -f 1)
gpu=$(vcgencmd get_mem gpu | cut -d '=' -f 2 | cut -d 'M' -f 1)
tot=$(($arm+$gpu))
2016-04-22 00:02:13 +09:00
if [ $tot -gt 512 ]; then
2017-10-30 21:20:14 +09:00
CUR_GPU_MEM=$(get_config_var gpu_mem_1024 $CONFIG)
elif [ $tot -gt 256 ]; then
CUR_GPU_MEM=$(get_config_var gpu_mem_512 $CONFIG)
else
CUR_GPU_MEM=$(get_config_var gpu_mem_256 $CONFIG)
fi
2016-04-22 00:02:13 +09:00
if [ -z "$CUR_GPU_MEM" ] || [ $CUR_GPU_MEM = "0" ]; then
2017-10-30 21:20:14 +09:00
CUR_GPU_MEM=$(get_config_var gpu_mem $CONFIG)
fi
2016-04-22 00:02:13 +09:00
[ -z "$CUR_GPU_MEM" ] || [ $CUR_GPU_MEM = "0" ] && CUR_GPU_MEM=64
2012-10-29 05:38:27 +09:00
## ask users what gpu_mem they want
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
2017-07-11 20:24:40 +09:00
NEW_GPU_MEM=$(whiptail --inputbox "How much memory (MB) should the GPU have? e.g. 16/32/64/128/256" \
2015-09-15 18:25:53 +09:00
20 70 -- "$CUR_GPU_MEM" 3>&1 1>&2 2>&3)
else
NEW_GPU_MEM=$1
true
fi
2012-10-29 05:38:27 +09:00
if [ $? -eq 0 ]; then
2017-10-30 21:20:14 +09:00
if [ $(get_config_var gpu_mem_1024 $CONFIG) != "0" ] || [ $(get_config_var gpu_mem_512 $CONFIG) != "0" ] || [ $(get_config_var gpu_mem_256 $CONFIG) != "0" ]; then
2016-04-22 00:02:13 +09:00
if [ "$INTERACTIVE" = True ]; then
2017-10-30 21:20:14 +09:00
whiptail --msgbox "Device-specific memory settings were found. These have been cleared." 20 60 2
fi
clear_config_var gpu_mem_1024 $CONFIG
clear_config_var gpu_mem_512 $CONFIG
clear_config_var gpu_mem_256 $CONFIG
fi
2015-01-30 08:30:09 +09:00
set_config_var gpu_mem "$NEW_GPU_MEM" $CONFIG
2012-10-29 05:38:27 +09:00
ASK_TO_REBOOT=1
fi
else # Old firmware so do start.elf renaming
get_current_memory_split
MEMSPLIT=$(whiptail --menu "Set memory split.\n$MEMSPLIT_DESCRIPTION" 20 60 10 \
"240" "240MiB for ARM, 16MiB for VideoCore" \
"224" "224MiB for ARM, 32MiB for VideoCore" \
"192" "192MiB for ARM, 64MiB for VideoCore" \
"128" "128MiB for ARM, 128MiB for VideoCore" \
3>&1 1>&2 2>&3)
if [ $? -eq 0 ]; then
set_memory_split ${MEMSPLIT}
ASK_TO_REBOOT=1
fi
2012-08-21 05:53:15 +09:00
fi
}
get_current_memory_split() {
2012-08-10 01:54:01 +09:00
AVAILABLE_SPLITS="128 192 224 240"
2012-08-16 04:41:11 +09:00
MEMSPLIT_DESCRIPTION=""
for SPLIT in $AVAILABLE_SPLITS;do
if [ -e /boot/arm${SPLIT}_start.elf ] && cmp /boot/arm${SPLIT}_start.elf /boot/start.elf >/dev/null 2>&1;then
CURRENT_MEMSPLIT=$SPLIT
MEMSPLIT_DESCRIPTION="Current: ${CURRENT_MEMSPLIT}MiB for ARM, $((256 - $CURRENT_MEMSPLIT))MiB for VideoCore"
break
fi
done
2012-08-21 05:53:15 +09:00
}
set_memory_split() {
cp -a /boot/arm${1}_start.elf /boot/start.elf
sync
2012-06-11 05:32:01 +09:00
}
2013-05-23 04:21:24 +09:00
do_overclock() {
2016-01-23 00:05:27 +09:00
if ! is_pione && ! is_pitwo; then
whiptail --msgbox "This Pi cannot be overclocked." 20 60 2
return 1
fi
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "\
2012-09-17 19:28:39 +09:00
Be aware that overclocking may reduce the lifetime of your
Raspberry Pi. If overclocking at a certain level causes
2012-10-29 05:54:10 +09:00
system instability, try a more modest overclock. Hold down
shift during boot to temporarily disable overclock.
See http://elinux.org/RPi_Overclocking for more information.\
2012-09-17 19:28:39 +09:00
" 20 70 1
2016-01-23 00:05:27 +09:00
if is_pione; then
2016-01-08 19:30:24 +09:00
OVERCLOCK=$(whiptail --menu "Choose overclock preset" 20 60 10 \
2015-09-15 18:25:53 +09:00
"None" "700MHz ARM, 250MHz core, 400MHz SDRAM, 0 overvolt" \
"Modest" "800MHz ARM, 250MHz core, 400MHz SDRAM, 0 overvolt" \
"Medium" "900MHz ARM, 250MHz core, 450MHz SDRAM, 2 overvolt" \
"High" "950MHz ARM, 250MHz core, 450MHz SDRAM, 6 overvolt" \
"Turbo" "1000MHz ARM, 500MHz core, 600MHz SDRAM, 6 overvolt" \
3>&1 1>&2 2>&3)
2016-01-23 00:05:27 +09:00
elif is_pitwo; then
OVERCLOCK=$(whiptail --menu "Choose overclock preset" 20 60 10 \
"None" "900MHz ARM, 250MHz core, 450MHz SDRAM, 0 overvolt" \
"High" "1000MHz ARM, 500MHz core, 500MHz SDRAM, 2 overvolt" \
3>&1 1>&2 2>&3)
fi
2015-09-15 18:25:53 +09:00
else
OVERCLOCK=$1
true
fi
2012-09-17 19:28:39 +09:00
if [ $? -eq 0 ]; then
case "$OVERCLOCK" in
None)
2015-11-17 20:35:04 +09:00
clear_overclock
2012-09-17 19:28:39 +09:00
;;
Modest)
2012-10-29 05:54:10 +09:00
set_overclock Modest 800 250 400 0
2012-09-17 19:28:39 +09:00
;;
Medium)
2012-10-29 05:54:10 +09:00
set_overclock Medium 900 250 450 2
2012-09-17 19:28:39 +09:00
;;
High)
2016-01-23 00:05:27 +09:00
if is_pione; then
set_overclock High 950 250 450 6
else
set_overclock High 1000 500 500 2
fi
2012-09-17 19:28:39 +09:00
;;
Turbo)
2012-10-29 05:54:10 +09:00
set_overclock Turbo 1000 500 600 6
2012-09-17 19:28:39 +09:00
;;
*)
whiptail --msgbox "Programmer error, unrecognised overclock preset" 20 60 2
return 1
;;
esac
ASK_TO_REBOOT=1
fi
}
set_overclock() {
2015-01-30 08:30:09 +09:00
set_config_var arm_freq $2 $CONFIG &&
set_config_var core_freq $3 $CONFIG &&
set_config_var sdram_freq $4 $CONFIG &&
set_config_var over_voltage $5 $CONFIG &&
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Set overclock to preset '$1'" 20 60 2
fi
2012-09-17 19:28:39 +09:00
}
2015-11-17 20:35:04 +09:00
clear_overclock () {
clear_config_var arm_freq $CONFIG &&
clear_config_var core_freq $CONFIG &&
clear_config_var sdram_freq $CONFIG &&
clear_config_var over_voltage $CONFIG &&
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Set overclock to preset 'None'" 20 60 2
fi
}
2016-05-23 22:20:18 +09:00
get_ssh() {
if service ssh status | grep -q inactive; then
echo 1
else
echo 0
fi
}
2013-05-23 04:21:24 +09:00
do_ssh() {
2012-07-05 00:13:28 +09:00
if [ -e /var/log/regen_ssh_keys.log ] && ! grep -q "^finished" /var/log/regen_ssh_keys.log; then
2012-06-17 23:16:05 +09:00
whiptail --msgbox "Initial ssh key generation still running. Please wait and try again." 20 60 2
return 1
fi
2016-05-24 21:01:17 +09:00
DEFAULT=--defaultno
if [ $(get_ssh) -eq 0 ]; then
DEFAULT=
fi
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-23 22:20:18 +09:00
whiptail --yesno "Would you like the SSH server to be enabled?" $DEFAULT 20 60 2
2015-09-15 18:25:53 +09:00
RET=$?
else
RET=$1
fi
2012-06-11 05:32:01 +09:00
if [ $RET -eq 0 ]; then
update-rc.d ssh enable &&
invoke-rc.d ssh start &&
2016-05-24 21:01:17 +09:00
STATUS=enabled
2012-06-11 05:32:01 +09:00
elif [ $RET -eq 1 ]; then
update-rc.d ssh disable &&
2016-05-23 22:20:18 +09:00
invoke-rc.d ssh stop &&
2016-05-24 21:01:17 +09:00
STATUS=disabled
2012-06-11 05:32:01 +09:00
else
return $RET
fi
2016-05-24 21:01:17 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "The SSH server is $STATUS" 20 60 1
fi
2012-06-11 05:32:01 +09:00
}
2016-08-11 00:04:28 +09:00
get_vnc() {
if systemctl status vncserver-x11-serviced.service | grep -q inactive; then
echo 1
else
echo 0
fi
}
do_vnc() {
DEFAULT=--defaultno
if [ $(get_vnc) -eq 0 ]; then
DEFAULT=
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --yesno "Would you like the VNC Server to be enabled?" $DEFAULT 20 60 2
RET=$?
else
RET=$1
fi
if [ $RET -eq 0 ]; then
2017-02-24 03:18:18 +09:00
if [ ! -d /usr/share/doc/realvnc-vnc-server ] ; then
2017-07-04 18:30:34 +09:00
apt-get install realvnc-vnc-server
2017-02-24 03:18:18 +09:00
fi
2016-08-11 00:04:28 +09:00
systemctl enable vncserver-x11-serviced.service &&
systemctl start vncserver-x11-serviced.service &&
STATUS=enabled
elif [ $RET -eq 1 ]; then
systemctl disable vncserver-x11-serviced.service &&
systemctl stop vncserver-x11-serviced.service &&
STATUS=disabled
else
return $RET
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "The VNC Server is $STATUS" 20 60 1
fi
}
2016-05-23 22:20:18 +09:00
get_spi() {
2016-05-24 19:57:24 +09:00
if grep -q -E "^(device_tree_param|dtparam)=([^,]*,)*spi(=(on|true|yes|1))?(,.*)?$" $CONFIG; then
2016-05-23 22:20:18 +09:00
echo 0
else
echo 1
fi
}
2016-05-19 23:11:12 +09:00
do_spi() {
DEFAULT=--defaultno
2016-05-23 22:20:18 +09:00
if [ $(get_spi) -eq 0 ]; then
2016-05-19 23:11:12 +09:00
DEFAULT=
2015-01-30 08:30:09 +09:00
fi
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-19 23:11:12 +09:00
whiptail --yesno "Would you like the SPI interface to be enabled?" $DEFAULT 20 60 2
2015-09-15 18:25:53 +09:00
RET=$?
else
RET=$1
fi
2015-01-30 08:30:09 +09:00
if [ $RET -eq 0 ]; then
2016-05-19 23:11:12 +09:00
SETTING=on
STATUS=enabled
2015-01-30 08:30:09 +09:00
elif [ $RET -eq 1 ]; then
2016-05-19 23:11:12 +09:00
SETTING=off
STATUS=disabled
2015-01-30 08:30:09 +09:00
else
2016-05-24 21:01:17 +09:00
return $RET
2015-01-30 08:30:09 +09:00
fi
2016-05-24 21:01:17 +09:00
2016-05-19 23:11:12 +09:00
set_config_var dtparam=spi $SETTING $CONFIG &&
2015-02-01 05:18:38 +09:00
if ! [ -e $BLACKLIST ]; then
touch $BLACKLIST
fi
2016-04-27 22:25:39 +09:00
sed $BLACKLIST -i -e "s/^\(blacklist[[:space:]]*spi[-_]bcm2708\)/#\1/"
2016-05-19 23:11:12 +09:00
dtparam spi=$SETTING
2016-05-25 02:35:46 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "The SPI interface is $STATUS" 20 60 1
fi
2013-09-26 02:56:38 +09:00
}
2016-05-23 22:20:18 +09:00
get_i2c() {
2016-05-24 19:57:24 +09:00
if grep -q -E "^(device_tree_param|dtparam)=([^,]*,)*i2c(_arm)?(=(on|true|yes|1))?(,.*)?$" $CONFIG; then
2016-05-23 22:20:18 +09:00
echo 0
else
echo 1
fi
}
2014-09-01 19:44:45 +09:00
do_i2c() {
2015-01-30 08:30:09 +09:00
DEFAULT=--defaultno
2016-05-23 22:20:18 +09:00
if [ $(get_i2c) -eq 0 ]; then
2015-01-30 08:30:09 +09:00
DEFAULT=
fi
2016-05-19 23:11:12 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --yesno "Would you like the ARM I2C interface to be enabled?" $DEFAULT 20 60 2
RET=$?
else
RET=$1
fi
if [ $RET -eq 0 ]; then
SETTING=on
STATUS=enabled
elif [ $RET -eq 1 ]; then
SETTING=off
STATUS=disabled
else
2016-05-24 21:01:17 +09:00
return $RET
2015-01-30 08:30:09 +09:00
fi
2016-05-19 23:11:12 +09:00
set_config_var dtparam=i2c_arm $SETTING $CONFIG &&
2015-02-01 05:18:38 +09:00
if ! [ -e $BLACKLIST ]; then
touch $BLACKLIST
fi
2016-04-27 22:25:39 +09:00
sed $BLACKLIST -i -e "s/^\(blacklist[[:space:]]*i2c[-_]bcm2708\)/#\1/"
sed /etc/modules -i -e "s/^#[[:space:]]*\(i2c[-_]dev\)/\1/"
if ! grep -q "^i2c[-_]dev" /etc/modules; then
printf "i2c-dev\n" >> /etc/modules
2014-09-01 19:44:45 +09:00
fi
2016-05-19 23:11:12 +09:00
dtparam i2c_arm=$SETTING
2016-04-27 22:25:39 +09:00
modprobe i2c-dev
2016-05-25 02:35:46 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "The ARM I2C interface is $STATUS" 20 60 1
fi
2014-09-01 19:44:45 +09:00
}
2016-05-06 22:47:12 +09:00
get_serial() {
2017-01-11 03:11:31 +09:00
if grep -q -E "console=(serial0|ttyAMA0|ttyS0)" $CMDLINE ; then
echo 0
2016-05-06 22:47:12 +09:00
else
2017-01-11 03:11:31 +09:00
echo 1
fi
}
get_serial_hw() {
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
2016-05-06 22:47:12 +09:00
fi
}
2014-09-03 01:25:58 +09:00
do_serial() {
2017-01-11 03:11:31 +09:00
DEFAULTS=--defaultno
DEFAULTH=--defaultno
CURRENTS=0
CURRENTH=0
2016-05-25 01:28:29 +09:00
if [ $(get_serial) -eq 0 ]; then
2017-01-11 03:11:31 +09:00
DEFAULTS=
CURRENTS=1
fi
if [ $(get_serial_hw) -eq 0 ]; then
DEFAULTH=
CURRENTH=1
2014-09-03 01:25:58 +09:00
fi
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
2017-01-11 03:11:31 +09:00
whiptail --yesno "Would you like a login shell to be accessible over serial?" $DEFAULTS 20 60 2
2015-09-15 18:25:53 +09:00
RET=$?
else
RET=$1
fi
2017-01-11 03:11:31 +09:00
if [ $RET -eq $CURRENTS ]; then
2016-05-24 19:37:36 +09:00
ASK_TO_REBOOT=1
fi
2016-05-24 21:01:17 +09:00
if [ $RET -eq 0 ]; then
2016-10-11 18:33:02 +09:00
if grep -q "console=ttyAMA0" $CMDLINE ; then
2016-02-23 23:20:45 +09:00
if [ -e /proc/device-tree/aliases/serial0 ]; then
2016-10-11 18:33:02 +09:00
sed -i $CMDLINE -e "s/console=ttyAMA0/console=serial0/"
2016-02-23 23:20:45 +09:00
fi
2016-10-11 18:33:02 +09:00
elif ! grep -q "console=ttyAMA0" $CMDLINE && ! grep -q "console=serial0" $CMDLINE ; then
2016-02-23 23:20:45 +09:00
if [ -e /proc/device-tree/aliases/serial0 ]; then
2016-10-11 18:33:02 +09:00
sed -i $CMDLINE -e "s/root=/console=serial0,115200 root=/"
2016-02-23 23:20:45 +09:00
else
2016-10-11 18:33:02 +09:00
sed -i $CMDLINE -e "s/root=/console=ttyAMA0,115200 root=/"
2016-02-23 23:20:45 +09:00
fi
2014-09-03 01:25:58 +09:00
fi
2016-04-22 01:28:02 +09:00
set_config_var enable_uart 1 $CONFIG
2017-01-11 03:11:31 +09:00
SSTATUS=enabled
HSTATUS=enabled
2016-05-24 21:01:17 +09:00
elif [ $RET -eq 1 ]; then
2016-10-11 18:33:02 +09:00
sed -i $CMDLINE -e "s/console=ttyAMA0,[0-9]\+ //"
sed -i $CMDLINE -e "s/console=serial0,[0-9]\+ //"
2017-01-11 03:11:31 +09:00
SSTATUS=disabled
if [ "$INTERACTIVE" = True ]; then
whiptail --yesno "Would you like the serial port hardware to be enabled?" $DEFAULTH 20 60 2
RET=$?
else
RET=1
fi
if [ $RET -eq $CURRENTH ]; then
ASK_TO_REBOOT=1
fi
if [ $RET -eq 0 ]; then
set_config_var enable_uart 1 $CONFIG
HSTATUS=enabled
elif [ $RET -eq 1 ]; then
set_config_var enable_uart 0 $CONFIG
HSTATUS=disabled
else
return $RET
fi
2014-09-03 01:25:58 +09:00
else
return $RET
fi
2016-05-24 21:01:17 +09:00
if [ "$INTERACTIVE" = True ]; then
2017-01-11 03:11:31 +09:00
whiptail --msgbox "The serial login shell is $SSTATUS\nThe serial interface is $HSTATUS" 20 60 1
2016-05-24 21:01:17 +09:00
fi
2014-09-03 01:25:58 +09:00
}
2013-09-10 07:55:22 +09:00
disable_raspi_config_at_boot() {
if [ -e /etc/profile.d/raspi-config.sh ]; then
rm -f /etc/profile.d/raspi-config.sh
2017-07-14 18:21:07 +09:00
if [ -e /etc/systemd/system/getty@tty1.service.d/raspi-config-override.conf ]; then
rm /etc/systemd/system/getty@tty1.service.d/raspi-config-override.conf
2015-05-29 19:35:13 +09:00
fi
2013-09-10 07:55:22 +09:00
telinit q
fi
}
2016-05-24 01:17:37 +09:00
get_boot_cli() {
2017-02-18 00:55:35 +09:00
if systemctl get-default | grep -q multi-user ; then
2016-05-24 01:17:37 +09:00
echo 0
else
echo 1
fi
}
get_autologin() {
if [ $(get_boot_cli) -eq 0 ]; then
# booting to CLI - check the autologin in getty or initd */
2017-07-14 18:21:07 +09:00
if grep -q autologin /etc/systemd/system/getty.target.wants/getty@tty1.service ; then
echo 0
2016-05-24 01:17:37 +09:00
else
2017-07-14 18:21:07 +09:00
echo 1
2016-05-24 01:17:37 +09:00
fi
else
# booting to desktop - check the autologin for lightdm */
2017-07-14 18:21:07 +09:00
if grep -q "^autologin-user=" /etc/lightdm/lightdm.conf ; then
2016-05-24 01:17:37 +09:00
echo 0
else
echo 1
fi
fi
}
do_boot_behaviour() {
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
BOOTOPT=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Boot Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT \
"B1 Console" "Text console, requiring user to login" \
2017-07-14 18:21:07 +09:00
"B2 Console Autologin" "Text console, automatically logged in as '$SUDO_USER' user" \
2015-09-15 18:25:53 +09:00
"B3 Desktop" "Desktop GUI, requiring user to login" \
2017-07-14 18:21:07 +09:00
"B4 Desktop Autologin" "Desktop GUI, automatically logged in as '$SUDO_USER' user" \
2015-09-15 18:25:53 +09:00
3>&1 1>&2 2>&3)
else
BOOTOPT=$1
true
fi
if [ $? -eq 0 ]; then
case "$BOOTOPT" in
B1*)
2017-07-14 18:21:07 +09:00
systemctl set-default multi-user.target
ln -fs /lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@tty1.service
2015-09-15 18:25:53 +09:00
;;
B2*)
2017-07-14 18:21:07 +09:00
systemctl set-default multi-user.target
sed /etc/systemd/system/autologin@.service -i -e "s#^ExecStart=-/sbin/agetty --autologin [^[:space:]]*#ExecStart=-/sbin/agetty --autologin $SUDO_USER#"
ln -fs /etc/systemd/system/autologin@.service /etc/systemd/system/getty.target.wants/getty@tty1.service
2015-09-15 18:25:53 +09:00
;;
B3*)
if [ -e /etc/init.d/lightdm ]; then
2017-07-14 18:21:07 +09:00
systemctl set-default graphical.target
ln -fs /lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@tty1.service
2016-10-21 23:10:56 +09:00
sed /etc/lightdm/lightdm.conf -i -e "s/^autologin-user=.*/#autologin-user=/"
2015-09-15 18:25:53 +09:00
disable_raspi_config_at_boot
else
2017-07-14 18:21:07 +09:00
whiptail --msgbox "Do 'sudo apt-get install lightdm' to allow configuration of boot to desktop" 20 60 2
2015-09-15 18:25:53 +09:00
return 1
fi
;;
B4*)
if [ -e /etc/init.d/lightdm ]; then
2017-07-14 18:21:07 +09:00
systemctl set-default graphical.target
ln -fs /etc/systemd/system/autologin@.service /etc/systemd/system/getty.target.wants/getty@tty1.service
sed /etc/lightdm/lightdm.conf -i -e "s/^\(#\|\)autologin-user=.*/autologin-user=$SUDO_USER/"
disable_raspi_config_at_boot
2015-09-15 18:25:53 +09:00
else
2017-07-14 18:21:07 +09:00
whiptail --msgbox "Do 'sudo apt-get install lightdm' to allow configuration of boot to desktop" 20 60 2
2015-09-15 18:25:53 +09:00
return 1
fi
;;
*)
whiptail --msgbox "Programmer error, unrecognised boot option" 20 60 2
return 1
;;
esac
ASK_TO_REBOOT=1
fi
}
2016-05-25 21:53:55 +09:00
get_boot_wait() {
2016-05-23 22:54:26 +09:00
if test -e /etc/systemd/system/dhcpcd.service.d/wait.conf; then
echo 0
2016-05-24 01:17:37 +09:00
else
echo 1
2016-05-23 22:54:26 +09:00
fi
}
2016-05-25 21:53:55 +09:00
do_boot_wait() {
DEFAULT=--defaultno
if [ $(get_boot_wait) -eq 0 ]; then
DEFAULT=
fi
2015-10-19 20:58:20 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-25 21:53:55 +09:00
whiptail --yesno "Would you like boot to wait until a network connection is established?" $DEFAULT 20 60 2
RET=$?
2015-10-19 20:58:20 +09:00
else
RET=$1
fi
2016-05-25 21:53:55 +09:00
if [ $RET -eq 0 ]; then
mkdir -p /etc/systemd/system/dhcpcd.service.d/
cat > /etc/systemd/system/dhcpcd.service.d/wait.conf << EOF
2015-10-19 20:58:20 +09:00
[Service]
ExecStart=
2017-07-11 19:49:18 +09:00
ExecStart=/usr/lib/dhcpcd5/dhcpcd -q -w
2015-10-19 20:58:20 +09:00
EOF
2016-05-25 21:53:55 +09:00
STATUS=enabled
elif [ $RET -eq 1 ]; then
rm -f /etc/systemd/system/dhcpcd.service.d/wait.conf
STATUS=disabled
else
return $RET
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Waiting for network on boot is $STATUS" 20 60 1
2015-10-19 20:58:20 +09:00
fi
}
2016-09-29 22:21:53 +09:00
get_boot_splash() {
2017-05-18 21:24:03 +09:00
if is_pi ; then
if grep -q "splash" $CMDLINE ; then
echo 0
else
echo 1
fi
2016-09-29 22:21:53 +09:00
else
2017-05-18 21:24:03 +09:00
if grep -q "GRUB_CMDLINE_LINUX_DEFAULT.*splash" /etc/default/grub ; then
echo 0
else
echo 1
fi
2016-09-29 22:21:53 +09:00
fi
}
do_boot_splash() {
if [ ! -e /usr/share/plymouth/themes/pix/pix.script ]; then
2017-01-10 20:47:45 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "The splash screen is not installed so cannot be activated" 20 60 2
fi
2016-09-29 22:21:53 +09:00
return 1
fi
DEFAULT=--defaultno
if [ $(get_boot_splash) -eq 0 ]; then
DEFAULT=
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --yesno "Would you like to show the splash screen at boot?" $DEFAULT 20 60 2
RET=$?
else
RET=$1
fi
if [ $RET -eq 0 ]; then
2017-10-30 21:20:14 +09:00
if is_pi ; then
if ! grep -q "splash" $CMDLINE ; then
sed -i $CMDLINE -e "s/$/ quiet splash plymouth.ignore-serial-consoles/"
fi
else
sed -i /etc/default/grub -e "s/GRUB_CMDLINE_LINUX_DEFAULT=\"\(.*\)\"/GRUB_CMDLINE_LINUX_DEFAULT=\"\1 quiet splash plymouth.ignore-serial-consoles\"/"
sed -i /etc/default/grub -e "s/ \+/ /g"
sed -i /etc/default/grub -e "s/GRUB_CMDLINE_LINUX_DEFAULT=\" /GRUB_CMDLINE_LINUX_DEFAULT=\"/"
update-grub
fi
2016-09-29 22:21:53 +09:00
STATUS=enabled
elif [ $RET -eq 1 ]; then
2017-10-30 21:20:14 +09:00
if is_pi ; then
if grep -q "splash" $CMDLINE ; then
sed -i $CMDLINE -e "s/ quiet//"
sed -i $CMDLINE -e "s/ splash//"
sed -i $CMDLINE -e "s/ plymouth.ignore-serial-consoles//"
fi
else
sed -i /etc/default/grub -e "s/GRUB_CMDLINE_LINUX_DEFAULT=\"\(.*\)quiet\(.*\)\"/GRUB_CMDLINE_LINUX_DEFAULT=\"\1\2\"/"
sed -i /etc/default/grub -e "s/GRUB_CMDLINE_LINUX_DEFAULT=\"\(.*\)splash\(.*\)\"/GRUB_CMDLINE_LINUX_DEFAULT=\"\1\2\"/"
sed -i /etc/default/grub -e "s/GRUB_CMDLINE_LINUX_DEFAULT=\"\(.*\)plymouth.ignore-serial-consoles\(.*\)\"/GRUB_CMDLINE_LINUX_DEFAULT=\"\1\2\"/"
sed -i /etc/default/grub -e "s/ \+/ /g"
sed -i /etc/default/grub -e "s/GRUB_CMDLINE_LINUX_DEFAULT=\" /GRUB_CMDLINE_LINUX_DEFAULT=\"/"
update-grub
fi
2016-09-29 22:21:53 +09:00
STATUS=disabled
else
return $RET
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Splash screen at boot is $STATUS" 20 60 1
fi
}
2016-05-23 22:54:26 +09:00
get_rgpio() {
if test -e /etc/systemd/system/pigpiod.service.d/public.conf; then
echo 0
else
echo 1
fi
}
2016-05-25 21:53:55 +09:00
do_rgpio() {
2016-05-25 21:21:58 +09:00
DEFAULT=--defaultno
if [ $(get_rgpio) -eq 0 ]; then
DEFAULT=
fi
2016-04-22 00:32:24 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-25 21:21:58 +09:00
whiptail --yesno "Would you like the GPIO server to be accessible over the network?" $DEFAULT 20 60 2
RET=$?
2016-04-22 00:32:24 +09:00
else
RET=$1
fi
2016-05-25 21:21:58 +09:00
if [ $RET -eq 0 ]; then
mkdir -p /etc/systemd/system/pigpiod.service.d/
cat > /etc/systemd/system/pigpiod.service.d/public.conf << EOF
2016-04-22 01:28:02 +09:00
[Service]
ExecStart=
ExecStart=/usr/bin/pigpiod
EOF
2016-05-25 21:21:58 +09:00
STATUS=enabled
elif [ $RET -eq 1 ]; then
rm -f /etc/systemd/system/pigpiod.service.d/public.conf
STATUS=disabled
else
return $RET
fi
2017-08-11 23:35:56 +09:00
systemctl daemon-reload
if systemctl -q is-enabled pigpiod ; then
systemctl restart pigpiod
fi
2016-05-25 21:21:58 +09:00
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Remote access to the GPIO server is $STATUS" 20 60 1
2016-04-22 00:32:24 +09:00
fi
}
2016-05-24 19:37:36 +09:00
get_camera() {
CAM=$(get_config_var start_x $CONFIG)
if [ $CAM -eq 1 ]; then
echo 0
else
echo 1
2013-05-08 17:57:36 +09:00
fi
}
2013-05-23 04:11:00 +09:00
do_camera() {
2013-05-10 19:50:13 +09:00
if [ ! -e /boot/start_x.elf ]; then
whiptail --msgbox "Your firmware appears to be out of date (no start_x.elf). Please update" 20 60 2
return 1
fi
2016-05-24 21:01:17 +09:00
sed $CONFIG -i -e "s/^startx/#startx/"
sed $CONFIG -i -e "s/^fixup_file/#fixup_file/"
2016-05-24 19:37:36 +09:00
DEFAULT=--defaultno
CURRENT=0
2016-05-25 01:28:29 +09:00
if [ $(get_camera) -eq 0 ]; then
2016-05-24 19:37:36 +09:00
DEFAULT=
CURRENT=1
fi
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-24 19:37:36 +09:00
whiptail --yesno "Would you like the camera interface to be enabled?" $DEFAULT 20 60 2
2015-09-15 18:25:53 +09:00
RET=$?
else
RET=$1
fi
2016-05-24 19:37:36 +09:00
if [ $RET -eq $CURRENT ]; then
2013-05-08 17:57:36 +09:00
ASK_TO_REBOOT=1
2016-05-24 19:37:36 +09:00
fi
2016-05-24 21:01:17 +09:00
if [ $RET -eq 0 ]; then
2016-05-24 19:37:36 +09:00
set_config_var start_x 1 $CONFIG
CUR_GPU_MEM=$(get_config_var gpu_mem $CONFIG)
if [ -z "$CUR_GPU_MEM" ] || [ "$CUR_GPU_MEM" -lt 128 ]; then
set_config_var gpu_mem 128 $CONFIG
fi
2016-05-24 21:01:17 +09:00
STATUS=enabled
elif [ $RET -eq 1 ]; then
set_config_var start_x 0 $CONFIG
sed $CONFIG -i -e "s/^start_file/#start_file/"
STATUS=disabled
2013-05-08 17:57:36 +09:00
else
2016-05-24 21:01:17 +09:00
return $RET
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "The camera interface is $STATUS" 20 60 1
2013-05-08 17:57:36 +09:00
fi
}
2016-05-23 22:20:18 +09:00
get_onewire() {
2016-05-24 19:57:24 +09:00
if grep -q -E "^dtoverlay=w1-gpio" $CONFIG; then
2016-05-23 22:20:18 +09:00
echo 0
else
echo 1
fi
}
2016-03-18 22:50:30 +09:00
do_onewire() {
2016-05-23 22:20:18 +09:00
DEFAULT=--defaultno
2016-05-24 19:37:36 +09:00
CURRENT=0
2016-05-23 22:20:18 +09:00
if [ $(get_onewire) -eq 0 ]; then
DEFAULT=
2016-05-24 19:37:36 +09:00
CURRENT=1
2016-05-23 22:20:18 +09:00
fi
2016-03-18 22:50:30 +09:00
if [ "$INTERACTIVE" = True ]; then
2016-05-23 22:20:18 +09:00
whiptail --yesno "Would you like the one-wire interface to be enabled?" $DEFAULT 20 60 2
2016-03-18 22:50:30 +09:00
RET=$?
else
RET=$1
fi
2016-05-24 19:37:36 +09:00
if [ $RET -eq $CURRENT ]; then
2016-03-18 22:50:30 +09:00
ASK_TO_REBOOT=1
2016-05-24 19:37:36 +09:00
fi
if [ $RET -eq 0 ]; then
sed $CONFIG -i -e "s/^#dtoverlay=w1-gpio/dtoverlay=w1-gpio/"
if ! grep -q -E "^dtoverlay=w1-gpio" $CONFIG; then
printf "dtoverlay=w1-gpio\n" >> $CONFIG
fi
2016-05-24 21:01:17 +09:00
STATUS=enabled
2016-05-24 19:37:36 +09:00
elif [ $RET -eq 1 ]; then
sed $CONFIG -i -e "s/^dtoverlay=w1-gpio/#dtoverlay=w1-gpio/"
2016-05-24 21:01:17 +09:00
STATUS=disabled
2016-03-18 22:50:30 +09:00
else
2016-05-24 21:01:17 +09:00
return $RET
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "The one-wire interface is $STATUS" 20 60 1
2016-03-18 22:50:30 +09:00
fi
}
2016-01-19 22:52:11 +09:00
do_gldriver() {
2016-05-07 03:07:03 +09:00
if [ ! -e /boot/overlays/vc4-kms-v3d.dtbo ]; then
2016-01-19 22:52:11 +09:00
whiptail --msgbox "Driver and kernel not present on your system. Please update" 20 60 2
return 1
fi
2016-02-09 22:52:03 +09:00
if [ $(dpkg -l libgl1-mesa-dri | tail -n 1 | cut -d ' ' -f 1) != "ii" ]; then
whiptail --msgbox "libgl1-mesa-dri not found - please install" 20 60 2
return 1
fi
2017-01-18 03:02:14 +09:00
GLOPT=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "GL Driver" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT \
"G1 GL (Full KMS)" "OpenGL desktop driver with full KMS" \
"G2 GL (Fake KMS)" "OpenGL desktop driver with fake KMS" \
"G3 Legacy" "Original non-GL desktop driver" \
3>&1 1>&2 2>&3)
if [ $? -eq 0 ]; then
case "$GLOPT" in
G1*)
if ! grep -q -E "^dtoverlay=vc4-kms-v3d" $CONFIG; then
ASK_TO_REBOOT=1
fi
2017-10-30 21:20:14 +09:00
sed $CONFIG -i -e "s/^dtoverlay=vc4-fkms-v3d/#dtoverlay=vc4-fkms-v3d/"
sed $CONFIG -i -e "s/^#dtoverlay=vc4-kms-v3d/dtoverlay=vc4-kms-v3d/"
if ! grep -q -E "^dtoverlay=vc4-kms-v3d" $CONFIG; then
printf "dtoverlay=vc4-kms-v3d\n" >> $CONFIG
fi
2017-01-18 03:02:14 +09:00
STATUS="The full KMS GL driver is enabled."
;;
G2*)
if ! grep -q -E "^dtoverlay=vc4-fkms-v3d" $CONFIG; then
ASK_TO_REBOOT=1
fi
2017-10-30 21:20:14 +09:00
sed $CONFIG -i -e "s/^dtoverlay=vc4-kms-v3d/#dtoverlay=vc4-kms-v3d/"
sed $CONFIG -i -e "s/^#dtoverlay=vc4-fkms-v3d/dtoverlay=vc4-fkms-v3d/"
if ! grep -q -E "^dtoverlay=vc4-fkms-v3d" $CONFIG; then
printf "dtoverlay=vc4-fkms-v3d\n" >> $CONFIG
fi
2017-01-18 03:02:14 +09:00
STATUS="The fake KMS GL driver is enabled."
;;
G3*)
if grep -q -E "^dtoverlay=vc4-f?kms-v3d" $CONFIG; then
ASK_TO_REBOOT=1
fi
sed $CONFIG -i -e "s/^dtoverlay=vc4-kms-v3d/#dtoverlay=vc4-kms-v3d/"
sed $CONFIG -i -e "s/^dtoverlay=vc4-fkms-v3d/#dtoverlay=vc4-fkms-v3d/"
STATUS="The GL driver is disabled."
;;
*)
whiptail --msgbox "Programmer error, unrecognised boot option" 20 60 2
return 1
;;
esac
2016-01-19 22:52:11 +09:00
else
2017-01-18 03:02:14 +09:00
return 0
2016-05-25 22:22:16 +09:00
fi
2017-08-03 18:26:20 +09:00
if echo "$GLOPT" | grep -q -E "1" ; then
2017-01-18 03:02:14 +09:00
if grep -q "splash" $CMDLINE ; then
2017-10-30 21:20:14 +09:00
sed -i $CMDLINE -e "s/ quiet//"
sed -i $CMDLINE -e "s/ splash//"
sed -i $CMDLINE -e "s/ plymouth.ignore-serial-consoles//"
fi
2017-01-18 03:02:14 +09:00
sed $CONFIG -i -e "s/^gpu_mem/#gpu_mem/"
2016-01-19 22:52:11 +09:00
fi
2017-01-18 03:02:14 +09:00
whiptail --msgbox "$STATUS" 20 60 1
}
2016-01-19 22:52:11 +09:00
2017-09-26 20:41:05 +09:00
get_net_names() {
if grep -q "net.ifnames=0" $CMDLINE || [ "$(readlink -f /etc/systemd/network/99-default.link)" = "/dev/null" ] ; then
echo 1
else
echo 0
fi
}
do_net_names () {
DEFAULT=--defaultno
CURRENT=0
if [ $(get_net_names) -eq 0 ]; then
DEFAULT=
CURRENT=1
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --yesno "Would you like to enable predictable network interface names?" $DEFAULT 20 60 2
RET=$?
else
RET=$1
fi
if [ $RET -eq $CURRENT ]; then
ASK_TO_REBOOT=1
fi
if [ $RET -eq 0 ]; then
2017-10-30 21:20:14 +09:00
sed -i $CMDLINE -e "s/net.ifnames=0 *//"
rm -f /etc/systemd/network/99-default.link
2017-09-26 20:41:05 +09:00
STATUS=enabled
elif [ $RET -eq 1 ]; then
2017-10-30 21:20:14 +09:00
ln -sf /dev/null /etc/systemd/network/99-default.link
2017-09-26 20:41:05 +09:00
STATUS=disabled
else
return $RET
fi
if [ "$INTERACTIVE" = True ]; then
whiptail --msgbox "Predictable network interface names are $STATUS" 20 60 1
fi
}
2013-05-23 04:21:24 +09:00
do_update() {
2012-07-16 02:40:06 +09:00
apt-get update &&
apt-get install raspi-config &&
2012-09-17 03:47:17 +09:00
printf "Sleeping 5 seconds before reloading raspi-config\n" &&
sleep 5 &&
exec raspi-config
2012-07-16 02:40:06 +09:00
}
2013-12-17 06:29:14 +09:00
do_audio() {
2017-01-11 03:15:43 +09:00
if [ "$INTERACTIVE" = True ]; then
AUDIO_OUT=$(whiptail --menu "Choose the audio output" 20 60 10 \
"0" "Auto" \
"1" "Force 3.5mm ('headphone') jack" \
"2" "Force HDMI" \
3>&1 1>&2 2>&3)
else
AUDIO_OUT=$1
fi
2013-12-17 06:29:14 +09:00
if [ $? -eq 0 ]; then
amixer cset numid=3 "$AUDIO_OUT"
fi
}
2016-11-30 23:48:48 +09:00
do_resolution() {
if [ "$INTERACTIVE" = True ]; then
2017-10-30 21:20:14 +09:00
CMODE=$(get_config_var hdmi_mode $CONFIG)
CGROUP=$(get_config_var hdmi_group $CONFIG)
if [ $CMODE -eq 0 ] ; then
CSET="Default"
elif [ $CGROUP -eq 2 ] ; then
CSET="DMT Mode "$CMODE
else
CSET="CEA Mode "$CMODE
fi
2016-11-30 23:48:48 +09:00
oIFS="$IFS"
IFS="/"
if tvservice -d /dev/null | grep -q Nothing ; then
2016-12-01 00:06:53 +09:00
value="Default/720x480/DMT Mode 4/640x480 60Hz 4:3/DMT Mode 9/800x600 60Hz 4:3/DMT Mode 16/1024x768 60Hz 4:3/DMT Mode 85/1280x720 60Hz 16:9/DMT Mode 35/1280x1024 60Hz 5:4/DMT Mode 51/1600x1200 60Hz 4:3/DMT Mode 82/1920x1080 60Hz 16:9/"
2017-10-30 21:20:14 +09:00
else
2016-11-30 23:48:48 +09:00
value="Default/Monitor preferred resolution/"
value=$value$(tvservice -m CEA | grep progressive | cut -b 12- | sed 's/mode \([0-9]\+\): \([0-9]\+\)x\([0-9]\+\) @ \([0-9]\+\)Hz \([0-9]\+\):\([0-9]\+\), clock:[0-9]\+MHz progressive/CEA Mode \1\/\2x\3 \4Hz \5:\6/' | tr '\n' '/')
value=$value$(tvservice -m DMT | grep progressive | cut -b 12- | sed 's/mode \([0-9]\+\): \([0-9]\+\)x\([0-9]\+\) @ \([0-9]\+\)Hz \([0-9]\+\):\([0-9]\+\), clock:[0-9]\+MHz progressive/DMT Mode \1\/\2x\3 \4Hz \5:\6/' | tr '\n' '/')
2017-10-30 21:20:14 +09:00
fi
2016-11-30 23:48:48 +09:00
RES=$(whiptail --default-item $CSET --menu "Choose screen resolution" 20 60 10 ${value} 3>&1 1>&2 2>&3)
STATUS=$?
IFS=$oIFS
if [ $STATUS -eq 0 ] ; then
GRS=$(echo "$RES" | cut -d ' ' -f 1)
MODE=$(echo "$RES" | cut -d ' ' -f 3)
if [ $GRS = "Default" ] ; then
2017-10-30 21:20:14 +09:00
MODE=0
2016-11-30 23:48:48 +09:00
elif [ $GRS = "DMT" ] ; then
2017-10-30 21:20:14 +09:00
GROUP=2
else
GROUP=1
fi
fi
2016-11-30 23:48:48 +09:00
else
GROUP=$1
MODE=$2
STATUS=0
fi
if [ $STATUS -eq 0 ]; then
2017-10-30 21:20:14 +09:00
if [ $MODE -eq 0 ]; then
clear_config_var hdmi_force_hotplug $CONFIG
clear_config_var hdmi_group $CONFIG
clear_config_var hdmi_mode $CONFIG
else
set_config_var hdmi_force_hotplug 1 $CONFIG
set_config_var hdmi_group $GROUP $CONFIG
set_config_var hdmi_mode $MODE $CONFIG
fi
2016-11-30 23:48:48 +09:00
if [ "$INTERACTIVE" = True ]; then
2017-10-30 21:20:14 +09:00
if [ $MODE -eq 0 ] ; then
2016-11-30 23:48:48 +09:00
whiptail --msgbox "The resolution is set to default" 20 60 1
2017-10-30 21:20:14 +09:00
else
2016-11-30 23:48:48 +09:00
whiptail --msgbox "The resolution is set to $GRS mode $MODE" 20 60 1
fi
fi
2017-10-30 21:20:14 +09:00
if [ $MODE -eq 0 ] ; then
TSET="Default"
elif [ $GROUP -eq 2 ] ; then
TSET="DMT Mode "$MODE
else
TSET="CEA Mode "$MODE
fi
if [ "$TSET" != "$CSET" ] ; then
ASK_TO_REBOOT=1
fi
2016-11-30 23:48:48 +09:00
fi
}
2017-10-27 15:49:33 +09:00
list_wlan_interfaces() {
for dir in /sys/class/net/*/wireless; do
if [ -d "$dir" ]; then
basename "$(dirname "$dir")"
fi
done
}
do_wifi_ssid_passphrase() {
RET=0
IFACE_LIST="$(list_wlan_interfaces)"
IFACE="$(echo "$IFACE_LIST" | head -n 1)"
if [ -z "$IFACE" ]; then
whiptail --msgbox "No wireless interface found" 20 60
return 1
fi
if ! wpa_cli -i "$IFACE" status > /dev/null 2>&1; then
whiptail --msgbox "Could not communicate with wpa_supplicant" 20 60
return 1
fi
SSID=
while [ -z "$SSID" ]; do
SSID=$(whiptail --inputbox "Please enter SSID" 20 60 3>&1 1>&2 2>&3)
if [ $? -ne 0 ]; then
return 0
elif [ -z "$SSID" ]; then
whiptail --msgbox "SSID cannot be empty. Please try again." 20 60
fi
done
while true; do
PASSPHRASE=$(whiptail --passwordbox "Please enter passphrase. Leave it empty if none." 20 60 3>&1 1>&2 2>&3)
if [ $? -ne 0 ]; then
return 0
else
break
fi
done
# Escape special characters for embedding in regex below
local ssid=$(echo "$SSID" \
| sed 's;\\;\\\\;g' \
| sed -e 's;\.;\\\.;g' \
-e 's;\*;\\\*;g' \
-e 's;\+;\\\+;g' \
-e 's;\?;\\\?;g' \
-e 's;\^;\\\^;g' \
-e 's;\$;\\\$;g' \
-e 's;\/;\\\/;g' \
-e 's;\[;\\\[;g' \
-e 's;\];\\\];g' \
-e 's;{;\\{;g' \
-e 's;};\\};g' \
-e 's;(;\\(;g' \
-e 's;);\\);g' \
-e 's;";\\\\\";g')
wpa_cli -i "$IFACE" list_networks \
| tail -n +2 | cut -f -2 | grep -P "\t$ssid$" | cut -f1 \
| while read ID; do
wpa_cli -i "$IFACE" remove_network "$ID" > /dev/null 2>&1
done
ID="$(wpa_cli -i "$IFACE" add_network)"
wpa_cli -i "$IFACE" set_network "$ID" ssid "\"$SSID\"" 2>&1 | grep -q "OK"
RET=$((RET + $?))
if [ -z "$PASSPHRASE" ]; then
wpa_cli -i "$IFACE" set_network "$ID" key_mgmt NONE 2>&1 | grep -q "OK"
RET=$((RET + $?))
else
wpa_cli -i "$IFACE" set_network "$ID" psk "\"$PASSPHRASE\"" 2>&1 | grep -q "OK"
RET=$((RET + $?))
fi
if [ $RET -eq 0 ]; then
wpa_cli -i "$IFACE" enable_network "$ID" > /dev/null 2>&1
else
wpa_cli -i "$IFACE" remove_network "$ID" > /dev/null 2>&1
whiptail --msgbox "Failed to set SSID or passphrase" 20 60
fi
wpa_cli -i "$IFACE" save_config > /dev/null 2>&1
echo "$IFACE_LIST" | while read IFACE; do
wpa_cli -i "$IFACE" reconfigure > /dev/null 2>&1
done
return $RET
}
2012-06-11 05:32:01 +09:00
do_finish() {
2013-09-10 07:55:22 +09:00
disable_raspi_config_at_boot
2012-07-16 02:32:30 +09:00
if [ $ASK_TO_REBOOT -eq 1 ]; then
whiptail --yesno "Would you like to reboot now?" 20 60 2
if [ $? -eq 0 ]; then # yes
sync
reboot
fi
fi
2012-06-11 05:32:01 +09:00
exit 0
}
2013-09-10 07:55:22 +09:00
# $1 = filename, $2 = key name
get_json_string_val() {
sed -n -e "s/^[[:space:]]*\"$2\"[[:space:]]*:[[:space:]]*\"\(.*\)\"[[:space:]]*,$/\1/p" $1
}
2015-05-29 19:35:13 +09:00
# TODO: This is probably broken
2013-09-10 07:55:22 +09:00
do_apply_os_config() {
[ -e /boot/os_config.json ] || return 0
NOOBSFLAVOUR=$(get_json_string_val /boot/os_config.json flavour)
NOOBSLANGUAGE=$(get_json_string_val /boot/os_config.json language)
NOOBSKEYBOARD=$(get_json_string_val /boot/os_config.json keyboard)
if [ -n "$NOOBSFLAVOUR" ]; then
printf "Setting flavour to %s based on os_config.json from NOOBS. May take a while\n" "$NOOBSFLAVOUR"
2015-05-29 19:35:13 +09:00
printf "Unrecognised flavour. Ignoring\n"
2013-09-10 07:55:22 +09:00
fi
# TODO: currently ignores en_gb settings as we assume we are running in a
# first boot context, where UK English settings are default
case "$NOOBSLANGUAGE" in
"en")
if [ "$NOOBSKEYBOARD" = "gb" ]; then
DEBLANGUAGE="" # UK english is the default, so ignore
else
DEBLANGUAGE="en_US.UTF-8"
fi
;;
"de")
DEBLANGUAGE="de_DE.UTF-8"
;;
"fi")
DEBLANGUAGE="fi_FI.UTF-8"
;;
"fr")
DEBLANGUAGE="fr_FR.UTF-8"
;;
"hu")
DEBLANGUAGE="hu_HU.UTF-8"
;;
"ja")
DEBLANGUAGE="ja_JP.UTF-8"
;;
"nl")
DEBLANGUAGE="nl_NL.UTF-8"
;;
"pt")
DEBLANGUAGE="pt_PT.UTF-8"
;;
2013-12-17 05:31:02 +09:00
"ru")
DEBLANGUAGE="ru_RU.UTF-8"
;;
"zh_CN")
DEBLANGUAGE="zh_CN.UTF-8"
;;
2013-09-10 07:55:22 +09:00
*)
printf "Language '%s' not handled currently. Run sudo raspi-config to set up" "$NOOBSLANGUAGE"
;;
esac
if [ -n "$DEBLANGUAGE" ]; then
printf "Setting language to %s based on os_config.json from NOOBS. May take a while\n" "$DEBLANGUAGE"
cat << EOF | debconf-set-selections
2013-09-26 02:16:19 +09:00
locales locales/locales_to_be_generated multiselect $DEBLANGUAGE UTF-8
2013-09-10 07:55:22 +09:00
EOF
rm /etc/locale.gen
dpkg-reconfigure -f noninteractive locales
2013-09-26 02:16:19 +09:00
update-locale LANG="$DEBLANGUAGE"
2013-09-10 07:55:22 +09:00
cat << EOF | debconf-set-selections
2013-09-26 02:16:19 +09:00
locales locales/default_environment_locale select $DEBLANGUAGE
2013-09-10 07:55:22 +09:00
EOF
fi
if [ -n "$NOOBSKEYBOARD" -a "$NOOBSKEYBOARD" != "gb" ]; then
printf "Setting keyboard layout to %s based on os_config.json from NOOBS. May take a while\n" "$NOOBSKEYBOARD"
sed -i /etc/default/keyboard -e "s/^XKBLAYOUT.*/XKBLAYOUT=\"$NOOBSKEYBOARD\"/"
dpkg-reconfigure -f noninteractive keyboard-configuration
2017-07-12 20:38:36 +09:00
setupcon -k --force
udevadm trigger -p ID_INPUT_KEY=1
2013-09-10 07:55:22 +09:00
fi
return 0
}
2015-09-15 18:25:53 +09:00
nonint() {
$*
}
2012-08-21 05:53:15 +09:00
#
# Command line options for non-interactive use
#
for i in $*
do
case $i in
--memory-split)
OPT_MEMORY_SPLIT=GET
2012-10-29 06:14:01 +09:00
printf "Not currently supported\n"
exit 1
2012-08-21 05:53:15 +09:00
;;
--memory-split=*)
OPT_MEMORY_SPLIT=`echo $i | sed 's/[-a-zA-Z0-9]*=//'`
2012-10-29 06:14:01 +09:00
printf "Not currently supported\n"
exit 1
2012-08-21 05:53:15 +09:00
;;
2013-03-27 06:58:32 +09:00
--expand-rootfs)
INTERACTIVE=False
2013-05-23 04:11:00 +09:00
do_expand_rootfs
2013-03-27 06:58:32 +09:00
printf "Please reboot\n"
exit 0
;;
2013-09-10 07:55:22 +09:00
--apply-os-config)
INTERACTIVE=False
do_apply_os_config
exit $?
;;
2015-09-15 18:25:53 +09:00
nonint)
INTERACTIVE=False
$@
;;
2012-08-21 05:53:15 +09:00
*)
# unknown option
;;
esac
done
2012-10-29 06:14:01 +09:00
#if [ "GET" = "${OPT_MEMORY_SPLIT:-}" ]; then
# set -u # Fail on unset variables
# get_current_memory_split
# echo $CURRENT_MEMSPLIT
# exit 0
#fi
2012-08-21 05:53:15 +09:00
# Everything else needs to be run as root
if [ $(id -u) -ne 0 ]; then
printf "Script must be run as root. Try 'sudo raspi-config'\n"
exit 1
fi
if [ -n "${OPT_MEMORY_SPLIT:-}" ]; then
set -e # Fail when a command errors
set_memory_split "${OPT_MEMORY_SPLIT}"
exit 0
fi
2013-05-23 04:11:00 +09:00
do_internationalisation_menu() {
2016-11-30 23:48:48 +09:00
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Localisation Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
2013-05-23 04:17:32 +09:00
"I1 Change Locale" "Set up language and regional settings to match your location" \
"I2 Change Timezone" "Set up timezone to match your location" \
"I3 Change Keyboard Layout" "Set the keyboard layout to match your keyboard" \
2016-02-24 02:17:26 +09:00
"I4 Change Wi-fi Country" "Set the legal channels used in your country" \
2013-05-23 04:17:32 +09:00
3>&1 1>&2 2>&3)
2013-05-23 01:44:15 +09:00
RET=$?
if [ $RET -eq 1 ]; then
return 0
elif [ $RET -eq 0 ]; then
2013-05-23 04:17:32 +09:00
case "$FUN" in
I1\ *) do_change_locale ;;
I2\ *) do_change_timezone ;;
I3\ *) do_configure_keyboard ;;
2016-05-26 00:36:39 +09:00
I4\ *) do_wifi_country ;;
2013-05-23 04:17:32 +09:00
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
2013-05-23 01:44:15 +09:00
fi
2013-05-19 16:56:35 +09:00
}
2016-11-30 23:48:48 +09:00
do_interface_menu() {
2017-01-10 01:52:10 +09:00
if ! is_pi ; then
2017-10-30 21:20:14 +09:00
do_ssh
2017-01-10 01:52:10 +09:00
else
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Interfacing Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
"P1 Camera" "Enable/Disable connection to the Raspberry Pi Camera" \
"P2 SSH" "Enable/Disable remote command line access to your Pi using SSH" \
"P3 VNC" "Enable/Disable graphical remote access to your Pi using RealVNC" \
"P4 SPI" "Enable/Disable automatic loading of SPI kernel module" \
"P5 I2C" "Enable/Disable automatic loading of I2C kernel module" \
"P6 Serial" "Enable/Disable shell and kernel messages on the serial connection" \
"P7 1-Wire" "Enable/Disable one-wire interface" \
2017-08-11 23:35:56 +09:00
"P8 Remote GPIO" "Enable/Disable remote access to GPIO pins" \
2017-01-10 01:52:10 +09:00
3>&1 1>&2 2>&3)
RET=$?
if [ $RET -eq 1 ]; then
return 0
elif [ $RET -eq 0 ]; then
case "$FUN" in
P1\ *) do_camera ;;
P2\ *) do_ssh ;;
P3\ *) do_vnc ;;
P4\ *) do_spi ;;
P5\ *) do_i2c ;;
P6\ *) do_serial ;;
P7\ *) do_onewire ;;
P8\ *) do_rgpio ;;
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
fi
2016-11-30 23:48:48 +09:00
fi
}
2013-05-23 04:11:00 +09:00
do_advanced_menu() {
2013-05-23 03:37:56 +09:00
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Advanced Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
2017-01-10 01:52:10 +09:00
"A1 Expand Filesystem" "Ensures that all of the SD card storage is available to the OS" \
"A2 Overscan" "You may need to configure overscan if black bars are present on display" \
2013-05-23 04:21:24 +09:00
"A3 Memory Split" "Change the amount of memory made available to the GPU" \
2016-11-30 23:48:48 +09:00
"A4 Audio" "Force audio out through HDMI or 3.5mm jack" \
"A5 Resolution" "Set a specific screen resolution" \
"A6 GL Driver" "Enable/Disable experimental desktop GL driver" \
2013-05-23 04:21:24 +09:00
3>&1 1>&2 2>&3)
2013-05-23 01:44:15 +09:00
RET=$?
if [ $RET -eq 1 ]; then
return 0
elif [ $RET -eq 0 ]; then
2013-05-23 04:21:24 +09:00
case "$FUN" in
2017-01-10 01:52:10 +09:00
A1\ *) do_expand_rootfs ;;
A2\ *) do_overscan ;;
2013-05-23 04:21:24 +09:00
A3\ *) do_memory_split ;;
2016-11-30 23:48:48 +09:00
A4\ *) do_audio ;;
A5\ *) do_resolution ;;
A6\ *) do_gldriver ;;
2013-05-23 04:21:24 +09:00
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
2013-05-23 01:44:15 +09:00
fi
2013-05-19 16:56:35 +09:00
}
2016-09-29 22:21:53 +09:00
do_boot_menu() {
2017-01-10 23:11:21 +09:00
if is_live ; then
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Boot Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
"B1 Desktop / CLI" "Choose whether to boot into a desktop environment or the command line" \
"B2 Wait for Network at Boot" "Choose whether to wait for network connection during boot" \
3>&1 1>&2 2>&3)
else
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Boot Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
"B1 Desktop / CLI" "Choose whether to boot into a desktop environment or the command line" \
"B2 Wait for Network at Boot" "Choose whether to wait for network connection during boot" \
"B3 Splash Screen" "Choose graphical splash screen or text boot" \
3>&1 1>&2 2>&3)
fi
2016-09-29 22:21:53 +09:00
RET=$?
if [ $RET -eq 1 ]; then
return 0
elif [ $RET -eq 0 ]; then
case "$FUN" in
B1\ *) do_boot_behaviour ;;
B2\ *) do_boot_wait ;;
B3\ *) do_boot_splash ;;
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
fi
}
2013-05-19 16:56:35 +09:00
2017-10-27 15:49:33 +09:00
do_network_menu() {
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Network Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
"N1 Hostname" "Set the visible name for this Pi on a network" \
"N2 Wi-fi" "Enter SSID and passphrase" \
"N3 Network interface names" "Enable/Disable predictable network interface names" \
3>&1 1>&2 2>&3)
RET=$?
if [ $RET -eq 1 ]; then
return 0
elif [ $RET -eq 0 ]; then
case "$FUN" in
N1\ *) do_hostname ;;
N2\ *) do_wifi_ssid_passphrase ;;
N3\ *) do_net_names ;;
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
fi
}
2012-08-21 05:53:15 +09:00
#
# Interactive use loop
#
2015-09-15 18:25:53 +09:00
if [ "$INTERACTIVE" = True ]; then
2017-01-10 01:52:10 +09:00
if is_pi && ! mountpoint -q /boot; then
2016-05-24 19:57:24 +09:00
whiptail --msgbox "The boot partition is not mounted - cannot configure. Note that raspi-config is intended for use on Raspbian only and cannot be guaranteed to work on other operating systems." 20 60 1
exit 1
fi
[ -e $CONFIG ] || touch $CONFIG
2015-09-15 18:25:53 +09:00
calc_wt_size
while true; do
2017-10-30 21:20:14 +09:00
if is_pi ; then
2017-07-11 20:21:15 +09:00
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --backtitle "$(cat /proc/device-tree/model)" --menu "Setup Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Finish --ok-button Select \
2017-07-14 18:21:07 +09:00
"1 Change User Password" "Change password for the current user" \
2017-10-27 15:49:33 +09:00
"2 Network Options" "Configure network settings" \
2017-01-10 01:52:10 +09:00
"3 Boot Options" "Configure options for start-up" \
"4 Localisation Options" "Set up language and regional settings to match your location" \
"5 Interfacing Options" "Configure connections to peripherals" \
"6 Overclock" "Configure overclocking for your Pi" \
"7 Advanced Options" "Configure advanced settings" \
"8 Update" "Update this tool to the latest version" \
"9 About raspi-config" "Information about this configuration tool" \
3>&1 1>&2 2>&3)
else
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Setup Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Finish --ok-button Select \
2017-07-14 18:21:07 +09:00
"1 Change User Password" "Change password for the current user" \
2017-01-10 01:52:10 +09:00
"2 Hostname" "Set the visible name for this PC on a network" \
"3 Boot Options" "Configure options for start-up" \
"4 Localisation Options" "Set up language and regional settings to match your location" \
"5 SSH" "Enable/Disable remote command line access to your PC using SSH" \
"8 Update" "Update this tool to the latest version" \
"9 About raspi-config" "Information about this configuration tool" \
3>&1 1>&2 2>&3)
fi
2015-09-15 18:25:53 +09:00
RET=$?
if [ $RET -eq 1 ]; then
do_finish
elif [ $RET -eq 0 ]; then
case "$FUN" in
2017-01-10 01:52:10 +09:00
1\ *) do_change_pass ;;
2017-10-27 15:49:33 +09:00
2\ *) do_network_menu ;;
2016-09-29 22:21:53 +09:00
3\ *) do_boot_menu ;;
4\ *) do_internationalisation_menu ;;
2016-11-30 23:48:48 +09:00
5\ *) do_interface_menu ;;
2016-09-29 22:21:53 +09:00
6\ *) do_overclock ;;
7\ *) do_advanced_menu ;;
2017-01-10 01:52:10 +09:00
8\ *) do_update ;;
9\ *) do_about ;;
2015-09-15 18:25:53 +09:00
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
else
exit 1
fi
done
2015-09-24 05:25:39 +09:00
fi