All of lore.kernel.org
 help / color / mirror / Atom feed
* Manually fetching files (and disabling the sanity-checker)
@ 2012-07-18 23:50 Tim Bird
  2012-07-19  0:22 ` Saul Wold
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Tim Bird @ 2012-07-18 23:50 UTC (permalink / raw)
  To: yocto@yoctoproject.org

Hi all,

I've given up trying to work around Sony's firewall.  After repeated attempts
I still can't get any 'git:'-based URLS to work through the firewall.

I vaguely recall the last time I worked on this (about 5.0 timeframe) there
was a mirror where tarballs could be downloaded, if the git fetch didn't work.

Is this mirror still available?  If not, is there any way to disable
the sanity-checker, and have bitbake tell me what repositories it's
looking for, so I can manually construct a local mirror for yoctoproject
to work off of?

Is there any way to extract the tarballs from a build appliance image?

Any advice or pointers would be appreciated.

 -- Tim

=============================
Tim Bird
Architecture Group Chair, CE Workgroup of the Linux Foundation
Senior Staff Engineer, Sony Network Entertainment
=============================




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

* Re: Manually fetching files (and disabling the sanity-checker)
  2012-07-18 23:50 Manually fetching files (and disabling the sanity-checker) Tim Bird
@ 2012-07-19  0:22 ` Saul Wold
  2012-08-03 17:06   ` Tim Bird
  2012-07-19  0:24 ` Michael Halstead
  2012-07-19  4:54 ` McClintock Matthew-B29882
  2 siblings, 1 reply; 6+ messages in thread
From: Saul Wold @ 2012-07-19  0:22 UTC (permalink / raw)
  To: Tim Bird; +Cc: yocto@yoctoproject.org

On 07/18/2012 04:50 PM, Tim Bird wrote:
> Hi all,
>
> I've given up trying to work around Sony's firewall.  After repeated attempts
> I still can't get any 'git:'-based URLS to work through the firewall.
>
> I vaguely recall the last time I worked on this (about 5.0 timeframe) there
> was a mirror where tarballs could be downloaded, if the git fetch didn't work.
>
> Is this mirror still available?  If not, is there any way to disable
> the sanity-checker, and have bitbake tell me what repositories it's
> looking for, so I can manually construct a local mirror for yoctoproject
> to work off of?
>
To disable the sanity check you can set CONNECTIVITY_CHECK_URIS to "" 
and that will cause it to be skipped.

Regarding the mirroring, have you tried to just set the PREMIRRORS to 
use only http* and ftp in your local.conf:
PREMIRRORS = "\
ftp://.*/.*      http://downloads.yoctoproject.org/mirror/sources/ \n \
http://.*/.*     http://downloads.yoctoproject.org/mirror/sources/ \n \
https://.*/.*    http://downloads.yoctoproject.org/mirror/sources/ \n"

I am not sure, but this might force protocols. You could try a "bitbake 
-c fetchall universe"

I am going have Michael H. get you the information about where the the 
Downloads are.

Let me know how it goes.


Sau!


> Is there any way to extract the tarballs from a build appliance image?
>
> Any advice or pointers would be appreciated.
>
>   -- Tim
>
> =============================
> Tim Bird
> Architecture Group Chair, CE Workgroup of the Linux Foundation
> Senior Staff Engineer, Sony Network Entertainment
> =============================
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
>



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

* Re: Manually fetching files (and disabling the sanity-checker)
  2012-07-18 23:50 Manually fetching files (and disabling the sanity-checker) Tim Bird
  2012-07-19  0:22 ` Saul Wold
@ 2012-07-19  0:24 ` Michael Halstead
  2012-07-19  4:54 ` McClintock Matthew-B29882
  2 siblings, 0 replies; 6+ messages in thread
From: Michael Halstead @ 2012-07-19  0:24 UTC (permalink / raw)
  To: yocto

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

On 07/18/2012 04:50 PM, Tim Bird wrote:
> Hi all,
>
> I've given up trying to work around Sony's firewall.  After repeated attempts
> I still can't get any 'git:'-based URLS to work through the firewall.
>
> I vaguely recall the last time I worked on this (about 5.0 timeframe) there
> was a mirror where tarballs could be downloaded, if the git fetch didn't work.
Sources the autobuilder uses are made available via http at
http://downloads.yoctoproject.org/mirror/sources/ and can be used as a
premirror.

The directions in the following post should help you with set up,
https://lists.yoctoproject.org/pipermail/yocto/2012-May/008966.html

Michael Halstead
Yocto Project / Sys Admin


> Is this mirror still available?  If not, is there any way to disable
> the sanity-checker, and have bitbake tell me what repositories it's
> looking for, so I can manually construct a local mirror for yoctoproject
> to work off of?
>
> Is there any way to extract the tarballs from a build appliance image?
>
> Any advice or pointers would be appreciated.
>
>  -- Tim
>
> =============================
> Tim Bird
> Architecture Group Chair, CE Workgroup of the Linux Foundation
> Senior Staff Engineer, Sony Network Entertainment
> =============================
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>




[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4516 bytes --]

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

* Re: Manually fetching files (and disabling the sanity-checker)
  2012-07-18 23:50 Manually fetching files (and disabling the sanity-checker) Tim Bird
  2012-07-19  0:22 ` Saul Wold
  2012-07-19  0:24 ` Michael Halstead
