├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── envimg.md ├── mkenv.md └── mkimg.md ├── requirements.txt ├── setup.py ├── tests ├── data │ ├── env.txt │ ├── imx7d-sdb.dtb │ ├── script.txt │ ├── u-boot.bin │ └── u-boot.its ├── test_cli_envimg.py ├── test_cli_mkenv.py ├── test_cli_mkimg.py ├── test_env_blob.py ├── test_env_image.py ├── test_fdt_image.py └── test_old_image.py └── uboot ├── __init__.py ├── cli_envimg.py ├── cli_mkenv.py ├── cli_mkimg.py ├── common.py ├── env_blob.py ├── env_image.py ├── fdt_image.py └── old_image.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/README.md -------------------------------------------------------------------------------- /docs/envimg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/docs/envimg.md -------------------------------------------------------------------------------- /docs/mkenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/docs/mkenv.md -------------------------------------------------------------------------------- /docs/mkimg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/docs/mkimg.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/data/env.txt -------------------------------------------------------------------------------- /tests/data/imx7d-sdb.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/data/imx7d-sdb.dtb -------------------------------------------------------------------------------- /tests/data/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/data/script.txt -------------------------------------------------------------------------------- /tests/data/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/data/u-boot.bin -------------------------------------------------------------------------------- /tests/data/u-boot.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/data/u-boot.its -------------------------------------------------------------------------------- /tests/test_cli_envimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/test_cli_envimg.py -------------------------------------------------------------------------------- /tests/test_cli_mkenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/test_cli_mkenv.py -------------------------------------------------------------------------------- /tests/test_cli_mkimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/test_cli_mkimg.py -------------------------------------------------------------------------------- /tests/test_env_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/test_env_blob.py -------------------------------------------------------------------------------- /tests/test_env_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/test_env_image.py -------------------------------------------------------------------------------- /tests/test_fdt_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/test_fdt_image.py -------------------------------------------------------------------------------- /tests/test_old_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/tests/test_old_image.py -------------------------------------------------------------------------------- /uboot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/__init__.py -------------------------------------------------------------------------------- /uboot/cli_envimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/cli_envimg.py -------------------------------------------------------------------------------- /uboot/cli_mkenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/cli_mkenv.py -------------------------------------------------------------------------------- /uboot/cli_mkimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/cli_mkimg.py -------------------------------------------------------------------------------- /uboot/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/common.py -------------------------------------------------------------------------------- /uboot/env_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/env_blob.py -------------------------------------------------------------------------------- /uboot/env_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/env_image.py -------------------------------------------------------------------------------- /uboot/fdt_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/fdt_image.py -------------------------------------------------------------------------------- /uboot/old_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molejar/pyUBoot/HEAD/uboot/old_image.py --------------------------------------------------------------------------------