├── .gitignore ├── LICENSE ├── README.md ├── device-db-functions.sh ├── device-db.sh ├── firmware-util.sh ├── firmware.sh ├── functions.sh ├── identify_missing_firmware.py ├── setup-kodi.sh ├── sources.sh ├── sync_db_to_json.py └── update_db_from_recovery.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/README.md -------------------------------------------------------------------------------- /device-db-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/device-db-functions.sh -------------------------------------------------------------------------------- /device-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/device-db.sh -------------------------------------------------------------------------------- /firmware-util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/firmware-util.sh -------------------------------------------------------------------------------- /firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/firmware.sh -------------------------------------------------------------------------------- /functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/functions.sh -------------------------------------------------------------------------------- /identify_missing_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/identify_missing_firmware.py -------------------------------------------------------------------------------- /setup-kodi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/setup-kodi.sh -------------------------------------------------------------------------------- /sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/sources.sh -------------------------------------------------------------------------------- /sync_db_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/sync_db_to_json.py -------------------------------------------------------------------------------- /update_db_from_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrChromebox/scripts/HEAD/update_db_from_recovery.py --------------------------------------------------------------------------------