Android eMMC Booting Contents [hide] 1 eMMC binaries 1.1 Creating the GPT table 1.2 Modifying .IMG Files 1.3 TI Android build setup [edit]eMMC binaries This is the efi partition table as exists on the emmc Sector# Size Name 256 128K xloader 512 256K…
#!/bin/sh # # ti processor sdk linux am335x evm /bin/setup-host-check.sh hacking # 说明: # 本文主要对TI的sdk中的setup-host-check.sh脚本进行解读,是为了了解 # 其工作机制. # # -- 深圳 南山平山村 曾剑锋 # This distribution contains contributions or derivatives under copyright # as follows:…
#!/bin/bash # # ti processor sdk linux am335x evm /bin/unshallow-repositories.sh hacking # 说明: # 本文主要对TI的sdk中的unshallow-repositories.sh脚本进行解读,是为了了解 # 其工作机制. # # -- 深圳 南山平山村 曾剑锋 # Authors: # Franklin Cooper Jr. # This distribution contains contributio…
#!/bin/sh # # ti processor sdk linux am335x evm /bin/setup-targetfs-nfs.sh hacking # 说明: # 本文主要对TI的sdk中的setup-targetfs-nfs.sh脚本进行解读,是为了了解 # 其工作机制. # # -- 深圳 南山平山村 曾剑锋 # This distribution contains contributions or derivatives under copyright # as foll…
Android开发过程中在sh,py,mk文件中添加log信息的方法 在sh文件中: echo "this is a log info" + $info 在py文件中: print ("this is a log info ",info) 在mk文件中 $(warning warning:'this is a log info')…