├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── configure_qemu.sh ├── image ├── filesystem-error.png └── jetson-os-flash-setting.png └── launch_container.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | jetpack_home 2 | sdkmanager_* 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/README.md -------------------------------------------------------------------------------- /configure_qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/configure_qemu.sh -------------------------------------------------------------------------------- /image/filesystem-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/image/filesystem-error.png -------------------------------------------------------------------------------- /image/jetson-os-flash-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/image/jetson-os-flash-setting.png -------------------------------------------------------------------------------- /launch_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinfinity/sdk_manager_docker/HEAD/launch_container.sh --------------------------------------------------------------------------------