diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2016-01-29 23:37:37 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2016-01-30 05:53:48 +0100 |
commit | 9ee045a21c661dc38696b8425419cbbc32d8e85c (patch) | |
tree | 8e3bbf83de028c5da291c93dd7c4fa1e18bbf073 /scripts/README | |
parent | Remove execute permissions from source files (diff) | |
download | android_bootable_recovery-9ee045a21c661dc38696b8425419cbbc32d8e85c.tar android_bootable_recovery-9ee045a21c661dc38696b8425419cbbc32d8e85c.tar.gz android_bootable_recovery-9ee045a21c661dc38696b8425419cbbc32d8e85c.tar.bz2 android_bootable_recovery-9ee045a21c661dc38696b8425419cbbc32d8e85c.tar.lz android_bootable_recovery-9ee045a21c661dc38696b8425419cbbc32d8e85c.tar.xz android_bootable_recovery-9ee045a21c661dc38696b8425419cbbc32d8e85c.tar.zst android_bootable_recovery-9ee045a21c661dc38696b8425419cbbc32d8e85c.zip |
Diffstat (limited to '')
-rw-r--r-- | scripts/README | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/README b/scripts/README new file mode 100644 index 000000000..ff8b36621 --- /dev/null +++ b/scripts/README @@ -0,0 +1,27 @@ +relink-binaries.sh + +Intended to "relink" or change the linker path for a linked binary. Normally +linked binaries are looking for the linker in /system/bin/linker (or +/system/bin/linker64 for 64 bit devices). In recovery, we want to avoid +mounting or using anything /system to allow us to install different +ROMs or firmware. This script will run various sed commands to update the +path to the linker to /sbin/linker64 or /sbin/linker which is sometimes +needed especially for qseecomd (decrypt) or in some cases with user space +touch screen binaries. Usage: + +./relink-binaries.sh filename + +The script will leave the existing file untouched and make a new file +named filename-1-mod + + + +compare_xml.py + +Intended to compare two different language xml files to determine if any +strings do not match up between the two files. Sometimes we add or rename +or misspell string names. This script will help identify the discrepancies. +Usage: + +python compare_xml.py -o target.xml + |