├── .gitignore ├── LICENSE ├── README.md ├── backup-recovery.md ├── droid-src.md ├── extending-storage.md ├── flashing.md ├── hadk-sony-xz2.md ├── next-release-notes.md ├── ota-from-4.2.0.21.md ├── ota-from-alpha.md ├── ota.md ├── patches ├── apply-patches.sh ├── device │ └── sony │ │ ├── akari │ │ └── 0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch │ │ ├── akatsuki │ │ └── 0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch │ │ ├── apollo │ │ └── 0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch │ │ ├── common │ │ └── 0001-mask-on-charger-init-sections.patch │ │ └── tama │ │ └── 0001-mask-on-charger-init-sections.patch └── vendor │ └── qcom │ └── opensource │ └── audio-hal │ └── primary-hal │ └── 0001-Load-libqcomvisualizer-and-sound_trigger.primary-fro.patch ├── scripts ├── bump-config.py ├── create-images.sh ├── download_ks.py ├── get_ks.sh ├── release-image-uploader.sh ├── update-droid-hal.sh ├── update-droid-system.sh ├── update-from-devel.sh └── update-sdk.sh └── switch-from-aosp9.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/README.md -------------------------------------------------------------------------------- /backup-recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/backup-recovery.md -------------------------------------------------------------------------------- /droid-src.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/droid-src.md -------------------------------------------------------------------------------- /extending-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/extending-storage.md -------------------------------------------------------------------------------- /flashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/flashing.md -------------------------------------------------------------------------------- /hadk-sony-xz2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/hadk-sony-xz2.md -------------------------------------------------------------------------------- /next-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/next-release-notes.md -------------------------------------------------------------------------------- /ota-from-4.2.0.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/ota-from-4.2.0.21.md -------------------------------------------------------------------------------- /ota-from-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/ota-from-alpha.md -------------------------------------------------------------------------------- /ota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/ota.md -------------------------------------------------------------------------------- /patches/apply-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/patches/apply-patches.sh -------------------------------------------------------------------------------- /patches/device/sony/akari/0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/patches/device/sony/akari/0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch -------------------------------------------------------------------------------- /patches/device/sony/akatsuki/0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/patches/device/sony/akatsuki/0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch -------------------------------------------------------------------------------- /patches/device/sony/apollo/0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/patches/device/sony/apollo/0001-revert-mixer_paths-Fix-microphone-low-capture-volume.patch -------------------------------------------------------------------------------- /patches/device/sony/common/0001-mask-on-charger-init-sections.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/patches/device/sony/common/0001-mask-on-charger-init-sections.patch -------------------------------------------------------------------------------- /patches/device/sony/tama/0001-mask-on-charger-init-sections.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/patches/device/sony/tama/0001-mask-on-charger-init-sections.patch -------------------------------------------------------------------------------- /patches/vendor/qcom/opensource/audio-hal/primary-hal/0001-Load-libqcomvisualizer-and-sound_trigger.primary-fro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/patches/vendor/qcom/opensource/audio-hal/primary-hal/0001-Load-libqcomvisualizer-and-sound_trigger.primary-fro.patch -------------------------------------------------------------------------------- /scripts/bump-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/bump-config.py -------------------------------------------------------------------------------- /scripts/create-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/create-images.sh -------------------------------------------------------------------------------- /scripts/download_ks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/download_ks.py -------------------------------------------------------------------------------- /scripts/get_ks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/get_ks.sh -------------------------------------------------------------------------------- /scripts/release-image-uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/release-image-uploader.sh -------------------------------------------------------------------------------- /scripts/update-droid-hal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/update-droid-hal.sh -------------------------------------------------------------------------------- /scripts/update-droid-system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/update-droid-system.sh -------------------------------------------------------------------------------- /scripts/update-from-devel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/update-from-devel.sh -------------------------------------------------------------------------------- /scripts/update-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/scripts/update-sdk.sh -------------------------------------------------------------------------------- /switch-from-aosp9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishos-sony-tama/main/HEAD/switch-from-aosp9.md --------------------------------------------------------------------------------