bump version

This commit is contained in:
Alex Bradbury 2013-09-10 14:37:05 +01:00
parent 414eef5dcb
commit fa44ce461e
2 changed files with 9 additions and 2 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
raspi-config (20130910-1) unstable; urgency=low
* Bugfix for boot to scratch
* Bugfix for detecting flavour set by NOOBS
-- Alexander Bradbury <asb@asbradbury.org> Tue, 10 Sep 2013 14:36:14 +0100
raspi-config (20130909-1) unstable; urgency=low
* Support boot to scratch and applying language/keyboard settings from noobs

View File

@ -466,8 +466,8 @@ do_boot_behaviour() {
Scratch)
if [ -e /usr/bin/scratch ]; then
[ -e /etc/init.d/lightdm ] && update-rc.d lightdm disable 2
enable_boot_to_scratch
disable_raspi_config_at_boot
enable_boot_to_scratch
else
whiptail --msgbox "Do sudo apt-get install scratch to allow configuration of boot to scratch" 20 60 2
fi
@ -577,7 +577,7 @@ do_apply_os_config() {
if [ -n "$NOOBSFLAVOUR" ]; then
printf "Setting flavour to %s based on os_config.json from NOOBS. May take a while\n" "$NOOBSFLAVOUR"
if [ "$NOOBSFLAVOUR" = "Scratch" ]; then
if printf "%s" "$NOOBSFLAVOUR" | grep -q "Scratch"; then
disable_raspi_config_at_boot
enable_boot_to_scratch
else