* Get rid of some spurious error messages.

svn path=/nixos/trunk/; revision=9968
This commit is contained in:
Eelco Dolstra 2007-12-25 16:07:55 +00:00
parent b3fa4f1e4e
commit d4168a89b1
3 changed files with 12 additions and 6 deletions

View file

@ -63,9 +63,12 @@ for i in @modules@; do
modprobe $i
done
# Try to resume - all modules are loaded now
echo 0 > /sys/power/tuxonice/user_interface/enabled
echo 1 > /sys/power/tuxonice/do_resume || echo Failed to resume..;
if test -n "$(cat /sys/power/tuxonice/resume)"; then
echo 0 > /sys/power/tuxonice/user_interface/enabled
echo 1 > /sys/power/tuxonice/do_resume || echo "Failed to resume..."
fi
# Create device nodes in /dev.

View file

@ -114,7 +114,10 @@ export MODULE_DIR=@kernel@/lib/modules/
# Run any user-specified commands.
@shell@ @bootLocal@
mkswap $(cat /sys/power/tuxonice/resume) || echo 'Failed to clear saved image.'
resumeDevice="$(cat /sys/power/tuxonice/resume)"
if test -n "$resumeDevice"; then
mkswap "$resumeDevice" || echo 'Failed to clear saved image.'
fi
# Start Upstart's init. We start it through the
# /var/run/current-system symlink indirection so that we can upgrade

View file

@ -1,5 +1,7 @@
#! @bash@/bin/sh -e
shopt -s nullglob
export PATH=/empty
for i in @path@; do PATH=$PATH:$i/bin; done
@ -88,9 +90,7 @@ EOF
# Add all generations of the system profile to the menu, in reverse
# (most recent to least recent) order.
for link in $(
(ls -d $default/fine-tune/* ) \
| sort -n); do
for link in $((ls -d $default/fine-tune/* ) | sort -n); do
date=$(stat --printf="%y\n" $link | sed 's/\..*//')
addEntry "NixOS - variation" $link ""
done