back out previous commit
authorAndrew Gaffney <agaffney@gentoo.org>
Sun, 19 Jul 2009 22:10:59 +0000 (17:10 -0500)
committerAndrew Gaffney <agaffney@gentoo.org>
Sun, 19 Jul 2009 22:10:59 +0000 (17:10 -0500)
ChangeLog
defaults/initrd.scripts

index ff3c107218d874a94cea30f65b04042bd6080495..6ad8947ce34587687e55a643e551ff7fb0e28ca4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,9 +2,6 @@
 # Copyright 1999-2009 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS)
 # Distributed under the GPL v2
 
-  19 Jul 2009; Andrew Gaffney <agaffney@gentoo.org> defaults/initrd.scripts:
-  Alternative solution for Gentoo bug #269603
-
   19 Jul 2009; Andrew Gaffney <agaffney@gentoo.org> defaults/initrd.scripts:
   Change command used to determine real filename for REAL_RESUME for Gentoo
   bug #269603
index 1f9372e43bc42c7d65d01f094d29b8a10dfe9550..66130ae33355b5ddb2526a4881c863f2bf673800 100755 (executable)
@@ -858,7 +858,7 @@ rundebugshell() {
 
 swsusp_resume() {
        # determine swap resume partition
-       local device=$(get_real_filename "${REAL_RESUME}")
+       local device=$(ls -lL "${REAL_RESUME}" | sed 's/\  */ /g' | cut -d \  -f 5-6 | sed 's/,\ */:/')
        [ -f /sys/power/resume ] && echo "${device}" > /sys/power/resume
        return 0
 }
@@ -987,13 +987,3 @@ setup_unionfs() {
                USE_UNIONFS_NORMAL=0
        fi
 }
-
-get_real_filename() {
-       local file=$1
-
-       if [ -L "${file}" ]; then
-               readlink ${file}
-       elif [ -f "${file}" ]; then
-               echo "${file}"
-       fi
-}