* bernard-5.0.1, poky-image-lsb, beagle, build error @ 2011-06-14 18:20 Robert Berger 2011-06-14 19:28 ` Saul Wold 0 siblings, 1 reply; 8+ messages in thread From: Robert Berger @ 2011-06-14 18:20 UTC (permalink / raw) To: poky Hi, I hit a build error with the tag: bernard-5.0.1 while trying to build poky-image-lsb, which failed, because psmisc could not be downloaded. I fixed it like this: diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc index 8b391f4..460affc 100644 --- a/meta/recipes-extended/psmisc/psmisc.inc +++ b/meta/recipes-extended/psmisc/psmisc.inc @@ -10,8 +10,9 @@ SECTION = "base" PRIORITY = "required" DEPENDS = "ncurses virtual/libintl" -SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz \ +SRC_URI = "${SOURCEFORGE_MIRROR}/project/psmisc/psmisc/${PV}/psmisc-${PV}.tar.gz \ file://libintl-link.patch;patch=1" + S = "${WORKDIR}/psmisc-${PV}" This means that the tag bernard-5.0.1 does not build anymore for the beagle and most likely other platforms won't build as well out of the box. That's just a small issue, but my problem is more generic. Assuming someone makes a distro based on a tag e.g. bernard-5.0.1 and wants to rebuild this distro in a year from now. Packages might have disappeared, or in best case just the URLs changed. In any case the distro will not build anymore out of the box. I would ideally like to be able to reproduce exactly what I have in a couple of years from now, which seems impossible due to dependencies external to poky which are not controlled by this community. I could come up with a solution, where local copies of packages are kept e.g. in a local download directory, but this would mean, that I'll need to build and test all possible platforms just after the releases (where everything still works) and not when I'll actually need them. What's the best way to deal with this? Regards, Robert ..."C++ has its place in the history of programming languages. Just as Caligula has his place in the history of the Roman Empire." - Robert Firth My public pgp key is available at: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x90320BF1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: bernard-5.0.1, poky-image-lsb, beagle, build error 2011-06-14 18:20 bernard-5.0.1, poky-image-lsb, beagle, build error Robert Berger @ 2011-06-14 19:28 ` Saul Wold 2011-06-14 19:38 ` Tom Rini 2011-06-14 20:55 ` Robert Berger 0 siblings, 2 replies; 8+ messages in thread From: Saul Wold @ 2011-06-14 19:28 UTC (permalink / raw) To: gmane; +Cc: poky On 06/14/2011 11:20 AM, Robert Berger wrote: > Hi, > > I hit a build error with the tag: bernard-5.0.1 > while trying to build poky-image-lsb, which failed, because psmisc could > not be downloaded. > > I fixed it like this: > > diff --git a/meta/recipes-extended/psmisc/psmisc.inc > b/meta/recipes-extended/psmisc/psmisc.inc > index 8b391f4..460affc 100644 > --- a/meta/recipes-extended/psmisc/psmisc.inc > +++ b/meta/recipes-extended/psmisc/psmisc.inc > @@ -10,8 +10,9 @@ SECTION = "base" > PRIORITY = "required" > DEPENDS = "ncurses virtual/libintl" > > -SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz \ > +SRC_URI = > "${SOURCEFORGE_MIRROR}/project/psmisc/psmisc/${PV}/psmisc-${PV}.tar.gz \ > file://libintl-link.patch;patch=1" > + > S = "${WORKDIR}/psmisc-${PV}" > > This means that the tag bernard-5.0.1 does not build anymore for the > beagle and most likely other platforms won't build as well out of the box. > > That's just a small issue, but my problem is more generic. > > Assuming someone makes a distro based on a tag e.g. bernard-5.0.1 and > wants to rebuild this distro in a year from now. > > Packages might have disappeared, or in best case just the URLs changed. > In any case the distro will not build anymore out of the box. > > I would ideally like to be able to reproduce exactly what I have in a > couple of years from now, which seems impossible due to dependencies > external to poky which are not controlled by this community. > > I could come up with a solution, where local copies of packages are kept > e.g. in a local download directory, but this would mean, that I'll need > to build and test all possible platforms just after the releases (where > everything still works) and not when I'll actually need them. > > What's the best way to deal with this? > Robert, This is a know problem with Upstream sources moving, dropping older versions or just doing strange behavior. Currently, if you have MIRRORS, it should pick up the original upstream source tarball from http://autobuilder.yoctoprojecto.org/sources, if you want to avoid checking any upstream source, you can set PREMIRRORS_prepend for ftp, http, and https URLs to the autobuilder/sources location. This location should maintain all tarballs for releases. We had a similar problem with distcc right about the time we released 5.0.1! You can use a local solution also with PREMIRRORS_prepend, as well as setting the BB_NO_NETWORK, which will force bitbake to not look on the network for any upstreams, this assumes you have everything preloaded locally. Let us know if this is what you are looking for. Sau! > Regards, > > Robert > > > ..."C++ has its place in the history of programming languages. Just as > Caligula has his place in the history of the Roman Empire." - Robert Firth > > My public pgp key is available at: > http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x90320BF1 > > > _______________________________________________ > poky mailing list > poky@yoctoproject.org > https://lists.yoctoproject.org/listinfo/poky > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bernard-5.0.1, poky-image-lsb, beagle, build error 2011-06-14 19:28 ` Saul Wold @ 2011-06-14 19:38 ` Tom Rini 2011-06-14 19:52 ` Richard Purdie 2011-06-14 20:55 ` Robert Berger 1 sibling, 1 reply; 8+ messages in thread From: Tom Rini @ 2011-06-14 19:38 UTC (permalink / raw) To: poky On 06/14/2011 12:28 PM, Saul Wold wrote: > On 06/14/2011 11:20 AM, Robert Berger wrote: >> Hi, >> >> I hit a build error with the tag: bernard-5.0.1 >> while trying to build poky-image-lsb, which failed, because psmisc could >> not be downloaded. >> >> I fixed it like this: >> >> diff --git a/meta/recipes-extended/psmisc/psmisc.inc >> b/meta/recipes-extended/psmisc/psmisc.inc >> index 8b391f4..460affc 100644 >> --- a/meta/recipes-extended/psmisc/psmisc.inc >> +++ b/meta/recipes-extended/psmisc/psmisc.inc >> @@ -10,8 +10,9 @@ SECTION = "base" >> PRIORITY = "required" >> DEPENDS = "ncurses virtual/libintl" >> >> -SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz \ >> +SRC_URI = >> "${SOURCEFORGE_MIRROR}/project/psmisc/psmisc/${PV}/psmisc-${PV}.tar.gz \ >> file://libintl-link.patch;patch=1" >> + >> S = "${WORKDIR}/psmisc-${PV}" >> >> This means that the tag bernard-5.0.1 does not build anymore for the >> beagle and most likely other platforms won't build as well out of the >> box. >> >> That's just a small issue, but my problem is more generic. >> >> Assuming someone makes a distro based on a tag e.g. bernard-5.0.1 and >> wants to rebuild this distro in a year from now. >> >> Packages might have disappeared, or in best case just the URLs changed. >> In any case the distro will not build anymore out of the box. >> >> I would ideally like to be able to reproduce exactly what I have in a >> couple of years from now, which seems impossible due to dependencies >> external to poky which are not controlled by this community. >> >> I could come up with a solution, where local copies of packages are kept >> e.g. in a local download directory, but this would mean, that I'll need >> to build and test all possible platforms just after the releases (where >> everything still works) and not when I'll actually need them. >> >> What's the best way to deal with this? >> > Robert, > > This is a know problem with Upstream sources moving, dropping older > versions or just doing strange behavior. > > Currently, if you have MIRRORS, it should pick up the original upstream > source tarball from http://autobuilder.yoctoprojecto.org/sources, if you > want to avoid checking any upstream source, you can set > PREMIRRORS_prepend for ftp, http, and https URLs to the > autobuilder/sources location. This location should maintain all tarballs > for releases. > > We had a similar problem with distcc right about the time we released > 5.0.1! > > You can use a local solution also with PREMIRRORS_prepend, as well as > setting the BB_NO_NETWORK, which will force bitbake to not look on the > network for any upstreams, this assumes you have everything preloaded > locally. > > Let us know if this is what you are looking for. I'd suggest making poky look at a poky-mirror as a "last resort" mirror by default (similar to angstrom and angstrom-mirror.bbclass), at least for release branches. -- Tom Rini Mentor Graphics Corporation ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bernard-5.0.1, poky-image-lsb, beagle, build error 2011-06-14 19:38 ` Tom Rini @ 2011-06-14 19:52 ` Richard Purdie 2011-06-14 20:00 ` Tom Rini 0 siblings, 1 reply; 8+ messages in thread From: Richard Purdie @ 2011-06-14 19:52 UTC (permalink / raw) To: Tom Rini; +Cc: poky On Tue, 2011-06-14 at 12:38 -0700, Tom Rini wrote: > On 06/14/2011 12:28 PM, Saul Wold wrote: > > On 06/14/2011 11:20 AM, Robert Berger wrote: > >> Hi, > >> > >> I hit a build error with the tag: bernard-5.0.1 > >> while trying to build poky-image-lsb, which failed, because psmisc could > >> not be downloaded. > >> > >> I fixed it like this: > >> > >> diff --git a/meta/recipes-extended/psmisc/psmisc.inc > >> b/meta/recipes-extended/psmisc/psmisc.inc > >> index 8b391f4..460affc 100644 > >> --- a/meta/recipes-extended/psmisc/psmisc.inc > >> +++ b/meta/recipes-extended/psmisc/psmisc.inc > >> @@ -10,8 +10,9 @@ SECTION = "base" > >> PRIORITY = "required" > >> DEPENDS = "ncurses virtual/libintl" > >> > >> -SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz \ > >> +SRC_URI = > >> "${SOURCEFORGE_MIRROR}/project/psmisc/psmisc/${PV}/psmisc-${PV}.tar.gz \ > >> file://libintl-link.patch;patch=1" > >> + > >> S = "${WORKDIR}/psmisc-${PV}" > >> > >> This means that the tag bernard-5.0.1 does not build anymore for the > >> beagle and most likely other platforms won't build as well out of the > >> box. > >> > >> That's just a small issue, but my problem is more generic. > >> > >> Assuming someone makes a distro based on a tag e.g. bernard-5.0.1 and > >> wants to rebuild this distro in a year from now. > >> > >> Packages might have disappeared, or in best case just the URLs changed. > >> In any case the distro will not build anymore out of the box. > >> > >> I would ideally like to be able to reproduce exactly what I have in a > >> couple of years from now, which seems impossible due to dependencies > >> external to poky which are not controlled by this community. > >> > >> I could come up with a solution, where local copies of packages are kept > >> e.g. in a local download directory, but this would mean, that I'll need > >> to build and test all possible platforms just after the releases (where > >> everything still works) and not when I'll actually need them. > >> > >> What's the best way to deal with this? > >> > > Robert, > > > > This is a know problem with Upstream sources moving, dropping older > > versions or just doing strange behavior. > > > > Currently, if you have MIRRORS, it should pick up the original upstream > > source tarball from http://autobuilder.yoctoprojecto.org/sources, if you > > want to avoid checking any upstream source, you can set > > PREMIRRORS_prepend for ftp, http, and https URLs to the > > autobuilder/sources location. This location should maintain all tarballs > > for releases. > > > > We had a similar problem with distcc right about the time we released > > 5.0.1! > > > > You can use a local solution also with PREMIRRORS_prepend, as well as > > setting the BB_NO_NETWORK, which will force bitbake to not look on the > > network for any upstreams, this assumes you have everything preloaded > > locally. > > > > Let us know if this is what you are looking for. > > I'd suggest making poky look at a poky-mirror as a "last resort" mirror > by default (similar to angstrom and angstrom-mirror.bbclass), at least > for release branches. What worries me is that it should be doing this by default. The question is therefore why isn't that working? Is that source on the sources mirror? Cheers, Richard ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bernard-5.0.1, poky-image-lsb, beagle, build error 2011-06-14 19:52 ` Richard Purdie @ 2011-06-14 20:00 ` Tom Rini 0 siblings, 0 replies; 8+ messages in thread From: Tom Rini @ 2011-06-14 20:00 UTC (permalink / raw) To: Richard Purdie; +Cc: poky On 06/14/2011 12:52 PM, Richard Purdie wrote: > On Tue, 2011-06-14 at 12:38 -0700, Tom Rini wrote: >> On 06/14/2011 12:28 PM, Saul Wold wrote: >>> On 06/14/2011 11:20 AM, Robert Berger wrote: >>>> Hi, >>>> >>>> I hit a build error with the tag: bernard-5.0.1 >>>> while trying to build poky-image-lsb, which failed, because psmisc could >>>> not be downloaded. >>>> >>>> I fixed it like this: >>>> >>>> diff --git a/meta/recipes-extended/psmisc/psmisc.inc >>>> b/meta/recipes-extended/psmisc/psmisc.inc >>>> index 8b391f4..460affc 100644 >>>> --- a/meta/recipes-extended/psmisc/psmisc.inc >>>> +++ b/meta/recipes-extended/psmisc/psmisc.inc >>>> @@ -10,8 +10,9 @@ SECTION = "base" >>>> PRIORITY = "required" >>>> DEPENDS = "ncurses virtual/libintl" >>>> >>>> -SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz \ >>>> +SRC_URI = >>>> "${SOURCEFORGE_MIRROR}/project/psmisc/psmisc/${PV}/psmisc-${PV}.tar.gz \ >>>> file://libintl-link.patch;patch=1" >>>> + >>>> S = "${WORKDIR}/psmisc-${PV}" >>>> >>>> This means that the tag bernard-5.0.1 does not build anymore for the >>>> beagle and most likely other platforms won't build as well out of the >>>> box. >>>> >>>> That's just a small issue, but my problem is more generic. >>>> >>>> Assuming someone makes a distro based on a tag e.g. bernard-5.0.1 and >>>> wants to rebuild this distro in a year from now. >>>> >>>> Packages might have disappeared, or in best case just the URLs changed. >>>> In any case the distro will not build anymore out of the box. >>>> >>>> I would ideally like to be able to reproduce exactly what I have in a >>>> couple of years from now, which seems impossible due to dependencies >>>> external to poky which are not controlled by this community. >>>> >>>> I could come up with a solution, where local copies of packages are kept >>>> e.g. in a local download directory, but this would mean, that I'll need >>>> to build and test all possible platforms just after the releases (where >>>> everything still works) and not when I'll actually need them. >>>> >>>> What's the best way to deal with this? >>>> >>> Robert, >>> >>> This is a know problem with Upstream sources moving, dropping older >>> versions or just doing strange behavior. >>> >>> Currently, if you have MIRRORS, it should pick up the original upstream >>> source tarball from http://autobuilder.yoctoprojecto.org/sources, if you >>> want to avoid checking any upstream source, you can set >>> PREMIRRORS_prepend for ftp, http, and https URLs to the >>> autobuilder/sources location. This location should maintain all tarballs >>> for releases. >>> >>> We had a similar problem with distcc right about the time we released >>> 5.0.1! >>> >>> You can use a local solution also with PREMIRRORS_prepend, as well as >>> setting the BB_NO_NETWORK, which will force bitbake to not look on the >>> network for any upstreams, this assumes you have everything preloaded >>> locally. >>> >>> Let us know if this is what you are looking for. >> >> I'd suggest making poky look at a poky-mirror as a "last resort" mirror >> by default (similar to angstrom and angstrom-mirror.bbclass), at least >> for release branches. > > What worries me is that it should be doing this by default. The question > is therefore why isn't that working? Is that source on the sources > mirror? Fall-out from the IP change right now? Or webserver needs a restart? Chrome isn't connecting atm and I have the same IP as the LF servers say... -- Tom Rini Mentor Graphics Corporation ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bernard-5.0.1, poky-image-lsb, beagle, build error 2011-06-14 19:28 ` Saul Wold 2011-06-14 19:38 ` Tom Rini @ 2011-06-14 20:55 ` Robert Berger 2011-06-14 21:47 ` Saul Wold 1 sibling, 1 reply; 8+ messages in thread From: Robert Berger @ 2011-06-14 20:55 UTC (permalink / raw) To: poky Hi, On 06/14/2011 10:28 PM, Saul Wold wrote: > > Currently, if you have MIRRORS, it should pick up the original upstream > source tarball from http://autobuilder.yoctoprojecto.org/sources, if you > want to avoid checking any upstream source, you can set > PREMIRRORS_prepend for ftp, http, and https URLs to the > autobuilder/sources location. This location should maintain all tarballs > for releases. > > We had a similar problem with distcc right about the time we released > 5.0.1! > > You can use a local solution also with PREMIRRORS_prepend, as well as > setting the BB_NO_NETWORK, which will force bitbake to not look on the > network for any upstreams, this assumes you have everything preloaded > locally. > > Let us know if this is what you are looking for. There is a file called meta/conf/distro/poky.conf which contains PREMIRRORS ?= "\ bzr://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ cvs://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ git://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ hg://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ osc://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ p4://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ svk://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ svn://.*/.* http://autobuilder.yoctoproject.org/sources/ \n" MIRRORS =+ "\ ftp://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ http://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ https://.*/.* http://autobuilder.yoctoproject.org/sources/ \n" Isn't this supposed to be included by default? Do I need to do something else to activate MIRRORS/PREMIRRORS? Regards, Robert > > Sau! > ...The significant problems we face cannot be solved at the same level of thinking we were at when we created them. - Albert Einstein My public pgp key is available at: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x90320BF1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bernard-5.0.1, poky-image-lsb, beagle, build error 2011-06-14 20:55 ` Robert Berger @ 2011-06-14 21:47 ` Saul Wold 2011-06-15 6:04 ` Robert Berger 0 siblings, 1 reply; 8+ messages in thread From: Saul Wold @ 2011-06-14 21:47 UTC (permalink / raw) To: gmane; +Cc: poky On 06/14/2011 01:55 PM, Robert Berger wrote: > Hi, > > On 06/14/2011 10:28 PM, Saul Wold wrote: >> >> Currently, if you have MIRRORS, it should pick up the original upstream >> source tarball from http://autobuilder.yoctoprojecto.org/sources, if you >> want to avoid checking any upstream source, you can set >> PREMIRRORS_prepend for ftp, http, and https URLs to the >> autobuilder/sources location. This location should maintain all tarballs >> for releases. >> >> We had a similar problem with distcc right about the time we released >> 5.0.1! >> >> You can use a local solution also with PREMIRRORS_prepend, as well as >> setting the BB_NO_NETWORK, which will force bitbake to not look on the >> network for any upstreams, this assumes you have everything preloaded >> locally. >> >> Let us know if this is what you are looking for. > > There is a file called meta/conf/distro/poky.conf which contains > > PREMIRRORS ?= "\ > bzr://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > cvs://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > git://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > hg://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > osc://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > p4://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > svk://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > svn://.*/.* http://autobuilder.yoctoproject.org/sources/ \n" > > MIRRORS =+ "\ > ftp://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > http://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ > https://.*/.* http://autobuilder.yoctoproject.org/sources/ \n" > > Isn't this supposed to be included by default? > Do I need to do something else to activate MIRRORS/PREMIRRORS? > That's the right list and your not overriding them at all? Then it should pick it up. Coulg you run a bitbake -DD -v psmisc -c fetch and send me the out put, on the failing build that you have? This might help identify if there's a problem. Thanks Sau! > Regards, > > Robert > >> >> Sau! >> > ...The significant problems we face cannot be solved at the same level > of thinking we were at when we created them. - Albert Einstein > > My public pgp key is available at: > http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x90320BF1 > > > _______________________________________________ > poky mailing list > poky@yoctoproject.org > https://lists.yoctoproject.org/listinfo/poky > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bernard-5.0.1, poky-image-lsb, beagle, build error 2011-06-14 21:47 ` Saul Wold @ 2011-06-15 6:04 ` Robert Berger 0 siblings, 0 replies; 8+ messages in thread From: Robert Berger @ 2011-06-15 6:04 UTC (permalink / raw) To: poky Hi, On 06/15/2011 12:47 AM, Saul Wold wrote: > Then it should pick it up. Coulg you run a bitbake -DD -v psmisc -c > fetch and send me the out put, on the failing build that you have? > It magically healed over night;) NOTE: fetch http://downloads.sourceforge.net/psmisc/psmisc-22.2.tar.gz DEBUG: executing /usr/bin/env wget -t 5 -q --passive-ftp -P /work/rber/downloads 'http://downloads.sourceforge.net/psmisc/psmisc-22.2.tar.gz' DEBUG: Fetcher accessed the network with the command /usr/bin/env wget -t 5 -q --passive-ftp -P /work/rber/downloads 'http://downloads.sourceforge.net/psmisc/psmisc-22.2.tar.gz' Yesterday night it could not fetch it from this location, but in the meantime I guess someone cooked something on sourceforge and points to the new location of the file. wget http://downloads.sourceforge.net/psmisc/psmisc-22.2.tar.gz --2011-06-15 09:00:30-- http://downloads.sourceforge.net/psmisc/psmisc-22.2.tar.gz Resolving downloads.sourceforge.net... 216.34.181.59 Connecting to downloads.sourceforge.net|216.34.181.59|:80... connected. HTTP request sent, awaiting response... 301 Moved Permanently Location: http://downloads.sourceforge.net/project/psmisc/psmisc/22.2/psmisc-22.2.tar.gz [following] --2011-06-15 09:00:31-- http://downloads.sourceforge.net/project/psmisc/psmisc/22.2/psmisc-22.2.tar.gz Reusing existing connection to downloads.sourceforge.net:80. HTTP request sent, awaiting response... 302 Moved Temporarily Location: http://mesh.dl.sourceforge.net/project/psmisc/psmisc/22.2/psmisc-22.2.tar.gz [following] --2011-06-15 09:00:31-- http://mesh.dl.sourceforge.net/project/psmisc/psmisc/22.2/psmisc-22.2.tar.gz Resolving mesh.dl.sourceforge.net... 213.203.218.122 Connecting to mesh.dl.sourceforge.net|213.203.218.122|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 244247 (239K) [application/x-gzip] Saving to: `psmisc-22.2.tar.gz' 100%[===================================================================================>] 244,247 345K/s in 0.7s 2011-06-15 09:00:32 (345 KB/s) - `psmisc-22.2.tar.gz' saved [244247/244247] > This might help identify if there's a problem. > > Thanks > Sau! > Regards, Robert ..."You are in a twisty little passage of standards, all conflicting." - Michael Meissner, meissner@osf.org My public pgp key is available at: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x90320BF1 ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-06-15 6:04 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-06-14 18:20 bernard-5.0.1, poky-image-lsb, beagle, build error Robert Berger 2011-06-14 19:28 ` Saul Wold 2011-06-14 19:38 ` Tom Rini 2011-06-14 19:52 ` Richard Purdie 2011-06-14 20:00 ` Tom Rini 2011-06-14 20:55 ` Robert Berger 2011-06-14 21:47 ` Saul Wold 2011-06-15 6:04 ` Robert Berger
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.