This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- How to disassemble kernel | |
Disassemble uncompressed kernel image binary by arm-linux-androideabi-objdump command in ndk | |
arm-linux-androideabi-objdump --disassemble-all -b binary -m arm --adjust-vma=0xc0008000 kernel.Image > kernel.dasm | |
-- How to get address for variable ptmx_fops | |
ptmx_fops is used in function unix98_pty_init. | |
unix98_pty_init() | |
{ |