diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-02-09 03:52:46 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-02-09 03:52:46 +0000 |
commit | ac159cae447aec8051e008da003fe75599d803de (patch) | |
tree | 76fdae6cc3bcb3a5e1ff0f988c13e9c312c9738e | |
parent | 79fbfcd8132bf341d9963308814fe37ed412c79e (diff) | |
download | busybox-w32-ac159cae447aec8051e008da003fe75599d803de.tar.gz busybox-w32-ac159cae447aec8051e008da003fe75599d803de.tar.bz2 busybox-w32-ac159cae447aec8051e008da003fe75599d803de.zip |
Remove mention of CVS and instead point to Subversion
git-svn-id: svn://busybox.net/trunk/busybox@9821 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | docs/busybox.net/FAQ.html | 2 | ||||
-rw-r--r-- | docs/busybox.net/cvs_anon.html | 57 | ||||
-rw-r--r-- | docs/busybox.net/cvs_howto.html | 44 | ||||
-rw-r--r-- | docs/busybox.net/cvs_write.html | 32 | ||||
-rw-r--r-- | docs/busybox.net/developer.html | 58 | ||||
-rw-r--r-- | docs/busybox.net/download.html | 16 | ||||
-rw-r--r-- | docs/busybox.net/footer.html | 4 | ||||
-rw-r--r-- | docs/busybox.net/header.html | 6 | ||||
-rw-r--r-- | docs/busybox.net/lists.html | 3 | ||||
-rw-r--r-- | docs/busybox.net/oldnews.html | 2 | ||||
-rw-r--r-- | docs/busybox.net/products.html | 2 | ||||
-rw-r--r-- | docs/busybox.net/subversion.html | 38 |
12 files changed, 112 insertions, 152 deletions
diff --git a/docs/busybox.net/FAQ.html b/docs/busybox.net/FAQ.html index b70c03a82..aaf48e67a 100644 --- a/docs/busybox.net/FAQ.html +++ b/docs/busybox.net/FAQ.html | |||
@@ -138,7 +138,7 @@ have additions to this FAQ document, we would love to add them, | |||
138 | An easy method to build your own basic BusyBox based system, is to | 138 | An easy method to build your own basic BusyBox based system, is to |
139 | follow these simple steps: | 139 | follow these simple steps: |
140 | <ul> | 140 | <ul> |
141 | <li> Point your web browser <a href="/cgi-bin/cvsweb/buildroot/">here</a> | 141 | <li> Point your web browser <a href="/cgi-bin/viewcvs.cgi/trunk/buildroot/">here</a> |
142 | <li> Click on "Download tarball" | 142 | <li> Click on "Download tarball" |
143 | <li> Unpack the tarball on your Linux system somewhere | 143 | <li> Unpack the tarball on your Linux system somewhere |
144 | <li> run 'make' and configure things to taste. | 144 | <li> run 'make' and configure things to taste. |
diff --git a/docs/busybox.net/cvs_anon.html b/docs/busybox.net/cvs_anon.html deleted file mode 100644 index f823d0535..000000000 --- a/docs/busybox.net/cvs_anon.html +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | <!--#include file="header.html" --> | ||
2 | |||
3 | |||
4 | <h3>Anonymous CVS</h3> | ||
5 | |||
6 | We allow anonymous (read-only) CVS access to everyone. The first command you | ||
7 | need to run for anonymous CVS access is: | ||
8 | <pre> | ||
9 | cvs -d:pserver:anonymous@busybox.net:/var/cvs login</pre> | ||
10 | <p> | ||
11 | CVS will prompt you for a password. Just press the Enter key (there is no | ||
12 | password for anonymous access). This step only needs to be done once, the first | ||
13 | time you attempt to access CVS. | ||
14 | <p> | ||
15 | Once the login is complete, you can then check the list of available | ||
16 | CVS modules by running the following command (all on one line): | ||
17 | <pre> | ||
18 | cvs -z3 -d:pserver:anonymous@busybox.net:/var/cvs co -c </pre> | ||
19 | |||
20 | <p> | ||
21 | If you wish, you can then check out a local copy of any of the | ||
22 | available modules. The following is an example of how to grab | ||
23 | a copy of busybox and tinylogin: | ||
24 | <pre> | ||
25 | cvs -z3 -d:pserver:anonymous@busybox.net:/var/cvs co -P busybox tinylogin</pre> | ||
26 | This will create a directory called <b>busybox</b> and a directory called | ||
27 | <b>tinylogin</b> in the current directory. These directories contain the | ||
28 | latest and greatest source code for busybox and tinylogin. | ||
29 | |||
30 | <p> | ||
31 | If you are not already familiar with using CVS, I recommend you visit | ||
32 | this quick <a href="/cvs_howto.html">Introduction to CVS</a>. | ||
33 | |||
34 | <p> | ||
35 | I usually create a ~/.cvsrc file with the following things in it, and I | ||
36 | recommend you should use the same: | ||
37 | <pre> | ||
38 | -z3 | ||
39 | update -dP | ||
40 | rdiff -u | ||
41 | diff -ubBwpN | ||
42 | checkout -P</pre> | ||
43 | |||
44 | <p> | ||
45 | Once you've checked out a copy of the source tree, you can update your | ||
46 | source tree at any time so it is in sync with the latest and greatest by | ||
47 | running the command: | ||
48 | <pre> | ||
49 | cvs update</pre> | ||
50 | |||
51 | Because you've only been granted anonymous access to the tree, you won't be | ||
52 | able to commit any changes. Changes can be submitted for inclusion by posting | ||
53 | them to the appropriate mailing list. For those that are actively contributing | ||
54 | <a href="cvs_write.html">CVS write access</a> can be made available. | ||
55 | |||
56 | <!--#include file="footer.html" --> | ||
57 | |||
diff --git a/docs/busybox.net/cvs_howto.html b/docs/busybox.net/cvs_howto.html deleted file mode 100644 index 837d6cd61..000000000 --- a/docs/busybox.net/cvs_howto.html +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | <!--#include file="header.html" --> | ||
2 | |||
3 | |||
4 | <h3>How to use CVS</h3> | ||
5 | |||
6 | |||
7 | If you want to know all the gory details, you will want to visit | ||
8 | <a href="http://www.cvshome.org/">the CVS main web page</a>.<p> | ||
9 | For the impatient, the following is probably about all you need to know: | ||
10 | <p> | ||
11 | |||
12 | <dl> | ||
13 | <dt><pre>cvs checkout -c</pre> | ||
14 | <dd>Will list the modules available for checkout | ||
15 | <dt><pre>cvs checkout < module name ></pre> | ||
16 | <dd>Will checkout the named module | ||
17 | <dt><pre>cvs co < module name ></pre> | ||
18 | <dd>Same thing | ||
19 | <dt><pre>cvs update</pre> | ||
20 | |||
21 | <dd>Updates your local archive so it is in sync with the repository | ||
22 | -- your local updates are left intact. Tries to merge upstream updates | ||
23 | into your local updates. You will see the following tags when it is | ||
24 | updating your local repository: C means conflict, U means update, | ||
25 | P means patched, and M means modified. | ||
26 | <dt><pre>cvs up</pre> | ||
27 | <dd>Same thing | ||
28 | <dt><pre>cvs update < file name ></pre> | ||
29 | <dd>Same thing but for just the named file(s)/directory(s). | ||
30 | <dt><pre>cvs commit</pre> | ||
31 | <dd>Will check in all your work. | ||
32 | <dt><pre>cvs add < file name ></pre> | ||
33 | |||
34 | <dd>Adds the named file/directory into CVS | ||
35 | <dt><pre>cvs remove < file name ></pre> | ||
36 | <dd>Removes the named file/directory from the upstream repository. | ||
37 | <dt><pre>cvs rm < file name ></pre> | ||
38 | <dd>Same thing | ||
39 | <dt><pre>cvs log < file name ></pre> | ||
40 | </dl> | ||
41 | |||
42 | |||
43 | <!--#include file="footer.html" --> | ||
44 | |||
diff --git a/docs/busybox.net/cvs_write.html b/docs/busybox.net/cvs_write.html deleted file mode 100644 index 5c882f48f..000000000 --- a/docs/busybox.net/cvs_write.html +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | <!--#include file="header.html" --> | ||
2 | |||
3 | |||
4 | <h3>CVS Read/Write Access</h3> | ||
5 | |||
6 | If you want to be able to commit things to CVS, first contribute some | ||
7 | stuff to show you are serious. Then, very nicely ask | ||
8 | <a href="mailto:andersen@codepoet.org">Erik Andersen</a> if he will set you up with | ||
9 | an account. To access CVS, you will want to add the following to set up your environment: | ||
10 | <pre> | ||
11 | $ export CVS_RSH=/usr/bin/ssh | ||
12 | $ export CVSROOT='username@cvs.busybox.net:/var/cvs'</pre> | ||
13 | <br> | ||
14 | It goes without saying you must change <em>username</em> to your own | ||
15 | username... | ||
16 | <p> | ||
17 | |||
18 | To obtain commit access, you will need to demonstrate you are | ||
19 | serious by submitting a few good patches first. Then, you will need to | ||
20 | select a user-name to use when committing stuff, and finally, you will | ||
21 | need to send me the username you have selected, an ssh key, and the email | ||
22 | address where you prefer email to be sent (I will forward any email sent | ||
23 | to you, but not store it). | ||
24 | |||
25 | <p> | ||
26 | Note that if you would prefer to keep your communications with me | ||
27 | private, you can encrypt your email using my | ||
28 | <a href="http://www.codepoet.org/andersen/erik/gpg.asc">public key</a>. | ||
29 | |||
30 | <!--#include file="footer.html" --> | ||
31 | |||
32 | |||
diff --git a/docs/busybox.net/developer.html b/docs/busybox.net/developer.html new file mode 100644 index 000000000..215633c97 --- /dev/null +++ b/docs/busybox.net/developer.html | |||
@@ -0,0 +1,58 @@ | |||
1 | <!--#include file="header.html" --> | ||
2 | |||
3 | |||
4 | <h3>Subversion Read/Write Access</h3> | ||
5 | |||
6 | If you want to be able to commit things to Subversion, first contribute some | ||
7 | stuff to show you are serious. Then, very nicely ask <a | ||
8 | href="mailto:andersen@codepoet.org">Erik Andersen</a> if he will set you up | ||
9 | with an commit access to the Subversion repository. To access Subversion, you | ||
10 | will want to add the following to set up your environment: | ||
11 | |||
12 | <p> | ||
13 | |||
14 | To obtain commit access, you will need to demonstrate you are serious by | ||
15 | submitting a few good patches first. Then, you will need to select a username | ||
16 | to use when committing stuff, and finally, you will need to send me the | ||
17 | username you have selected, an ssh key, and the email address where you prefer | ||
18 | email to be sent (I will forward any email sent to you, but not store it). | ||
19 | |||
20 | <p> | ||
21 | |||
22 | Note that if you would prefer to keep your communications with me | ||
23 | private, you can encrypt your email using my | ||
24 | <a href="http://www.codepoet.org/andersen/erik/gpg.asc">public key</a>. | ||
25 | |||
26 | <p> | ||
27 | |||
28 | Once you are setup with an account, you will need to use your account to | ||
29 | checkout a copy of uClibc from Subversion: | ||
30 | |||
31 | <pre> | ||
32 | svn list svn+ssh://username@svn.uclibc.org//svn/trunk/uClibc</pre> | ||
33 | <br> | ||
34 | It goes without saying you must change <em>username</em> to your own | ||
35 | username... | ||
36 | <p> | ||
37 | |||
38 | You can then enter the newly checked out uClibc directory, make changes, check | ||
39 | your changes, diff your changes, revert your changes, and and commit your | ||
40 | changes usine commands such as: | ||
41 | |||
42 | <pre> | ||
43 | svn diff | ||
44 | svn status | ||
45 | svn revert | ||
46 | svn commit</pre> | ||
47 | |||
48 | <p> | ||
49 | |||
50 | For additional detail on how to use Subversion, please visit the | ||
51 | <a href="http://subversion.tigris.org/">the Subversion website</a>. | ||
52 | You might also want to read online or buy a copy of <a | ||
53 | href="http://svnbook.red-bean.com/">the Subversion Book</a>... | ||
54 | |||
55 | |||
56 | <!--#include file="footer.html" --> | ||
57 | |||
58 | |||
diff --git a/docs/busybox.net/download.html b/docs/busybox.net/download.html index e1b091357..f8746ddab 100644 --- a/docs/busybox.net/download.html +++ b/docs/busybox.net/download.html | |||
@@ -9,22 +9,18 @@ downloaded from <a href="downloads">http://www.busybox.net/downloads</a>. | |||
9 | 9 | ||
10 | <p> | 10 | <p> |
11 | You can also obtain <a href= "downloads/snapshots/">Daily Snapshots</a> of | 11 | You can also obtain <a href= "downloads/snapshots/">Daily Snapshots</a> of |
12 | the latest CVS source tree. | 12 | the latest development source tree for those wishing to follow BusyBox development, |
13 | but cannot or do not wish to use Subversion (svn). | ||
13 | 14 | ||
14 | <ul> | 15 | <ul> |
15 | <li> Click here to browse the <a href="/cgi-bin/cvsweb/busybox/"> | 16 | <li> Click here to <a href="/cgi-bin/viewcvs.cgi/trunk/busybox/">browse the source tree</a>. |
16 | CVS tree for the 1.00 stable version of BusyBox</a> | ||
17 | </li> | 17 | </li> |
18 | 18 | ||
19 | <li>Click here to browse the <a href="/cgi-bin/cvsweb/busybox.stable/"> | 19 | <li>Anonymous <a href="subversion.html">Subversion access</a> is available. |
20 | CVS tree for the old 0.60.x BusyBox version</a>. | ||
21 | </li> | 20 | </li> |
22 | 21 | ||
23 | <li>Anonymous <a href="cvs_anon.html">CVS access</a> is available. | 22 | <li>For those that are actively contributing obtaining |
24 | </li> | 23 | <a href="developer.html">Subversion read/write access</a> is also possible. |
25 | |||
26 | <li>For those that are actively contributing there is | ||
27 | even <a href="cvs_write.html">CVS write access</a>. | ||
28 | </li> | 24 | </li> |
29 | 25 | ||
30 | </ul> | 26 | </ul> |
diff --git a/docs/busybox.net/footer.html b/docs/busybox.net/footer.html index 9756f5dde..299421ac8 100644 --- a/docs/busybox.net/footer.html +++ b/docs/busybox.net/footer.html | |||
@@ -9,9 +9,9 @@ | |||
9 | 9 | ||
10 | <p> | 10 | <p> |
11 | <font face="arial, helvetica, sans-serif" size="-1"> | 11 | <font face="arial, helvetica, sans-serif" size="-1"> |
12 | <a HREF="/copyright.txt">Copyright © 1999-2003 Erik Andersen</a> | 12 | <a HREF="/copyright.txt">Copyright © 1999-2005 Erik Andersen</a> |
13 | <br> | 13 | <br> |
14 | Mail all comments, insults, suggestions and bribes to | 14 | Mail all comments, insults, suggestions and bribes to |
15 | <br> | 15 | <br> |
16 | Erik Andersen <A HREF="mailto:andersen@codepoet.org">andersen@codepoet.org</A><BR> | 16 | Erik Andersen <A HREF="mailto:andersen@codepoet.org">andersen@codepoet.org</A><BR> |
17 | </font> | 17 | </font> |
diff --git a/docs/busybox.net/header.html b/docs/busybox.net/header.html index dda2a3c4d..154f9a3a8 100644 --- a/docs/busybox.net/header.html +++ b/docs/busybox.net/header.html | |||
@@ -48,10 +48,10 @@ | |||
48 | <br><a href="/lists.html">Mailing Lists</a> | 48 | <br><a href="/lists.html">Mailing Lists</a> |
49 | <br><a href="/news.html">Latest News</a> | 49 | <br><a href="/news.html">Latest News</a> |
50 | <br><a href="/download.html">Download</a> | 50 | <br><a href="/download.html">Download</a> |
51 | <br><a href="/FAQ.html">FAQ</a> | 51 | <br><a href="/cgi-bin/viewcvs.cgi/trunk/busybox/">Browse Source</a> |
52 | <br><a href="/cvs_anon.html">Accessing CVS</a> | 52 | <br><a href="/subversion.html">Accessing Source</a> |
53 | <br><a href="/cgi-bin/cvsweb/busybox/">Browse CVS</a> | ||
54 | <br><a href="http://bugs.busybox.net/">Bug Tracking</a> | 53 | <br><a href="http://bugs.busybox.net/">Bug Tracking</a> |
54 | <br><a href="/FAQ.html">FAQ</a> | ||
55 | <br><a href="/docs.html">Documentation</a> | 55 | <br><a href="/docs.html">Documentation</a> |
56 | <br><a href="/products.html">Products</a> | 56 | <br><a href="/products.html">Products</a> |
57 | <br><a href="/shame.html">Hall of Shame</a> | 57 | <br><a href="/shame.html">Hall of Shame</a> |
diff --git a/docs/busybox.net/lists.html b/docs/busybox.net/lists.html index 5c50c957c..019af8444 100644 --- a/docs/busybox.net/lists.html +++ b/docs/busybox.net/lists.html | |||
@@ -15,7 +15,8 @@ There is also a mailing list for <a href="/lists/busybox-cvs/">active developers | |||
15 | wishing to read the complete diff of each and every change to busybox -- not for the | 15 | wishing to read the complete diff of each and every change to busybox -- not for the |
16 | faint of heart. Active developers can subscribe by visiting | 16 | faint of heart. Active developers can subscribe by visiting |
17 | <a href="http://codepoet.org/mailman/listinfo/busybox-cvs">this page</a>. | 17 | <a href="http://codepoet.org/mailman/listinfo/busybox-cvs">this page</a>. |
18 | The CVS server is the only one permtted to post to this list. | 18 | The Subversion server is the only one permtted to post to this list. And yes, |
19 | this list name uses the word 'cvs' even though we don't use that anymore... | ||
19 | 20 | ||
20 | <p> | 21 | <p> |
21 | 22 | ||
diff --git a/docs/busybox.net/oldnews.html b/docs/busybox.net/oldnews.html index 83987ecf8..054970323 100644 --- a/docs/busybox.net/oldnews.html +++ b/docs/busybox.net/oldnews.html | |||
@@ -888,7 +888,7 @@ image</a>. Here's how you use it: | |||
888 | Also, some exciting infrastructure news! Busybox now has its own | 888 | Also, some exciting infrastructure news! Busybox now has its own |
889 | <a href="lists/busybox/">mailing list</a>, | 889 | <a href="lists/busybox/">mailing list</a>, |
890 | publically browsable | 890 | publically browsable |
891 | <a href="/cgi-bin/cvsweb/busybox/">CVS tree</a>, | 891 | <a href="/cgi-bin/viewcvs.cgi/trunk/busybox/">CVS tree</a>, |
892 | anonymous | 892 | anonymous |
893 | <a href="cvs_anon.html">CVS access</a>, and | 893 | <a href="cvs_anon.html">CVS access</a>, and |
894 | for those that are actively contributing there is even | 894 | for those that are actively contributing there is even |
diff --git a/docs/busybox.net/products.html b/docs/busybox.net/products.html index 6ca0e3c92..9ee165ad8 100644 --- a/docs/busybox.net/products.html +++ b/docs/busybox.net/products.html | |||
@@ -13,7 +13,7 @@ listed in the order I happen to add them to the web page: | |||
13 | <ul> | 13 | <ul> |
14 | 14 | ||
15 | 15 | ||
16 | <li><a href="/cgi-bin/cvsweb/buildroot/">buildroot</a><br>A configurable | 16 | <li><a href="/cgi-bin/viewcvs.cgi/trunk/buildroot/">buildroot</a><br>A configurable |
17 | means for building your own busybox/uClibc based system systems. | 17 | means for building your own busybox/uClibc based system systems. |
18 | 18 | ||
19 | <li><a href="http://www.pengutronix.de/software/ptxdist_en.html">PTXdist</a><br>another | 19 | <li><a href="http://www.pengutronix.de/software/ptxdist_en.html">PTXdist</a><br>another |
diff --git a/docs/busybox.net/subversion.html b/docs/busybox.net/subversion.html new file mode 100644 index 000000000..f7a4473bf --- /dev/null +++ b/docs/busybox.net/subversion.html | |||
@@ -0,0 +1,38 @@ | |||
1 | <!--#include file="header.html" --> | ||
2 | |||
3 | |||
4 | <h3>Anonymous Subversion Access</h3> | ||
5 | |||
6 | We allow anonymous (read-only) Subversion (svn) access to everyone. To | ||
7 | grab a copy of the latest version of uClibc using anonymous svn access is: | ||
8 | |||
9 | <pre> | ||
10 | svn co svn://www.uclibc.org/trunk/uClibc</pre> | ||
11 | |||
12 | |||
13 | <p> | ||
14 | |||
15 | If you are not already familiar with using Subversion, I recommend you visit <a | ||
16 | href="http://subversion.tigris.org/">the Subversion website</a>. You might | ||
17 | also want to read online or buy a copy of <a | ||
18 | href="http://svnbook.red-bean.com/">the Subversion Book</a>. If you are | ||
19 | already comfortable with using CVS, you may want to skip ahead to the <a | ||
20 | href="http://svnbook.red-bean.com/en/1.1/apa.html">Subversion for CVS Users</a> | ||
21 | part of the Subversion Book. | ||
22 | |||
23 | <p> | ||
24 | |||
25 | Once you've checked out a copy of the source tree, you can update your source | ||
26 | tree at any time so it is in sync with the latest and greatest by entering your | ||
27 | uClibc directory and running the command: | ||
28 | |||
29 | <pre> | ||
30 | svn update</pre> | ||
31 | |||
32 | Because you've only been granted anonymous access to the tree, you won't be | ||
33 | able to commit any changes. Changes can be submitted for inclusion by posting | ||
34 | them to the uClibc mailing list. For those that are actively contributing | ||
35 | <a href="developer.html">Subversion commit access</a> can be made available. | ||
36 | |||
37 | <!--#include file="footer.html" --> | ||
38 | |||