diff options
author | Thomas Perrot <thomas.perrot@bootlin.com> | 2023-12-21 08:00:01 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-12-21 08:20:34 -0800 |
commit | c331f59e42e9c0bda9d47d0365e6c276746fc81d (patch) | |
tree | 9bb589f93d20df473441eb3ae39fbc7465d005dd | |
parent | a50c63e2b7d78687aae48f25eec88442c4ecddfa (diff) | |
download | meta-openembedded-c331f59e42e9c0bda9d47d0365e6c276746fc81d.tar.gz |
networkmanager: fix some missing pkgconfig
- to build and package nmtui
- to automatically append networkmanager-adsl and
networkmanager-wwan in recommended packages.
- to fix an invalid-packageconfig QA issue that is raised when
adsl and wwan are added in pkgconfig.
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb index 867d133271..1332a9dfd4 100644 --- a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb +++ b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb | |||
@@ -111,6 +111,7 @@ PACKAGECONFIG[iwd] = "-Diwd=true,-Diwd=false" | |||
111 | PACKAGECONFIG[ifupdown] = "-Difupdown=true,-Difupdown=false" | 111 | PACKAGECONFIG[ifupdown] = "-Difupdown=true,-Difupdown=false" |
112 | PACKAGECONFIG[cloud-setup] = "-Dnm_cloud_setup=true,-Dnm_cloud_setup=false" | 112 | PACKAGECONFIG[cloud-setup] = "-Dnm_cloud_setup=true,-Dnm_cloud_setup=false" |
113 | PACKAGECONFIG[nmcli] = "-Dnmcli=true,-Dnmcli=false" | 113 | PACKAGECONFIG[nmcli] = "-Dnmcli=true,-Dnmcli=false" |
114 | PACKAGECONFIG[nmtui] = "-Dnmtui=true,-Dnmtui=false,libnewt" | ||
114 | PACKAGECONFIG[readline] = "-Dreadline=libreadline,,readline" | 115 | PACKAGECONFIG[readline] = "-Dreadline=libreadline,,readline" |
115 | PACKAGECONFIG[libedit] = "-Dreadline=libedit,,libedit" | 116 | PACKAGECONFIG[libedit] = "-Dreadline=libedit,,libedit" |
116 | PACKAGECONFIG[ovs] = "-Dovs=true,-Dovs=false,jansson" | 117 | PACKAGECONFIG[ovs] = "-Dovs=true,-Dovs=false,jansson" |
@@ -120,6 +121,8 @@ PACKAGECONFIG[vala] = "-Dvapi=true,-Dvapi=false" | |||
120 | PACKAGECONFIG[dhcpcd] = "-Ddhcpcd=${base_sbindir}/dhcpcd,-Ddhcpcd=no,,dhcpcd" | 121 | PACKAGECONFIG[dhcpcd] = "-Ddhcpcd=${base_sbindir}/dhcpcd,-Ddhcpcd=no,,dhcpcd" |
121 | PACKAGECONFIG[dhclient] = "-Ddhclient=yes,-Ddhclient=no,,dhcp" | 122 | PACKAGECONFIG[dhclient] = "-Ddhclient=yes,-Ddhclient=no,,dhcp" |
122 | PACKAGECONFIG[concheck] = "-Dconcheck=true,-Dconcheck=false" | 123 | PACKAGECONFIG[concheck] = "-Dconcheck=true,-Dconcheck=false" |
124 | PACKAGECONFIG[adsl] = ",," | ||
125 | PACKAGECONFIG[wwan] = ",," | ||
123 | # The following PACKAGECONFIG is used to determine whether NM is managing /etc/resolv.conf itself or not | 126 | # The following PACKAGECONFIG is used to determine whether NM is managing /etc/resolv.conf itself or not |
124 | PACKAGECONFIG[man-resolv-conf] = ",," | 127 | PACKAGECONFIG[man-resolv-conf] = ",," |
125 | 128 | ||