Revert "package/network-manager: add optional nmcli support"

This reverts commit 5238f51fc8.
It was wrongly pushed to master during a stabilisation preiod.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Yann E. MORIN 2022-08-21 17:23:55 +02:00
parent 5238f51fc8
commit 525913b24b
2 changed files with 2 additions and 8 deletions

View File

@ -33,13 +33,6 @@ config BR2_PACKAGE_NETWORK_MANAGER_TUI
help
This option enables terminal based UI
config BR2_PACKAGE_NETWORK_MANAGER_CLI
bool "nmcli support"
select BR2_PACKAGE_READLINE
help
This option enables support for the NetworkManager Command
Line Interface
config BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER
bool "modem-manager support"
select BR2_PACKAGE_MODEM_MANAGER
@ -57,6 +50,7 @@ config BR2_PACKAGE_NETWORK_MANAGER_OVS
select BR2_PACKAGE_JANSSON
help
This option enables support for OpenVSwitch
endif
comment "NetworkManager needs udev /dev management and a glibc toolchain w/ headers >= 4.6, dynamic library, wchar, threads, gcc >= 4.9"

View File

@ -142,7 +142,7 @@ else
NETWORK_MANAGER_CONF_OPTS += --disable-polkit
endif
ifeq ($(BR2_PACKAGE_NETWORK_MANAGER_CLI),y)
ifeq ($(BR2_PACKAGE_READLINE),y)
NETWORK_MANAGER_DEPENDENCIES += readline
NETWORK_MANAGER_CONF_OPTS += --with-nmcli
else