Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Unified Diff: tools/relocation_packer/README.TXT

Issue 407093003: Switch from ELF CPU-specific to OS-specific DT_ tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to master Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/relocation_packer/README.TXT
diff --git a/tools/relocation_packer/README.TXT b/tools/relocation_packer/README.TXT
index a81170abc0ca1ed7c8fbd1ed78e1dec5204a9d0a..6beb5a97edf364d12054f008a26d8436f902e921 100644
--- a/tools/relocation_packer/README.TXT
+++ b/tools/relocation_packer/README.TXT
@@ -31,9 +31,9 @@ Unpacking on the device requires the explicit support of an extended crazy
linker. Adds the following new .dynamic tags, used by the crazy linker to
find the packed .android.rel.dyn section data:
- DT_ANDROID_ARM_REL_OFFSET = DT_LOPROC (Processor specific: 0x70000000)
+ DT_ANDROID_REL_OFFSET = DT_LOOS (Operating System specific: 0x6000000d)
- The offset of .android.rel.dyn data in libchrome.<version>.so
- DT_ANDROID_ARM_REL_SIZE = DT_LOPROC + 1 (Processor Specific: 0x70000001)
+ DT_ANDROID_REL_SIZE = DT_LOOS + 1 (Operating System Specific: 0x6000000e)
- The size of .android.rel.dyn data in bytes
The format of .android.rel.dyn data is:
« no previous file with comments | « third_party/android_crazy_linker/src/src/crazy_linker_shared_library.cpp ('k') | tools/relocation_packer/src/elf_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698