All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] connman: disable 'alg-test' building
       [not found] <cover.1324121806.git.otavio@ossystems.com.br>
@ 2011-12-17 11:36 ` Otavio Salvador
  2011-12-19 12:16   ` Richard Purdie
  2011-12-21  3:21   ` Darren Hart
  0 siblings, 2 replies; 6+ messages in thread
From: Otavio Salvador @ 2011-12-17 11:36 UTC (permalink / raw)
  To: openembedded-core

'alg-test' requires 'linux/if_alg.h' header enforcing a dependency on
linux-libc-headers 2.6.39 or newer.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 meta/recipes-connectivity/connman/connman.inc      |    8 ---
 .../connman/connman/disable_alg-test.patch         |   46 ++++++++++++++++++++
 meta/recipes-connectivity/connman/connman_0.78.bb  |    3 +-
 3 files changed, 48 insertions(+), 9 deletions(-)
 create mode 100644 meta/recipes-connectivity/connman/connman/disable_alg-test.patch

diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc
index bb1b279..d1bf7cd 100644
--- a/meta/recipes-connectivity/connman/connman.inc
+++ b/meta/recipes-connectivity/connman/connman.inc
@@ -49,14 +49,6 @@ USERADD_PARAM_${PN} = "--system --no-create-home \
 
 inherit autotools pkgconfig update-rc.d useradd
 
-# alg-test doesn't build, so disable that and test
-# for if_alg.h as this header is only in 2.6.39
-do_configure_prepend() {
-	sed -i 's:tools/alg-test ::g' Makefile.am
-	sed -i 's:AC_CHECK_HEADERS(linux/if_alg.h, dummy=yes,::g;
-	        s:AC_MSG_ERROR(User-space algorithm header files are required))::g' configure.ac
-}
-
 do_compile_append() {
 	sed -i -e s:deny:allow:g src/connman-dbus.conf
 }
diff --git a/meta/recipes-connectivity/connman/connman/disable_alg-test.patch b/meta/recipes-connectivity/connman/connman/disable_alg-test.patch
new file mode 100644
index 0000000..c231d75
--- /dev/null
+++ b/meta/recipes-connectivity/connman/connman/disable_alg-test.patch
@@ -0,0 +1,46 @@
+From b9a20c8eb61b600ced284646a1bea588fdd8a5ea Mon Sep 17 00:00:00 2001
+From: Otavio Salvador <otavio@ossystems.com.br>
+Date: Fri, 16 Dec 2011 19:31:59 -0200
+Subject: [PATCH] Disable building of alg-test
+
+alg-test utility depends on linux/if_alg.h header that is only
+available on kernels >= 2.6.39.
+
+Upstream Status: Inappropriate [configuration]
+
+Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
+---
+ Makefile.am  |    2 +-
+ configure.ac |    3 ---
+ 2 files changed, 1 insertions(+), 4 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index d5a76f9..d42a766 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -144,7 +144,7 @@ noinst_PROGRAMS += tools/wispr tools/supplicant-test \
+ 			tools/dbus-test tools/polkit-test \
+ 			tools/iptables-test tools/tap-test tools/wpad-test \
+ 			tools/stats-tool tools/private-network-test \
+-			tools/alg-test unit/test-session
++			unit/test-session
+ 
+ tools_wispr_SOURCES = $(gweb_sources) tools/wispr.c
+ tools_wispr_LDADD = @GLIB_LIBS@ @GNUTLS_LIBS@ -lresolv
+diff --git a/configure.ac b/configure.ac
+index f63fea8..67bfe85 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -437,9 +437,6 @@ if (test "${enable_tools}" = "yes"); then
+ 				AC_MSG_ERROR(GnuTLS library is required))
+ 	AC_SUBST(GNUTLS_CFLAGS)
+ 	AC_SUBST(GNUTLS_LIBS)
+-
+-	AC_CHECK_HEADERS(linux/if_alg.h, dummy=yes,
+-		AC_MSG_ERROR(User-space algorithm header files are required))
+ fi
+ AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")
+ 
+-- 
+1.7.7.3
+
diff --git a/meta/recipes-connectivity/connman/connman_0.78.bb b/meta/recipes-connectivity/connman/connman_0.78.bb
index 74c102b..c73cad9 100644
--- a/meta/recipes-connectivity/connman/connman_0.78.bb
+++ b/meta/recipes-connectivity/connman/connman_0.78.bb
@@ -1,11 +1,12 @@
 require connman.inc
 
-PR = "r5"
+PR = "r6"
 
 # 0.78 tag
 SRCREV = "02f5d5fe2d7c71514a6387ba2b772b42d8e8d297"
 SRC_URI  = "git://git.kernel.org/pub/scm/network/connman/connman.git \
             file://add_xuser_dbus_permission.patch \
             file://ethernet_default.patch \
+            file://disable_alg-test.patch \
             file://connman"
 S = "${WORKDIR}/git"
-- 
1.7.2.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] connman: disable 'alg-test' building
  2011-12-17 11:36 ` [PATCH 1/1] connman: disable 'alg-test' building Otavio Salvador
