Skip to content

Commit

Permalink
Merging casper 1.231.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-baumann committed May 11, 2010
1 parent 388641f commit 003d0ac
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
2 changes: 1 addition & 1 deletion debian/live-initramfs.init
Expand Up @@ -137,7 +137,7 @@ do_stop ()
prompt=
fi

for path in $(which halt) $(which reboot) /etc/rc?.d /etc/default $(which stty)
for path in $(which halt) $(which reboot) /etc/rc?.d /etc/default $(which stty) /bin/plymouth /sbin/usplash_write
do
cache_path "${path}"
done
Expand Down
19 changes: 19 additions & 0 deletions docs/ChangeLog.casper
@@ -1,3 +1,22 @@
casper (1.231) lucid; urgency=low

[ Jonathan Riddell ]
* Remove 37kubuntu_netbook_installer_link, now done with a patch in
kdebase-workspace

[ Colin Watson ]
* If copying live media to RAM or disk, explicitly copy .disk, since *
won't expand to include it (LP: #526305).
* Cache /bin/plymouth and /sbin/usplash_write before ejecting the CD, in
the hope that that helps with I/O errors on reboot (see LP #539027).

[ Luke Yelavich ]
* ubiquity-hooks/30accessibility: Copy the orca settings directory to the
gdm home directory, to allow for preferred orca settings to be used in
gdm (LP: #551515).

-- Luke Yelavich <themuso@ubuntu.com> Fri, 09 Apr 2010 14:00:51 +1000

casper (1.230) lucid; urgency=low

* Don't save the hardware clock on live CD reboot; we used to do this in
Expand Down
6 changes: 5 additions & 1 deletion scripts/live
Expand Up @@ -759,7 +759,11 @@ copy_live_to ()
rsync -a --progress ${copyfrom}/* ${copyto} 1>/dev/console # "cp -a" from busybox also copies hidden files
else
mkdir -p ${copyto}/${LIVE_MEDIA_PATH}
cp -a ${copyfrom}/${LIVE_MEDIA_PATH}/* ${copyto}/${LIVE_MEDIA_PATH} # "cp -a" from busybox also copies hidden files
cp -a ${copyfrom}/${LIVE_MEDIA_PATH}/* ${copyto}/${LIVE_MEDIA_PATH}
if [ -e ${copyfrom}/${LIVE_MEDIA_PATH}/.disk ]
then
cp -a ${copyfrom}/${LIVE_MEDIA_PATH}/.disk ${copyto}
fi
fi
fi

Expand Down

0 comments on commit 003d0ac

Please sign in to comment.