From 0da9feeda0ee18f26614fff96b31e18f8bd33943 Mon Sep 17 00:00:00 2001 From: Evan Deaubl Date: Mon, 4 Jul 2022 21:37:12 +0000 Subject: [PATCH] constants.py: add oneplus-fajita device to support OP6T --- constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/constants.py b/constants.py index ea65313..c41996c 100644 --- a/constants.py +++ b/constants.py @@ -17,6 +17,7 @@ JUMPDRIVE_VERSION = '0.8' BOOT_STRATEGIES: dict[str, str] = { 'oneplus-enchilada': FASTBOOT, + 'oneplus-fajita': FASTBOOT, 'xiaomi-beryllium-ebbg': FASTBOOT, 'xiaomi-beryllium-tianma': FASTBOOT, 'bq-paella': FASTBOOT, @@ -24,6 +25,7 @@ BOOT_STRATEGIES: dict[str, str] = { DEVICES: dict[str, list[str]] = { 'oneplus-enchilada': ['device-sdm845-oneplus-enchilada'], + 'oneplus-fajita': ['device-sdm845-oneplus-fajita'], 'xiaomi-beryllium-ebbg': ['device-sdm845-xiaomi-beryllium-ebbg'], 'xiaomi-beryllium-tianma': ['device-sdm845-xiaomi-beryllium-tianma'], 'bq-paella': ['device-msm8916-bq-paella'],