@ 2011-12-19 12:16   ` Richard Purdie
  2011-12-21  3:21   ` Darren Hart
  1 sibling, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2011-12-19 12:16 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Sat, 2011-12-17 at 11:36 +0000, Otavio Salvador wrote:
> 'alg-test' requires 'linux/if_alg.h' header enforcing a dependency on
> linux-libc-headers 2.6.39 or newer.
> 
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
>  meta/recipes-connectivity/connman/connman.inc      |    8 ---
>  .../connman/connman/disable_alg-test.patch         |   46 ++++++++++++++++++++
>  meta/recipes-connectivity/connman/connman_0.78.bb  |    3 +-
>  3 files changed, 48 insertions(+), 9 deletions(-)
>  create mode 100644 meta/recipes-connectivity/connman/connman/disable_alg-test.patch

Merged to master, thanks.

Richard




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] connman: disable 'alg-test' building
  2011-12-17 11:36 ` [PATCH 1/1] connman: disable 'alg-test' building Otavio Salvador
  2011-12-19 12:16   ` Richard Purdie
@ 2011-12-21  3:21   ` Darren Hart
  2011-12-21  3:28     ` Otavio Salvador
  1 sibling, 1 reply; 6+ messages in thread
From: Darren Hart @ 2011-12-21  3:21 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

I just refreshed poky master with this patch included and now see the
following building core-image-sato:

| checking for dbus_connection_can_send_type in -ldbus-1... yes
| checking for XTABLES... yes
| checking for GNUTLS... yes
| checking linux/if_alg.h usability... no
| checking linux/if_alg.h presence... no
| checking for linux/if_alg.h... no
| configure: error: User-space algorithm header files are required
| ERROR: oe_runconf failed
NOTE: package connman-0.78-r6: task do_configure: Failed

Reverting this patch allows the build to complete.

(I understand this is poky related and not oe-core, but as the context
for this patch is here, I opted to continue the discussion here.)

--
Darren

