Browse Source

fix mksnapshot and update documentation.

David Schleef 23 years ago
parent
commit
5ebd661263
4 changed files with 22 additions and 11 deletions
  1. 8 5
      debian/README.Debian
  2. 1 0
      debian/changelog
  3. 4 0
      debian/docs
  4. 9 6
      debian/mksnapshot

+ 8 - 5
debian/README.Debian

@@ -1,12 +1,15 @@
 
-The script mksnapshot will automatically download a new snapshot
-from the uClibc CVS server.
 
-Notes on Build-Depends:
 
-  kernel-headers | kernel-headers-2.4.10 autobuilt on i386 and powerpc
+Notes about building:
 
-  kernel-headers-2.4 autobuilt on xxx
+The script mksnapshot will automatically download a new snapshot
+from the uClibc CVS server.  This uses the uclinux.org anonymous
+CVS repository, which is a read-only mirror of the actual upstream
+repository.
 
+Building depends on the kernel-source-2.4.18 package.  Doing this
+is really the most convenient way of getting kernel headers, and
+it works consistently on all architectures.
 
 

+ 1 - 0
debian/changelog

@@ -2,6 +2,7 @@ uclibc (0.9.11-cvs20020420-1) unstable; urgency=low
 
   * Many of the configs have broken CROSS definitions.  Compensate
     for that in debian/rules.
+  * Install more documentation
 
  -- David Schleef <ds@schleef.org>  Sat, 20 Apr 2002 15:40:39 -0700
 

+ 4 - 0
debian/docs

@@ -1,2 +1,6 @@
 README
 TODO
+Changelog.full
+BUGS
+docs/threads.txt
+docs/uclibc.org/

+ 9 - 6
debian/mksnapshot

@@ -9,12 +9,15 @@ dir=uclibc-${version}-cvs${today}
 mkdir -p ${topdir}/uclibc-tmp
 cd ${topdir}/uclibc-tmp
 
-#export CVSROOT=':pserver:anonymous@cvs.uclibc.org:/var/cvs'
-#if ! grep -q '^.pserver.anonymous.cvs.uclibc.org..var.cvs' ~/.cvspass
-#then
-#	echo "$CVSROOT" 'Ay=0=a%0bZ' >>~/.cvspass
-#fi
-export CVSROOT='ds@cvs.uclibc.org:/var/cvs'
+if [ "$(whoami)" = "ds" ];then
+	export CVSROOT='ds@cvs.uclibc.org:/var/cvs'
+else
+	export CVSROOT=':pserver:anonymous@cvs.uclibc.org:/var/cvs'
+	if ! grep -q '^.pserver.anonymous.cvs.uclibc.org..var.cvs' ~/.cvspass
+	then
+		echo "$CVSROOT" 'Ay=0=a%0bZ' >>~/.cvspass
+	fi
+fi
 
 cvs co -d ${dir} uClibc