├── .github └── workflows │ └── dump.yml ├── assets ├── branding │ ├── banner.png │ └── logo.png └── sideloading │ ├── 1.1_ota_sideload.jpg │ ├── 1.2_ota_sideload.jpg │ ├── 2.1_ota_sideload.jpg │ ├── 2.2_ota_sideload.jpg │ └── 3.1_ota_sideload.jpg ├── bin ├── libbase.so ├── libbrillo-stream.so ├── libbrillo.so ├── libc++.so ├── libchrome.so ├── libcrypto-host.so ├── libcrypto_utils.so ├── libcutils.so ├── libevent-host.so ├── libext4_utils.so ├── libfec.so ├── liblog.so ├── liblz4.so ├── libpcre2.so ├── libprocessgroup.so ├── libprotobuf-cpp-lite.so ├── libselinux.so ├── libsquashfs_utils.so ├── libssl-host.so ├── libz-host.so ├── libziparchive.so └── ota_extractor ├── devices.json ├── docs ├── README.md ├── README_de-DE.md ├── README_es-ES.md ├── README_fr-FR.md ├── README_hi-IN.md ├── README_it-IT.md ├── README_ja-JP.md ├── README_ru-RU.md ├── README_tr-TR.md └── README_zh-CN.md └── scripts ├── dump.sh └── extract.bat /.github/workflows/dump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/.github/workflows/dump.yml -------------------------------------------------------------------------------- /assets/branding/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/assets/branding/banner.png -------------------------------------------------------------------------------- /assets/branding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/assets/branding/logo.png -------------------------------------------------------------------------------- /assets/sideloading/1.1_ota_sideload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/assets/sideloading/1.1_ota_sideload.jpg -------------------------------------------------------------------------------- /assets/sideloading/1.2_ota_sideload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/assets/sideloading/1.2_ota_sideload.jpg -------------------------------------------------------------------------------- /assets/sideloading/2.1_ota_sideload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/assets/sideloading/2.1_ota_sideload.jpg -------------------------------------------------------------------------------- /assets/sideloading/2.2_ota_sideload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/assets/sideloading/2.2_ota_sideload.jpg -------------------------------------------------------------------------------- /assets/sideloading/3.1_ota_sideload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/assets/sideloading/3.1_ota_sideload.jpg -------------------------------------------------------------------------------- /bin/libbase.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libbase.so -------------------------------------------------------------------------------- /bin/libbrillo-stream.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libbrillo-stream.so -------------------------------------------------------------------------------- /bin/libbrillo.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libbrillo.so -------------------------------------------------------------------------------- /bin/libc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libc++.so -------------------------------------------------------------------------------- /bin/libchrome.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libchrome.so -------------------------------------------------------------------------------- /bin/libcrypto-host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libcrypto-host.so -------------------------------------------------------------------------------- /bin/libcrypto_utils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libcrypto_utils.so -------------------------------------------------------------------------------- /bin/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libcutils.so -------------------------------------------------------------------------------- /bin/libevent-host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libevent-host.so -------------------------------------------------------------------------------- /bin/libext4_utils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libext4_utils.so -------------------------------------------------------------------------------- /bin/libfec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libfec.so -------------------------------------------------------------------------------- /bin/liblog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/liblog.so -------------------------------------------------------------------------------- /bin/liblz4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/liblz4.so -------------------------------------------------------------------------------- /bin/libpcre2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libpcre2.so -------------------------------------------------------------------------------- /bin/libprocessgroup.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libprocessgroup.so -------------------------------------------------------------------------------- /bin/libprotobuf-cpp-lite.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libprotobuf-cpp-lite.so -------------------------------------------------------------------------------- /bin/libselinux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libselinux.so -------------------------------------------------------------------------------- /bin/libsquashfs_utils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libsquashfs_utils.so -------------------------------------------------------------------------------- /bin/libssl-host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libssl-host.so -------------------------------------------------------------------------------- /bin/libz-host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libz-host.so -------------------------------------------------------------------------------- /bin/libziparchive.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/libziparchive.so -------------------------------------------------------------------------------- /bin/ota_extractor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/bin/ota_extractor -------------------------------------------------------------------------------- /devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/devices.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README_de-DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_de-DE.md -------------------------------------------------------------------------------- /docs/README_es-ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_es-ES.md -------------------------------------------------------------------------------- /docs/README_fr-FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_fr-FR.md -------------------------------------------------------------------------------- /docs/README_hi-IN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_hi-IN.md -------------------------------------------------------------------------------- /docs/README_it-IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_it-IT.md -------------------------------------------------------------------------------- /docs/README_ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_ja-JP.md -------------------------------------------------------------------------------- /docs/README_ru-RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_ru-RU.md -------------------------------------------------------------------------------- /docs/README_tr-TR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_tr-TR.md -------------------------------------------------------------------------------- /docs/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/docs/README_zh-CN.md -------------------------------------------------------------------------------- /scripts/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/scripts/dump.sh -------------------------------------------------------------------------------- /scripts/extract.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spike0en/nothing_archive/HEAD/scripts/extract.bat --------------------------------------------------------------------------------