Hello,
Is there a way to download an archived snapshot of recent coreboot source code?
Thanks, Scott
On Fri, 10 Jun 2011 14:34:28 -0500, Scott Duplichan wrote:
Is there a way to download an archived snapshot of recent coreboot source code?
I'll see that jenkins creates them for "coreboot" builds (not "coreboot-gerrit", that would be somewhat excessive, I think).
Patrick
On Fri, 10 Jun 2011 14:34:28 -0500 "Scott Duplichan" scott@notabs.org wrote:
Hello,
Is there a way to download an archived snapshot of recent coreboot source code?
gitweb can create snapshots on the fly. i am not sure if the gitweb integration is completed so YMMV. http://review.coreboot.org/gitweb?p=coreboot.git;a=summary
On Sat, 11 Jun 2011 13:09:43 +0200, Stefan Tauner wrote:
gitweb can create snapshots on the fly. i am not sure if the gitweb integration is completed so YMMV. http://review.coreboot.org/gitweb?p=coreboot.git;a=summary
Should work. If not, that's a bug.
Patrick
Stefan Tauner wrote:
]> Hello, ]> ]> Is there a way to download an archived snapshot of recent coreboot source ]> code? ] ]gitweb can create snapshots on the fly. ]i am not sure if the gitweb integration is completed so YMMV. ]http://review.coreboot.org/gitweb?p=coreboot.git;a=summary
Hello Stefan,
Thanks, this is perfect.
Thanks, Scott
Stefan Tauner wrote:
]> Hello, ]> ]> Is there a way to download an archived snapshot of recent coreboot source ]> code? ] ]gitweb can create snapshots on the fly. ]i am not sure if the gitweb integration is completed so YMMV. ]http://review.coreboot.org/gitweb?p=coreboot.git;a=summary
This is working well, but the filename confuses 7-zip. For example, coreboot-3352b29.tar.gz would be more accurately named coreboot-3352b29.tar.gz.gz I believe. Does anyone know how to update the filename, or better yet remove the redundant gzip pass?
Thanks, Scott
On Thu, Jun 23, 2011 at 00:16, Scott Duplichan scott@notabs.org wrote:
Stefan Tauner wrote:
]> Hello, ]> ]> Is there a way to download an archived snapshot of recent coreboot source ]> code? ] ]gitweb can create snapshots on the fly. ]i am not sure if the gitweb integration is completed so YMMV. ]http://review.coreboot.org/gitweb?p=coreboot.git;a=summary
This is working well, but the filename confuses 7-zip. For example, coreboot-3352b29.tar.gz would be more accurately named coreboot-3352b29.tar.gz.gz I believe. Does anyone know how to update the filename, or better yet remove the redundant gzip pass?
I can confirm this behavior and figured out what causes it: The gitweb config should OK, it delivers it as it should. However, the webserver does the additional packing, no idea why - but it appears the config is messed up. It's easy to reproduce: wget $snapshot <- this produces a proper tar.gz file wget --header="accept-encoding: gzip" $snapshot <- this produces the wrong .tar.gz file that is doubly-gzipped. So the webserver delivers this when the http client accepts gzip compression.
Hi,
The mod_deflate Apache module can be configured to avoid compressing the .gz files once again. Something like this should do, if there's anyone who can do it now that Patrick is gone. If not, I guess it can wait a few days until he's back.
SetEnvIf Request_URI ".gz$" no-gzip
~Cristi
Am Donnerstag, 23. Juni 2011 03:20:05, Cristian Măgherușan-Stanciu schrieb:
SetEnvIf Request_URI ".gz$" no-gzip
I had to disable it unconditionally for all of gitweb (REQUEST_URI matches the request url without the query string), but it looks okay for me now.
Thanks, Patrick
Patrick Georgi wrote:
]Am Donnerstag, 23. Juni 2011 03:20:05, Cristian Măgherușan-Stanciu ]schrieb: ]> SetEnvIf Request_URI ".gz$" no-gzip ]I had to disable it unconditionally for all of gitweb (REQUEST_URI ]matches the request url without the query string), but it looks okay ]for me now. ] ]Thanks, ]Patrick
Hello Patrick,
7-zip is happy now. Thanks for making the change, and thanks to Cristi and Thomas for figuring out details.
Thanks, Scott