diff options
author | Jan Janssen <medhefgo@web.de> | 2013-10-31 17:22:03 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-11-07 01:23:55 -0500 |
commit | 0c6f1f4ea4980ff719979d36f10bd6ea3e464c02 (patch) | |
tree | cb829fbd1ad7ce03d693dd20691a9c4f311004d3 /src | |
parent | f49e8bc4722aa581f655f81b87608709b6bcda38 (diff) |
Make hibernation test work for swap files
Suspend to disk works for swap files too (even if it is located
on an ecrypted file system):
https://www.kernel.org/doc/Documentation/power/swsusp-and-swap-files.txt
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/sleep-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/sleep-config.c b/src/shared/sleep-config.c index d068bfce3c..2bb0493812 100644 --- a/src/shared/sleep-config.c +++ b/src/shared/sleep-config.c @@ -206,7 +206,7 @@ static int hibernation_partition_size(size_t *size, size_t *used) { if (!d) return -ENOMEM; - if (!streq(type, "partition")) { + if (!streq(type, "partition") && !streq(type, "file")) { log_debug("Partition %s has type %s, ignoring.", d, type); continue; } |