All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Enable network sanity checks for Poky derived distros
@ 2011-08-25 17:15 Joshua Lock
  2011-08-25 17:15 ` [PATCH 1/1] poky.conf: perform network sanity check by default for poky distros Joshua Lock
  0 siblings, 1 reply; 4+ messages in thread
From: Joshua Lock @ 2011-08-25 17:15 UTC (permalink / raw)
  To: yocto

With recent enhancements to the network sanity check we can now enable this
for Poky derived distributions without significant impact to the user.

The following changes since commit 6c2b7beac3cd23ed44bd3e195c6360a0932876bf:

  classes/sanity: enhance the network connectivity test (2011-08-25 08:51:30 -0700)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib josh/connection-test
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=josh/connection-test

Joshua Lock (1):
  poky.conf: perform network sanity check by default for poky distros

 meta-yocto/conf/distro/poky.conf |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

-- 
1.7.6



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

* [PATCH 1/1] poky.conf: perform network sanity check by default for poky distros
  2011-08-25 17:15 [PATCH 0/1] Enable network sanity checks for Poky derived distros Joshua Lock
@ 2011-08-25 17:15 ` Joshua Lock
  2011-08-31 19:21   ` Joshua Lock
  0 siblings, 1 reply; 4+ messages in thread
From: Joshua Lock @ 2011-08-25 17:15 UTC (permalink / raw)
  To: yocto

Add CONNECTIVITY_CHECK_URIS to run the network connectivity sanity test for
http, https and git sources.

The variable is soft-assigned so that it's easily overrideable.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
---
 meta-yocto/conf/distro/poky.conf |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
index c5fc3b9..46b22f4 100644
--- a/meta-yocto/conf/distro/poky.conf
+++ b/meta-yocto/conf/distro/poky.conf
@@ -54,5 +54,10 @@ ftp://.*/.*      http://autobuilder.yoctoproject.org/sources/ \n \
 http://.*/.*     http://autobuilder.yoctoproject.org/sources/ \n \
 https://.*/.*    http://autobuilder.yoctoproject.org/sources/ \n"
 
-
+# The CONNECTIVITY_CHECK_URI's are used to test whether we can succesfully
+# fetch from the network (and warn you if not). To disable the test set
+# the variable to be empty.
+CONNECTIVITY_CHECK_URIS ?= "git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=HEAD \
+                          https://eula-downloads.yoctoproject.org/index.php \
+                          http://bugzilla.yoctoproject.org/report.cgi"
 
-- 
1.7.6



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

* Re: [PATCH 1/1] poky.conf: perform network sanity check by default for poky distros
  2011-08-25 17:15 ` [PATCH 1/1] poky.conf: perform network sanity check by default for poky distros Joshua Lock
@ 2011-08-31 19:21   ` Joshua Lock
  2011-08-31 19:35     ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Joshua Lock @ 2011-08-31 19:21 UTC (permalink / raw)
  To: yocto

On Thu, 2011-08-25 at 10:15 -0700, Joshua Lock wrote:
> Add CONNECTIVITY_CHECK_URIS to run the network connectivity sanity test for
> http, https and git sources.
> 
> The variable is soft-assigned so that it's easily overrideable.
> 
> Signed-off-by: Joshua Lock <josh@linux.intel.com>
> ---
>  meta-yocto/conf/distro/poky.conf |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)
> 
> diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
> index c5fc3b9..46b22f4 100644
> --- a/meta-yocto/conf/distro/poky.conf
> +++ b/meta-yocto/conf/distro/poky.conf
> @@ -54,5 +54,10 @@ ftp://.*/.*      http://autobuilder.yoctoproject.org/sources/ \n \
>  http://.*/.*     http://autobuilder.yoctoproject.org/sources/ \n \
>  https://.*/.*    http://autobuilder.yoctoproject.org/sources/ \n"
>  
> -
> +# The CONNECTIVITY_CHECK_URI's are used to test whether we can succesfully
> +# fetch from the network (and warn you if not). To disable the test set
> +# the variable to be empty.
> +CONNECTIVITY_CHECK_URIS ?= "git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=HEAD \
> +                          https://eula-downloads.yoctoproject.org/index.php \
> +                          http://bugzilla.yoctoproject.org/report.cgi"
>  

Any feedback on this patch?

Cheers,
Joshua
-- 
Joshua Lock
        Yocto Project "Johannes factotum"
        Intel Open Source Technology Centre



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

* Re: [PATCH 1/1] poky.conf: perform network sanity check by default for poky distros
  2011-08-31 19:21   ` Joshua Lock
@ 2011-08-31 19:35     ` Richard Purdie
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-08-31 19:35 UTC (permalink / raw)
  To: Joshua Lock; +Cc: yocto

On Wed, 2011-08-31 at 12:21 -0700, Joshua Lock wrote:
> On Thu, 2011-08-25 at 10:15 -0700, Joshua Lock wrote:
> > Add CONNECTIVITY_CHECK_URIS to run the network connectivity sanity test for
> > http, https and git sources.
> > 
> > The variable is soft-assigned so that it's easily overrideable.
> > 
> > Signed-off-by: Joshua Lock <josh@linux.intel.com>
> > ---
> >  meta-yocto/conf/distro/poky.conf |    7 ++++++-
> >  1 files changed, 6 insertions(+), 1 deletions(-)
> > 
> > diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
> > index c5fc3b9..46b22f4 100644
> > --- a/meta-yocto/conf/distro/poky.conf
> > +++ b/meta-yocto/conf/distro/poky.conf
> > @@ -54,5 +54,10 @@ ftp://.*/.*      http://autobuilder.yoctoproject.org/sources/ \n \
> >  http://.*/.*     http://autobuilder.yoctoproject.org/sources/ \n \
> >  https://.*/.*    http://autobuilder.yoctoproject.org/sources/ \n"
> >  
> > -
> > +# The CONNECTIVITY_CHECK_URI's are used to test whether we can succesfully
> > +# fetch from the network (and warn you if not). To disable the test set
> > +# the variable to be empty.
> > +CONNECTIVITY_CHECK_URIS ?= "git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=HEAD \
> > +                          https://eula-downloads.yoctoproject.org/index.php \
> > +                          http://bugzilla.yoctoproject.org/report.cgi"
> >  
> 
> Any feedback on this patch?

Merged to master, thanks.

(it had slipped out the queue somehow, sorry)

Richard 



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

end of thread, other threads:[~2011-08-31 19:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-25 17:15 [PATCH 0/1] Enable network sanity checks for Poky derived distros Joshua Lock
2011-08-25 17:15 ` [PATCH 1/1] poky.conf: perform network sanity check by default for poky distros Joshua Lock
2011-08-31 19:21   ` Joshua Lock
2011-08-31 19:35     ` Richard Purdie

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.