- #!/sbin/sh
- #
- # /system/addon.d/90-xposed.sh
- # During an upgrade, this script backs up /system/bin/app_process,
- # /system is formatted and reinstalled, then the file is restored.
- #
- . /tmp/backuptool.functions
- list_files() {
- cat <<EOF
- bin/app_process
- EOF
- }
- case "$1" in
- backup)
- list_files | while read FILE DUMMY; do
- backup_file $S/"$FILE"
- done
- ;;
- restore)
- list_files | while read FILE REPLACEMENT; do
- R=""
- [ -n "$REPLACEMENT" ] && R="$S/$REPLACEMENT"
- [ -f "$C/$S/$FILE" ] && restore_file $S/"$FILE" "$R"
- done
- ;;
- pre-backup)
- # Stub
- ;;
- post-backup)
- # Stub
- ;;
- pre-restore)
- cp -p $S/bin/app_process $S/bin/app_process.orig
- ;;
- post-restore)
- # Stub
- ;;
- esac
Xposed Framework Backup Script
Posted by Anonymous on Thu 26th Jun 2014 12:37
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.