├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── flash_jetson_external_storage.sh ├── get_jetson_files.sh ├── install_dependencies.sh └── install_jetson_default_packages.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/README.md -------------------------------------------------------------------------------- /flash_jetson_external_storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/flash_jetson_external_storage.sh -------------------------------------------------------------------------------- /get_jetson_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/get_jetson_files.sh -------------------------------------------------------------------------------- /install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/install_dependencies.sh -------------------------------------------------------------------------------- /install_jetson_default_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/bootFromExternalStorage/HEAD/install_jetson_default_packages.sh --------------------------------------------------------------------------------