mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 13:49:49 +00:00
connman: upgrade to 1.29
- Add support for Ethernet and VLAN usage; - Fixes. Added build-create-dirs-before-putting-files-in-them.patch, already submitted upstream. (From OE-Core rev: 4563788a21fb1715920cd5056b43d85c69563c32) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1f6d4cc971
commit
fd584e0ad7
+46
@@ -0,0 +1,46 @@
|
||||
When automake's dependency tracking is enabled a mirror of the source tree is
|
||||
created in the build directory as it writes the dependency information.
|
||||
|
||||
However, if dependency tracking is disabled on an out-of-tree build this mirror
|
||||
isn't created and it's possible that the .service files can't be written as the
|
||||
directories they go into haven't been created yet (racing against the compiles,
|
||||
which do create directories).
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||
|
||||
---
|
||||
Makefile.am | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index 507736d..bc3c695 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -410,9 +410,11 @@ MAINTAINERCLEANFILES = Makefile.in \
|
||||
|
||||
|
||||
src/builtin.h: src/genbuiltin $(builtin_sources)
|
||||
+ $(AM_V_AT)$(MKDIR_P) $(dir $@)
|
||||
$(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@
|
||||
|
||||
vpn/builtin.h: src/genbuiltin $(builtin_vpn_sources)
|
||||
+ $(AM_V_AT)$(MKDIR_P) $(dir $@)
|
||||
$(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_vpn_modules) > $@
|
||||
|
||||
src/connman.conf: src/connman-dbus.conf src/connman-polkit.conf
|
||||
@@ -449,9 +451,11 @@ do_subst = $(AM_V_GEN)$(SED) \
|
||||
-e 's,[@]sysconfdir[@],$(sysconfdir),g'
|
||||
|
||||
%.service: %.service.in Makefile
|
||||
+ $(AM_V_AT)$(MKDIR_P) $(dir $@)
|
||||
$(do_subst) < $< > $@
|
||||
|
||||
scripts/connman: scripts/connman.in Makefile
|
||||
+ $(AM_V_at)$(MKDIR_P) scripts
|
||||
$(do_subst) < $< > $@
|
||||
|
||||
include/connman/version.h: include/version.h
|
||||
--
|
||||
2.1.4
|
||||
|
||||
+3
-2
@@ -3,10 +3,11 @@ require connman.inc
|
||||
SRC_URI = "${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.xz \
|
||||
file://0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch \
|
||||
file://add_xuser_dbus_permission.patch \
|
||||
file://build-create-dirs-before-putting-files-in-them.patch \
|
||||
file://connman \
|
||||
"
|
||||
SRC_URI[md5sum] = "6e07c93877f80bb73c9d4dbfc697f3fc"
|
||||
SRC_URI[sha256sum] = "b1d5e7dd2652725906e220a8b0206477e97080e835272971e3b2fd10943c5c94"
|
||||
SRC_URI[md5sum] = "5283884504860f5fba2e6f489f517293"
|
||||
SRC_URI[sha256sum] = "2a5a69693566f7fd59b2e677fa89356ada6d709998aa665caef8707b1e7a8594"
|
||||
|
||||
RRECOMMENDS_${PN} = "connman-conf"
|
||||
|
||||
Reference in New Issue
Block a user