@ 2012-07-19  4:54 ` McClintock Matthew-B29882
  2 siblings, 0 replies; 6+ messages in thread
From: McClintock Matthew-B29882 @ 2012-07-19  4:54 UTC (permalink / raw)
  To: Tim Bird; +Cc: yocto@yoctoproject.org

On Wed, Jul 18, 2012 at 6:50 PM, Tim Bird <tim.bird@am.sony.com> wrote:
> Hi all,
>
> I've given up trying to work around Sony's firewall.  After repeated attempts
> I still can't get any 'git:'-based URLS to work through the firewall.
>
> I vaguely recall the last time I worked on this (about 5.0 timeframe) there
> was a mirror where tarballs could be downloaded, if the git fetch didn't work.
>
> Is this mirror still available?  If not, is there any way to disable
> the sanity-checker, and have bitbake tell me what repositories it's
> looking for, so I can manually construct a local mirror for yoctoproject
> to work off of?
>
> Is there any way to extract the tarballs from a build appliance image?
>
> Any advice or pointers would be appreciated.

Another less fun option is to create a siteconfig of some sort and
start overriding git SRC_URI...

SRC_URI_pn-linux-yocto = "proto://some/internal/mirror/you/setup.git"

This might be useful for stuff that's not yet mirrored on yp.org

-M


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

* Re: Manually fetching files (and disabling the sanity-checker)
  2012-07-19  0:22 ` Saul Wold
@ 2012-08-03 17:06   ` Tim Bird
  2012-08-03 17:15     ` Stewart, David C
  0 siblings, 1 reply; 6+ messages in thread
From: Tim Bird @ 2012-08-03 17:06 UTC (permalink / raw)
  To: Saul Wold; +Cc: yocto@yoctoproject.org

On 07/18/2012 05:22 PM, Saul Wold wrote:
> On 07/18/2012 04:50 PM, Tim Bird wrote:
>> Hi all,
>>
>> I've given up trying to work around Sony's firewall.  After repeated attempts
>> I still can't get any 'git:'-based URLS to work through the firewall.
>>
>> I vaguely recall the last time I worked on this (about 5.0 timeframe) there
>> was a mirror where tarballs could be downloaded, if the git fetch didn't work.
>>
>> Is this mirror still available?  If not, is there any way to disable
>> the sanity-checker, and have bitbake tell me what repositories it's
>> looking for, so I can manually construct a local mirror for yoctoproject
>> to work off of?
>>
> To disable the sanity check you can set CONNECTIVITY_CHECK_URIS to "" 
> and that will cause it to be skipped.
> 
> Regarding the mirroring, have you tried to just set the PREMIRRORS to 
> use only http* and ftp in your local.conf:
> PREMIRRORS = "\
> ftp://.*/.*      http://downloads.yoctoproject.org/mirror/sources/ \n \
> http://.*/.*     http://downloads.yoctoproject.org/mirror/sources/ \n \
> https://.*/.*    http://downloads.yoctoproject.org/mirror/sources/ \n"
> 
> I am not sure, but this might force protocols. You could try a "bitbake 
> -c fetchall universe"
> 
> I am going have Michael H. get you the information about where the the 
> Downloads are.
> 
> Let me know how it goes.

Just to report back, I successfully used this and the instructions Michael
Halstead provided, from https://lists.yoctoproject.org/pipermail/yocto/2012-May/008966.html
to work around my non-working Sony proxy issue.

So thank you both very much!  I completed several builds in the past week,
and am looking forward to doing some experimentation with my
own custom distribution, for some research I'm doing.

I should note that this is independent of the work being done by Sony's
internal distribution team, who have been working to migrate Sony's internal
Linux distribution to the Yocto Project for a few months now.

=============================
Tim Bird
Architecture Group Chair, CE Workgroup of the Linux Foundation
Senior Staff Engineer, Sony Network Entertainment
=============================



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

* Re: Manually fetching files (and disabling the sanity-checker)
  2012-08-03 17:06   ` Tim Bird
@ 2012-08-03 17:15     ` Stewart, David C
  0 siblings, 0 replies; 6+ messages in thread
From: Stewart, David C @ 2012-08-03 17:15 UTC (permalink / raw)
  To: Tim Bird; +Cc: yocto

>From: yocto-bounces@yoctoproject.org [mailto:yocto-
>bounces@yoctoproject.org] On Behalf Of Tim Bird
>Sent: Friday, August 03, 2012 10:07 AM
>
>Just to report back, I successfully used this and the instructions Michael
>Halstead provided, from https://lists.yoctoproject.org/pipermail/yocto/2012-
>May/008966.html
>to work around my non-working Sony proxy issue.
>
>So thank you both very much!  I completed several builds in the past week,
>and am looking forward to doing some experimentation with my
>own custom distribution, for some research I'm doing.

Tim - great to hear!

Saul/Michael - thanks for your help.


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

end of thread, other threads:[~2012-08-03 17:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-18 23:50 Manually fetching files (and disabling the sanity-checker) Tim Bird
2012-07-19  0:22 ` Saul Wold
2012-08-03 17:06   ` Tim Bird
2012-08-03 17:15     ` Stewart, David C
2012-07-19  0:24 ` Michael Halstead
2012-07-19  4:54 ` McClintock Matthew-B29882

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.