├── .github └── ISSUE_TEMPLATE │ └── testing.md ├── .gitignore ├── Android.bp ├── Android.mk ├── README.md ├── barbet └── config.json ├── blueline └── config.json ├── bonito └── config.json ├── bramble └── config.json ├── coral └── config.json ├── crosshatch └── config.json ├── execute-all.sh ├── flame └── config.json ├── hostTools ├── Darwin │ └── bin │ │ ├── dexrepair │ │ ├── jq │ │ └── simg2img ├── Java │ ├── baksmali.jar │ ├── oat2dex.jar │ └── smali.jar └── Linux │ └── bin │ ├── dexrepair │ ├── jq │ └── simg2img ├── redfin └── config.json ├── rro_overlays └── CarrierConfigOverlay │ ├── Android.bp │ └── AndroidManifest.xml ├── sargo └── config.json ├── scripts ├── carriersettings-extractor │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── carriersettings.proto │ ├── carriersettings_extractor.py │ ├── carriersettings_pb2.py │ ├── download_carrier_list.sh │ └── vendor │ │ ├── carrierId.proto │ │ └── carrierId_pb2.py ├── common.sh ├── constants.sh ├── download-nexus-image.sh ├── extract-factory-images.sh ├── extract-ota.sh ├── extract_android_ota_payload │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── extract_android_ota_payload.py │ ├── requirements.txt │ ├── update_metadata.proto │ └── update_metadata_pb2.py ├── gen-prop-blobs-list.sh ├── generate-vendor.sh ├── realpath.sh └── system-img-repair.sh ├── sunfish └── config.json ├── taimen └── config.json └── walleye └── config.json /.github/ISSUE_TEMPLATE/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/.github/ISSUE_TEMPLATE/testing.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace { 2 | } 3 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/README.md -------------------------------------------------------------------------------- /barbet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/barbet/config.json -------------------------------------------------------------------------------- /blueline/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/blueline/config.json -------------------------------------------------------------------------------- /bonito/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/bonito/config.json -------------------------------------------------------------------------------- /bramble/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/bramble/config.json -------------------------------------------------------------------------------- /coral/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/coral/config.json -------------------------------------------------------------------------------- /crosshatch/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/crosshatch/config.json -------------------------------------------------------------------------------- /execute-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/execute-all.sh -------------------------------------------------------------------------------- /flame/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/flame/config.json -------------------------------------------------------------------------------- /hostTools/Darwin/bin/dexrepair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Darwin/bin/dexrepair -------------------------------------------------------------------------------- /hostTools/Darwin/bin/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Darwin/bin/jq -------------------------------------------------------------------------------- /hostTools/Darwin/bin/simg2img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Darwin/bin/simg2img -------------------------------------------------------------------------------- /hostTools/Java/baksmali.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Java/baksmali.jar -------------------------------------------------------------------------------- /hostTools/Java/oat2dex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Java/oat2dex.jar -------------------------------------------------------------------------------- /hostTools/Java/smali.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Java/smali.jar -------------------------------------------------------------------------------- /hostTools/Linux/bin/dexrepair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Linux/bin/dexrepair -------------------------------------------------------------------------------- /hostTools/Linux/bin/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Linux/bin/jq -------------------------------------------------------------------------------- /hostTools/Linux/bin/simg2img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/hostTools/Linux/bin/simg2img -------------------------------------------------------------------------------- /redfin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/redfin/config.json -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/rro_overlays/CarrierConfigOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/rro_overlays/CarrierConfigOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /sargo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/sargo/config.json -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/.gitignore -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/Makefile -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/README.md -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/carriersettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/carriersettings.proto -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/carriersettings_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/carriersettings_extractor.py -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/carriersettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/carriersettings_pb2.py -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/download_carrier_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/download_carrier_list.sh -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/vendor/carrierId.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/vendor/carrierId.proto -------------------------------------------------------------------------------- /scripts/carriersettings-extractor/vendor/carrierId_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/carriersettings-extractor/vendor/carrierId_pb2.py -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/constants.sh -------------------------------------------------------------------------------- /scripts/download-nexus-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/download-nexus-image.sh -------------------------------------------------------------------------------- /scripts/extract-factory-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/extract-factory-images.sh -------------------------------------------------------------------------------- /scripts/extract-ota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/extract-ota.sh -------------------------------------------------------------------------------- /scripts/extract_android_ota_payload/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /scripts/extract_android_ota_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/extract_android_ota_payload/Makefile -------------------------------------------------------------------------------- /scripts/extract_android_ota_payload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/extract_android_ota_payload/README.md -------------------------------------------------------------------------------- /scripts/extract_android_ota_payload/extract_android_ota_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/extract_android_ota_payload/extract_android_ota_payload.py -------------------------------------------------------------------------------- /scripts/extract_android_ota_payload/requirements.txt: -------------------------------------------------------------------------------- 1 | protobuf>=3.6.0 2 | -------------------------------------------------------------------------------- /scripts/extract_android_ota_payload/update_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/extract_android_ota_payload/update_metadata.proto -------------------------------------------------------------------------------- /scripts/extract_android_ota_payload/update_metadata_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/extract_android_ota_payload/update_metadata_pb2.py -------------------------------------------------------------------------------- /scripts/gen-prop-blobs-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/gen-prop-blobs-list.sh -------------------------------------------------------------------------------- /scripts/generate-vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/generate-vendor.sh -------------------------------------------------------------------------------- /scripts/realpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/realpath.sh -------------------------------------------------------------------------------- /scripts/system-img-repair.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/scripts/system-img-repair.sh -------------------------------------------------------------------------------- /sunfish/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/sunfish/config.json -------------------------------------------------------------------------------- /taimen/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/taimen/config.json -------------------------------------------------------------------------------- /walleye/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPAlliance/android-prepare-vendor/HEAD/walleye/config.json --------------------------------------------------------------------------------