diff options
author | Christopher Tate <ctate@google.com> | 2011-06-02 15:08:13 -0700 |
---|---|---|
committer | Christopher Tate <ctate@google.com> | 2011-06-07 12:16:27 -0700 |
commit | b0628bfd5aac480a0d412ac96b8af1d97ac01c30 (patch) | |
tree | 1b7854cfc31f7f25ec1879e1d83192ed2b7f5244 /services/java/com/android/server/SystemBackupAgent.java | |
parent | 5c54f4b3cb6d0e402a0db122f741b488ef95792c (diff) | |
download | frameworks_base-b0628bfd5aac480a0d412ac96b8af1d97ac01c30.zip frameworks_base-b0628bfd5aac480a0d412ac96b8af1d97ac01c30.tar.gz frameworks_base-b0628bfd5aac480a0d412ac96b8af1d97ac01c30.tar.bz2 |
Implement shared-storage full backup/restore
Every available shared-storage volume is backed up, tagged with its
ordinal in the set of mounted shared volumes. This is an approximation
of "internal + the external card". This lets us restore things to the
same volume [or "equivalent" volume, in the case of a cross-model
restore] as they originated on.
Also fixed a bug in the handling of files/dirs with spaces in
their names.
Change-Id: I380019da8d0bb5b3699bd7c11eeff621a88e78c3
Diffstat (limited to 'services/java/com/android/server/SystemBackupAgent.java')
-rw-r--r-- | services/java/com/android/server/SystemBackupAgent.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/SystemBackupAgent.java b/services/java/com/android/server/SystemBackupAgent.java index 99c8af6..08c6699 100644 --- a/services/java/com/android/server/SystemBackupAgent.java +++ b/services/java/com/android/server/SystemBackupAgent.java @@ -138,7 +138,7 @@ public class SystemBackupAgent extends BackupAgentHelper { if (outFile == null) { Slog.w(TAG, "Skipping unrecognized system file: [ " + domain + " : " + path + " ]"); } - FullBackup.restoreToFile(data, size, type, mode, mtime, outFile); + FullBackup.restoreToFile(data, size, type, mode, mtime, outFile, true); if (restoredWallpaper) { WallpaperManagerService wallpaper = |