On 12/17/2011 03:36 AM, Otavio Salvador wrote:
> 'alg-test' requires 'linux/if_alg.h' header enforcing a dependency on
> linux-libc-headers 2.6.39 or newer.
> 
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
>  meta/recipes-connectivity/connman/connman.inc      |    8 ---
>  .../connman/connman/disable_alg-test.patch         |   46 ++++++++++++++++++++
>  meta/recipes-connectivity/connman/connman_0.78.bb  |    3 +-
>  3 files changed, 48 insertions(+), 9 deletions(-)
>  create mode 100644 meta/recipes-connectivity/connman/connman/disable_alg-test.patch
> 
> diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc
> index bb1b279..d1bf7cd 100644
> --- a/meta/recipes-connectivity/connman/connman.inc
> +++ b/meta/recipes-connectivity/connman/connman.inc
> @@ -49,14 +49,6 @@ USERADD_PARAM_${PN} = "--system --no-create-home \
>  
>  inherit autotools pkgconfig update-rc.d useradd
>  
> -# alg-test doesn't build, so disable that and test
> -# for if_alg.h as this header is only in 2.6.39
> -do_configure_prepend() {
> -	sed -i 's:tools/alg-test ::g' Makefile.am
> -	sed -i 's:AC_CHECK_HEADERS(linux/if_alg.h, dummy=yes,::g;
> -	        s:AC_MSG_ERROR(User-space algorithm header files are required))::g' configure.ac
> -}
> -
>  do_compile_append() {
>  	sed -i -e s:deny:allow:g src/connman-dbus.conf
>  }
> diff --git a/meta/recipes-connectivity/connman/connman/disable_alg-test.patch b/meta/recipes-connectivity/connman/connman/disable_alg-test.patch
> new file mode 100644
> index 0000000..c231d75
> --- /dev/null
> +++ b/meta/recipes-connectivity/connman/connman/disable_alg-test.patch
> @@ -0,0 +1,46 @@
> +From b9a20c8eb61b600ced284646a1bea588fdd8a5ea Mon Sep 17 00:00:00 2001
> +From: Otavio Salvador <otavio@ossystems.com.br>
> +Date: Fri, 16 Dec 2011 19:31:59 -0200
> +Subject: [PATCH] Disable building of alg-test
> +
> +alg-test utility depends on linux/if_alg.h header that is only
> +available on kernels >= 2.6.39.
> +
> +Upstream Status: Inappropriate [configuration]
> +
> +Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> +---
> + Makefile.am  |    2 +-
> + configure.ac |    3 ---
> + 2 files changed, 1 insertions(+), 4 deletions(-)
> +
> +diff --git a/Makefile.am b/Makefile.am
> +index d5a76f9..d42a766 100644
> +--- a/Makefile.am
> ++++ b/Makefile.am
> +@@ -144,7 +144,7 @@ noinst_PROGRAMS += tools/wispr tools/supplicant-test \
> + 			tools/dbus-test tools/polkit-test \
> + 			tools/iptables-test tools/tap-test tools/wpad-test \
> + 			tools/stats-tool tools/private-network-test \
> +-			tools/alg-test unit/test-session
> ++			unit/test-session
> + 
> + tools_wispr_SOURCES = $(gweb_sources) tools/wispr.c
> + tools_wispr_LDADD = @GLIB_LIBS@ @GNUTLS_LIBS@ -lresolv
> +diff --git a/configure.ac b/configure.ac
> +index f63fea8..67bfe85 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -437,9 +437,6 @@ if (test "${enable_tools}" = "yes"); then
> + 				AC_MSG_ERROR(GnuTLS library is required))
> + 	AC_SUBST(GNUTLS_CFLAGS)
> + 	AC_SUBST(GNUTLS_LIBS)
> +-
> +-	AC_CHECK_HEADERS(linux/if_alg.h, dummy=yes,
> +-		AC_MSG_ERROR(User-space algorithm header files are required))
> + fi
> + AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")
> + 
> +-- 
> +1.7.7.3
> +
> diff --git a/meta/recipes-connectivity/connman/connman_0.78.bb b/meta/recipes-connectivity/connman/connman_0.78.bb
> index 74c102b..c73cad9 100644
> --- a/meta/recipes-connectivity/connman/connman_0.78.bb
> +++ b/meta/recipes-connectivity/connman/connman_0.78.bb
> @@ -1,11 +1,12 @@
>  require connman.inc
>  
> -PR = "r5"
> +PR = "r6"
>  
>  # 0.78 tag
>  SRCREV = "02f5d5fe2d7c71514a6387ba2b772b42d8e8d297"
>  SRC_URI  = "git://git.kernel.org/pub/scm/network/connman/connman.git \
>              file://add_xuser_dbus_permission.patch \
>              file://ethernet_default.patch \
> +            file://disable_alg-test.patch \
>              file://connman"
>  S = "${WORKDIR}/git"

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] connman: disable 'alg-test' building
  2011-12-21  3:21   ` Darren Hart
@ 2011-12-21  3:28     ` Otavio Salvador
  2011-12-21  3:40       ` Darren Hart
  0 siblings, 1 reply; 6+ messages in thread
From: Otavio Salvador @ 2011-12-21  3:28 UTC (permalink / raw)
  To: Darren Hart; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 521 bytes --]

On Wed, Dec 21, 2011 at 01:21, Darren Hart <dvhart@linux.intel.com> wrote:

> (I understand this is poky related and not oe-core, but as the context
> for this patch is here, I opted to continue the discussion here.)
>

It seems you haven't applied the patch as it shows the message that the
patch clearly remove.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

[-- Attachment #2: Type: text/html, Size: 976 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] connman: disable 'alg-test' building
  2011-12-21  3:28     ` Otavio Salvador
