diff options
author | Bolan Wang <bolan.wang@fibocom.com> | 2024-06-12 17:16:01 +0800 |
---|---|---|
committer | Aleksander Morgado <aleksandermj@chromium.org> | 2024-07-31 20:13:28 +0000 |
commit | 388e8ea538f9a6b7984cd34b3f66f11a37bf1b25 (patch) | |
tree | fc6eb0a49614a69d083759dbc09bb85a1ff75e99 /meson.build | |
parent | 7312c861300ebccd7aa2a6ab89b787b834b0412a (diff) |
plugin,mtk: Add load_unlock_retries
This patch add load_unlock_retries support by AT in mtk-based Fibocom
modem.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 5a5028d5..f69298b3 100644 --- a/meson.build +++ b/meson.build @@ -306,6 +306,7 @@ plugins_shared_reqs = { 'fibocom': true, 'foxconn': enable_mbim, 'icera': true, + 'mtk': true, 'novatel': true, 'option': true, 'sierra': true, @@ -314,7 +315,7 @@ plugins_shared_reqs = { } dell_shared_reqs = ['novatel', 'sierra', 'telit', 'xmm'] -mtk_shared_reqs = [] +mtk_shared_reqs = ['mtk'] if enable_mbim dell_shared_reqs += ['foxconn'] # only the MBIM implementation in MTK needs the shared fibocom utils @@ -340,7 +341,7 @@ plugins_options_reqs = { 'longcheer': {'available': true, 'shared': []}, 'mbm': {'available': true, 'shared': []}, 'motorola': {'available': true, 'shared': []}, - 'mtk-legacy': {'available': true, 'shared': []}, + 'mtk-legacy': {'available': true, 'shared': mtk_shared_reqs}, 'mtk': {'available': true, 'shared': mtk_shared_reqs}, 'nokia': {'available': true, 'shared': []}, 'nokia-icera': {'available': true, 'shared': ['icera']}, |