├── .gitignore ├── ADNL.md ├── AML-IMAGE-FORMAT.md ├── LICENSE ├── LICENSE.GPL2 ├── LICENSE.MIT ├── MANIFEST.in ├── OPTIMUS.md ├── PROTOCOL.md ├── README.md ├── ROADMAP ├── adnl.py ├── aml_image_packer.py ├── boot-dbg.cmd ├── boot-g12.py ├── boot.cmd ├── boot.py ├── bulkcmd.py ├── chainUboot.py ├── files ├── khadas-vim │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── khadas-vim2 │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── khadas-vim3 │ └── u-boot.bin ├── khadas-vim3l │ └── u-boot.bin ├── libretech-s805x-ac │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── libretech-s905d-pc │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── libretech-s905x-cc │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── libretech-s912-pc │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── odroid-c4 │ └── u-boot.bin ├── odroid-n2 │ └── u-boot.bin ├── p212 │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── p241 │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── q200 │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── s400 │ ├── u-boot.bin.usb.bl2 │ └── u-boot.bin.usb.tpl ├── sei510 │ └── u-boot.bin ├── sei610 │ └── u-boot.bin ├── u200 │ └── u-boot.bin ├── usbbl2runpara_ddrinit.bin └── usbbl2runpara_runfipimg.bin ├── pyamlboot ├── __init__.py ├── amlimage.py ├── optimus.py ├── pyamlboot.py ├── socid.py └── usb_backend.py ├── requirements.txt ├── runKernel.py ├── setup.cfg ├── setup.py ├── socid.py └── ubt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/.gitignore -------------------------------------------------------------------------------- /ADNL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/ADNL.md -------------------------------------------------------------------------------- /AML-IMAGE-FORMAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/AML-IMAGE-FORMAT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/LICENSE.GPL2 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /OPTIMUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/OPTIMUS.md -------------------------------------------------------------------------------- /PROTOCOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/PROTOCOL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/ROADMAP -------------------------------------------------------------------------------- /adnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/adnl.py -------------------------------------------------------------------------------- /aml_image_packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/aml_image_packer.py -------------------------------------------------------------------------------- /boot-dbg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/boot-dbg.cmd -------------------------------------------------------------------------------- /boot-g12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/boot-g12.py -------------------------------------------------------------------------------- /boot.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/boot.cmd -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/boot.py -------------------------------------------------------------------------------- /bulkcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/bulkcmd.py -------------------------------------------------------------------------------- /chainUboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/chainUboot.py -------------------------------------------------------------------------------- /files/khadas-vim/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/khadas-vim/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/khadas-vim/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/khadas-vim/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/khadas-vim2/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/khadas-vim2/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/khadas-vim2/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/khadas-vim2/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/khadas-vim3/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/khadas-vim3/u-boot.bin -------------------------------------------------------------------------------- /files/khadas-vim3l/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/khadas-vim3l/u-boot.bin -------------------------------------------------------------------------------- /files/libretech-s805x-ac/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s805x-ac/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/libretech-s805x-ac/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s805x-ac/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/libretech-s905d-pc/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s905d-pc/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/libretech-s905d-pc/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s905d-pc/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/libretech-s905x-cc/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s905x-cc/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/libretech-s905x-cc/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s905x-cc/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/libretech-s912-pc/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s912-pc/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/libretech-s912-pc/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/libretech-s912-pc/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/odroid-c4/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/odroid-c4/u-boot.bin -------------------------------------------------------------------------------- /files/odroid-n2/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/odroid-n2/u-boot.bin -------------------------------------------------------------------------------- /files/p212/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/p212/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/p212/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/p212/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/p241/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/p241/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/p241/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/p241/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/q200/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/q200/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/q200/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/q200/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/s400/u-boot.bin.usb.bl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/s400/u-boot.bin.usb.bl2 -------------------------------------------------------------------------------- /files/s400/u-boot.bin.usb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/s400/u-boot.bin.usb.tpl -------------------------------------------------------------------------------- /files/sei510/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/sei510/u-boot.bin -------------------------------------------------------------------------------- /files/sei610/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/sei610/u-boot.bin -------------------------------------------------------------------------------- /files/u200/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/u200/u-boot.bin -------------------------------------------------------------------------------- /files/usbbl2runpara_ddrinit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/usbbl2runpara_ddrinit.bin -------------------------------------------------------------------------------- /files/usbbl2runpara_runfipimg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/files/usbbl2runpara_runfipimg.bin -------------------------------------------------------------------------------- /pyamlboot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyamlboot/amlimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/pyamlboot/amlimage.py -------------------------------------------------------------------------------- /pyamlboot/optimus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/pyamlboot/optimus.py -------------------------------------------------------------------------------- /pyamlboot/pyamlboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/pyamlboot/pyamlboot.py -------------------------------------------------------------------------------- /pyamlboot/socid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/pyamlboot/socid.py -------------------------------------------------------------------------------- /pyamlboot/usb_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/pyamlboot/usb_backend.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyusb 2 | setuptools 3 | -------------------------------------------------------------------------------- /runKernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/runKernel.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/setup.py -------------------------------------------------------------------------------- /socid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/socid.py -------------------------------------------------------------------------------- /ubt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/pyamlboot/HEAD/ubt.py --------------------------------------------------------------------------------