Skip to content

Commit

Permalink
Merging casper 1.128.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-baumann committed Apr 4, 2008
1 parent 47661c5 commit ae390c1
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
2 changes: 1 addition & 1 deletion debian/control
Expand Up @@ -13,7 +13,7 @@ XS-Upstream-Depends: git-core
Package: live-initramfs
Architecture: all
Depends: ${misc:Depends}, busybox, file, initramfs-tools, sudo, udev, user-setup
Recommends: eject, wget
Recommends: eject, uuid-runtime, wget
Suggests: genext2fs, squashfs-tools, mtd-tools
Description: Debian Live initramfs hook
live-initramfs is a hook for the initramfs-tools, used to generate a initramfs
Expand Down
21 changes: 21 additions & 0 deletions docs/ChangeLog.casper
@@ -1,3 +1,24 @@
casper (1.128) hardy; urgency=low

[ Luke Yelavich ]
* scripts/casper-bottom/30accessibility &
ubiquity-hooks/30accessibility:
- Update gconf keys to ensure onboard actually gets loaded.
- Change ownership of created orca settings files to the user.
- Add extra bits to make orca settings actually work.

[ Evan Dandrea ]
* Add mode=755 to the tmpfs mount that becomes / in the unionfs mount
so that / in the live filesystem does not end up with 777 permissions
(LP: #206030).

[ Colin Watson ]
* Make scripts/casper-bottom/38disable_restricted_manager executable
again.
* Depend on uuid-runtime for uuidgen.

-- Colin Watson <cjwatson@ubuntu.com> Mon, 31 Mar 2008 18:11:55 +0100

casper (1.127) hardy; urgency=low

* Leave spawning the noninteractive ubiquity frontend to its initscript.
Expand Down
12 changes: 8 additions & 4 deletions scripts/live-bottom/30accessibility
Expand Up @@ -67,8 +67,10 @@ case ${ACCESS} in
if type orca > /dev/null 2>&1
then
mkdir -p /root/home/${USERNAME}/.orca
echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/orca-customizations.py
echo "orca.settings.enableMagnifier = True" >> /root/home/${USERNAME}/.orca/orca-customizations.py
echo "import orca.settings" >> /root/home/${USERNAME}/.orca/user-settings.py
echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/user-settings.py
echo "orca.settings.enableMagnifier = True" >> /root/home/${USERNAME}/.orca/user-settings.py
chroot /root chown -R ${USERNAME}:${USERNAME} /home/${USERNAME}/.orca
fi
;;

Expand All @@ -92,8 +94,10 @@ case ${ACCESS} in
if type orca > /dev/null 2>&1
then
mkdir -p /root/home/${USERNAME}/.orca
echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/orca-customizations.py
echo "orca.settings.enableBraille = True" >> /root/home/${USERNAME}/.orca/orca-customizations.py
echo "import orca.settings" >> /root/home/${USERNAME}/.orca/user-settings.py
echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/user-settings.py
echo "orca.settings.enableBraille = True" >> /root/home/${USERNAME}/.orca/user-settings.py
chroot /root chown -R ${USERNAME}:${USERNAME} /home/${USERNAME}/.orca
fi
;;

Expand Down

0 comments on commit ae390c1

Please sign in to comment.