Change command used to determine real filename for REAL_RESUME for Gentoo bug #269603
authorAndrew Gaffney <agaffney@gentoo.org>
Sun, 19 Jul 2009 19:41:45 +0000 (14:41 -0500)
committerAndrew Gaffney <agaffney@gentoo.org>
Sun, 19 Jul 2009 19:41:45 +0000 (14:41 -0500)
ChangeLog
defaults/initrd.scripts

index eddbd693ea400d837ecf155bd0ca069d2f0f8d99..6ad8947ce34587687e55a643e551ff7fb0e28ca4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@
 # 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:
+  Change command used to determine real filename for REAL_RESUME for Gentoo
+  bug #269603
+
   19 Jul 2009; Andrew Gaffney <agaffney@gentoo.org> arch/alpha/modules_load,
   arch/arm/modules_load, arch/ia64/modules_load, arch/mips/modules_load,
   arch/parisc/modules_load, arch/parisc64/modules_load,
index b63568df03f686ce4248870af6f051b495953c8d..66130ae33355b5ddb2526a4881c863f2bf673800 100755 (executable)
@@ -858,7 +858,7 @@ rundebugshell() {
 
 swsusp_resume() {
        # determine swap resume partition
-       local device=$(ls -Ll "${REAL_RESUME}" | sed 's/\ */ /g' | cut -d \  -f 6-7 | sed 's/,\ */:/')
+       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
 }