diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/raspi-config b/raspi-config index 931cf23..390bb5e 100755 --- a/raspi-config +++ b/raspi-config @@ -3,13 +3,14 @@ # # See LICENSE file for copyright and license details +INTERACTIVE=True ASK_TO_REBOOT=0 do_info() { whiptail --msgbox "\ -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 +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 you have heavily customised your installation.\ " 20 70 1 } @@ -18,7 +19,7 @@ do_expand_rootfs() { # Get the starting offset of the root partition PART_START=$(parted /dev/mmcblk0 -ms unit s p | grep "^2" | cut -f 2 -d:) [ "$PART_START" ] || return 1 - # Return value will likely be error for fdisk as it fails to reload the + # Return value will likely be error for fdisk as it fails to reload the # partition table because the root fs is mounted fdisk /dev/mmcblk0 <