From 32659e5e02b6a18b5d3c0483cee744534000d6c4 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Thu, 10 Nov 2011 13:12:21 -0700 Subject: [PATCH] Add xfsdump package requirement to copy xfs file systems --- README | 2 +- src/Utils.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 3413ba3f..a38279eb 100644 --- a/README +++ b/README @@ -130,7 +130,7 @@ Optional packages include: ntfsprogs reiser4progs reiserfsprogs - xfsprogs + xfsprogs, xfsdump NOTE: * If the vol_id command is in the search PATH, it will be used to read linux-swap, reiser4, hfs, and hfs+ file system diff --git a/src/Utils.cc b/src/Utils.cc index eb07952a..21b658ee 100644 --- a/src/Utils.cc +++ b/src/Utils.cc @@ -181,7 +181,7 @@ Glib::ustring Utils::get_filesystem_software( FILESYSTEM filesystem ) case FS_REISER4 : return "reiser4progs" ; case FS_REISERFS : return "reiserfsprogs" ; case FS_UFS : return "" ; - case FS_XFS : return "xfsprogs" ; + case FS_XFS : return "xfsprogs, xfsdump" ; default : return "" ; }