mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 03:31:05 +08:00

* libqmi: bump to 1.28.8 Signed-off-by: Nicholas Smith <nicholas@nbembedded.com> * libqmi: switch to autorelease Signed-off-by: Nicholas Smith <nicholas@nbembedded.com> * libqmi: bump to 1.30.2 Signed-off-by: Kuan-Yi Li <kyli@abysm.org> * libqmi: fix missing CONFIG_ prefix Signed-off-by: Florian Eckert <fe@dev.tdt.de> * libqmi: bump to 1.30.4 Signed-off-by: Kuan-Yi Li <kyli@abysm.org> * libqmi: remove unknown configure option The configure option --enable-more-warnings is not recognized by configure. Buildlog: configure: WARNING: unrecognized options: --disable-nls, --enable-more-warnings Therefore this configure option is removed with this commit. Signed-off-by: Florian Eckert <fe@dev.tdt.de> * libqmi: switch to meson build tools Using https://gitlab.freedesktop.org/mobile-broadband/libqmi.git to download the source code. Enabled lto and additional gcc flags for perfomance and less size. Added support for selecting qmi message collection. Selected basic qmi message collection by default (modemmanager requires it). Modified to use meson as upstream has abandoned autotools. Removed BUILD_PARALLEL options. These are default with ninja/meson. Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com> * libqmi: polish Makefile PKG_VERSION replaced by PKG_SOURCE_VERSION. Simplify for collection selection. Removed unneeded python3/host dep. Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com> * libqmi: bump to 1.30.6 Signed-off-by: Aleksander Morgado <aleksander@aleksander.es> Co-authored-by: Nicholas Smith <nicholas@nbembedded.com> Co-authored-by: Kuan-Yi Li <kyli@abysm.org> Co-authored-by: Florian Eckert <fe@dev.tdt.de> Co-authored-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com> Co-authored-by: Aleksander Morgado <aleksander@aleksander.es>
32 lines
595 B
Plaintext
32 lines
595 B
Plaintext
menu "Configuration"
|
|
depends on PACKAGE_libqmi
|
|
|
|
config LIBQMI_WITH_MBIM_QMUX
|
|
bool "Include MBIM QMUX service support"
|
|
default y
|
|
help
|
|
Compile libqmi with QMI-over-MBIM support
|
|
|
|
config LIBQMI_WITH_QRTR_GLIB
|
|
bool "Include QRTR support"
|
|
default y
|
|
help
|
|
Compile libqmi with QRTR support
|
|
|
|
choice
|
|
prompt "Select QMI message collection to build"
|
|
default LIBQMI_COLLECTION_BASIC
|
|
|
|
config LIBQMI_COLLECTION_MINIMAL
|
|
depends on !MODEMMANAGER_WITH_QMI
|
|
bool "minimal"
|
|
|
|
config LIBQMI_COLLECTION_BASIC
|
|
bool "basic (default)"
|
|
|
|
config LIBQMI_COLLECTION_FULL
|
|
bool "full"
|
|
endchoice
|
|
|
|
endmenu
|