Hi,
as discussed over the last year we finally cleaned up the subversion repository structure of the coreboot repository.
The reasons for this change are: - checking out all required utilities with coreboot is easier - No more svn externals, as they break https checkouts - branching and merging to/from other repositories will be a lot easier. - our tree structure more similar to that of other projects
The tree now roughly looks like this:
{svn://coreboot.org/coreboot,https://svn.coreboot.org/coreboot%7D | +-+ branches | +-- coreboot-v1 | +-- coreboot-v2-newbuild | +-- tags +-+ trunk +-- COPYING +-- documentation +-- Makefile +-- NEWS +-- payloads +-- README +-- src +-- targets +-+ util +-- ...
So please update your repositories... you can migrate your old repositories like this:
$ cd coreboot-v2 # make sure all your new files are added with svn add $ svn diff > ../migration.diff $ cd .. $ svn co svn://coreboot.org/coreboot/trunk coreboot $ cd coreboot $ patch -p0 < ../migration.diff
That's it. The old repository (svn://coreboot.org/repos/) will stay around for another while so all of you have enough time to switch. It will, however, be read-only.
BTW: Those of you behind firewalls can now check out coreboot with a single line again: $ svn co https://svn.coreboot.org/coreboot/trunk coreboot
The wiki, build scripts, and other config files were updated to make this as smooth as possible. If you are experiencing trouble despite this, please let me know.
Best regards, Stefan Reinauer
Hello! Okay, suppose we haven't added anything to our checked out repositories, how do we retrieve these updated ones. Just follow the usual steps for a checkout of a new one?
-- Gregg C Levine hansolofalcon@worldnet.att.net "The Force will be with you always." Obi-Wan Kenobi
-----Original Message----- From: coreboot-bounces@coreboot.org [mailto:coreboot-bounces@coreboot.org]
On
Behalf Of Stefan Reinauer Sent: Saturday, October 31, 2009 5:21 AM To: coreboot Subject: [coreboot] UPDATE YOUR REPOSITORIES
Hi,
as discussed over the last year we finally cleaned up the subversion repository structure of the coreboot repository.
The reasons for this change are:
- checking out all required utilities with coreboot is easier
- No more svn externals, as they break https checkouts
- branching and merging to/from other repositories will be a lot easier.
- our tree structure more similar to that of other projects
The tree now roughly looks like this:
{svn://coreboot.org/coreboot,https://svn.coreboot.org/coreboot%7D | +-+ branches | +-- coreboot-v1 | +-- coreboot-v2-newbuild | +-- tags +-+ trunk +-- COPYING +-- documentation +-- Makefile +-- NEWS +-- payloads +-- README +-- src +-- targets +-+ util +-- ...
So please update your repositories... you can migrate your old repositories like this:
$ cd coreboot-v2 # make sure all your new files are added with svn add $ svn diff > ../migration.diff $ cd .. $ svn co svn://coreboot.org/coreboot/trunk coreboot $ cd coreboot $ patch -p0 < ../migration.diff
That's it. The old repository (svn://coreboot.org/repos/) will stay around for another while so all of you have enough time to switch. It will, however, be read-only.
BTW: Those of you behind firewalls can now check out coreboot with a single line again: $ svn co https://svn.coreboot.org/coreboot/trunk coreboot
The wiki, build scripts, and other config files were updated to make this as smooth as possible. If you are experiencing trouble despite this, please let me know.
Best regards, Stefan Reinauer
-- coresystems GmbH b" Brahmsstr. 16 b" D-79104 Freiburg i. Br. Tel.: +49 761 7668825 b" Fax: +49 761 7664613 Email: info@coresystems.de b" http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg b" HRB 7656 GeschC$ftsfC<hrer: Stefan Reinauer b" Ust-IdNr.: DE245674866
-- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot
Hi, Gregg,
On Nov 1, 2009, at 4:21, "Gregg C Levine" <hansolofalcon@worldnet.att.net
wrote:
Hello! Okay, suppose we haven't added anything to our checked out repositories, how do we retrieve these updated ones. Just follow the usual steps for a checkout of a new one?
Absolutely!
In case of trouble check the download instructions in the coreboot wiki. I think I fixed them all. :-)
Stefan