diff options
author | Vincent Palatin <vpalatin@chromium.org> | 2021-03-03 10:36:01 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-12 08:43:15 +0000 |
commit | ac8e799acccb1958ab5578575f54fc8bd56db13f (patch) | |
tree | 0bed5cb00c7557d64399ae40e3265ec6838787cc /build-aux | |
parent | d4538d1f2fd1f5ccc538fe6c65f81ababc6a4afb (diff) |
wds: add 'APN Type' mask in profile settings
Read the APN Type mask when getting profile settings
and display it in qmicli.
This can be used later to filter APN in the list of APNs
(MBIM as a similar 'ContextType')
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/qmi-codegen/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/qmi-codegen/utils.py b/build-aux/qmi-codegen/utils.py index 1f1ed78..59fb68b 100644 --- a/build-aux/qmi-codegen/utils.py +++ b/build-aux/qmi-codegen/utils.py @@ -77,8 +77,8 @@ def add_header_start(f, output_name, service): if service == 'CTL': template += ( "#include \"qmi-enums-private.h\"\n") - # DMS, NAS, LOC and DSD have flags64 - if service in ('DMS', 'NAS', 'LOC', 'DSD'): + # DMS, NAS, LOC, DSD and WDS have flags64 + if service in ('DMS', 'NAS', 'LOC', 'DSD', 'WDS'): template += ( "#include \"qmi-flags64-${service}.h\"\n") template += ( |