@ 2011-12-21  3:40       ` Darren Hart
  2011-12-21  3:56         ` Otavio Salvador
  0 siblings, 1 reply; 6+ messages in thread
From: Darren Hart @ 2011-12-21  3:40 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer



On 12/20/2011 07:28 PM, Otavio Salvador wrote:
> On Wed, Dec 21, 2011 at 01:21, Darren Hart <dvhart@linux.intel.com
> <mailto:dvhart@linux.intel.com>> wrote:
> 
>     (I understand this is poky related and not oe-core, but as the context
>     for this patch is here, I opted to continue the discussion here.)
> 
> 
> It seems you haven't applied the patch as it shows the message that the
> patch clearly remove.

I did have the commit in my source tree, but something didn't trigger as
a cleanall and rebuild of connman succeeded. The tree was a clean
master, perhaps my sstate had a previous PR=r6 from our earlier testing
or something like that. Strange.

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] connman: disable 'alg-test' building
  2011-12-21  3:40       ` Darren Hart
@ 2011-12-21  3:56         ` Otavio Salvador
  0 siblings, 0 replies; 6+ messages in thread
From: Otavio Salvador @ 2011-12-21  3:56 UTC (permalink / raw)
  To: Darren Hart; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 1013 bytes --]

On Wed, Dec 21, 2011 at 01:40, Darren Hart <dvhart@linux.intel.com> wrote:
>
> On 12/20/2011 07:28 PM, Otavio Salvador wrote:
> > On Wed, Dec 21, 2011 at 01:21, Darren Hart <dvhart@linux.intel.com
> > <mailto:dvhart@linux.intel.com>> wrote:
> >
> >     (I understand this is poky related and not oe-core, but as the
> context
> >     for this patch is here, I opted to continue the discussion here.)
> >
> >
> > It seems you haven't applied the patch as it shows the message that the
> > patch clearly remove.
>
> I did have the commit in my source tree, but something didn't trigger as
> a cleanall and rebuild of connman succeeded. The tree was a clean
> master, perhaps my sstate had a previous PR=r6 from our earlier testing
> or something like that. Strange.


Ufa! EYOUOUGHTGETCOFFEE :P

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

[-- Attachment #2: Type: text/html, Size: 1663 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-12-21  4:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <cover.1324121806.git.otavio@ossystems.com.br>
2011-12-17 11:36 ` [PATCH 1/1] connman: disable 'alg-test' building Otavio Salvador
2011-12-19 12:16   ` Richard Purdie
2011-12-21  3:21   ` Darren Hart
2011-12-21  3:28     ` Otavio Salvador
2011-12-21  3:40       ` Darren Hart
2011-12-21  3:56         ` Otavio Salvador

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.