Browse Source

Check in new debian snapshot

David Schleef 22 years ago
parent
commit
05d7c8365e
4 changed files with 25 additions and 3 deletions
  1. 16 0
      debian/changelog
  2. 1 1
      debian/control
  3. 1 1
      debian/control.in
  4. 7 1
      debian/rules

+ 16 - 0
debian/changelog

@@ -1,3 +1,19 @@
+uclibc (0.9.9-cvs20020221-2) unstable; urgency=low
+
+  * debian/rules: touch linux/autoconf.h.  Should make us buildable
+    on arm.
+  * add build-dep on bzip2
+
+ -- David Schleef <ds@schleef.org>  Sun, 24 Feb 2002 17:26:37 -0800
+
+uclibc (0.9.9-cvs20020221-1) unstable; urgency=low
+
+  * New upstream snapshot
+  * Add subarchitecture symlinks on arm
+  * Use mips config file on mipsel
+
+ -- David Schleef <ds@schleef.org>  Thu, 21 Feb 2002 23:11:23 -0800
+
 uclibc (0.9.9-cvs20020210-1) unstable; urgency=low
 
   * New upstream snapshot.

+ 1 - 1
debian/control

@@ -2,7 +2,7 @@ Source: uclibc
 Section: devel
 Priority: optional
 Maintainer: David Schleef <ds@schleef.org>
-Build-Depends: debhelper, kernel-source-2.4.16
+Build-Depends: debhelper, bzip2, kernel-source-2.4.16
 Standards-Version: 3.5.6
 
 Package: libuclibc-dev

+ 1 - 1
debian/control.in

@@ -2,7 +2,7 @@ Source: uclibc
 Section: devel
 Priority: optional
 Maintainer: David Schleef <ds@schleef.org>
-Build-Depends: debhelper, _KERNEL_
+Build-Depends: debhelper, bzip2, _KERNEL_
 Standards-Version: 3.5.6
 
 Package: libuclibc-dev_TARGET_

+ 7 - 1
debian/rules

@@ -16,7 +16,7 @@ version:=$(strip $(major)).$(strip $(minor))
 kernel_source=kernel-source-2.4.16
 
 target=$(DEB_HOST_GNU_CPU)
-#target=powerpc
+#target=arm
 
 with_shared_libs=y
 #ifeq ($(target),powerpc)
@@ -51,7 +51,10 @@ build-stamp: debian/control
 	# certainly wrong in most situations.
 #ifeq ($(target),arm)
 	ln -s arch-sa1100 $(kernel_source)/include/asm-arm/arch
+	ln -s proc-armo $(kernel_source)/include/asm-arm/proc
 #endif
+	
+	touch $(kernel_source)/include/linux/autoconf.h
 
 ifneq ($(target),mipsel)
 	cp extra/Configs/Config.$(target) Config
@@ -73,6 +76,8 @@ endif
 	#echo 'TARGET_PREFIX = /'  >>Config
 ifeq ($(with_shared_libs),n)
 	echo 'HAVE_SHARED = false' >>Config
+else
+	echo 'HAVE_SHARED = true' >>Config
 endif
 	echo 'KERNEL_SOURCE = '`pwd`/$(kernel_source) >>Config
 	echo 'HAS_MMU = true' >>Config
@@ -113,6 +118,7 @@ install: build debian/control
 	$(MAKE) install_dev PREFIX=`pwd`/debian/$(p_dev)
 	$(MAKE) install_runtime PREFIX=`pwd`/debian/$(p_lib)
 	$(MAKE) install_toolchain PREFIX=`pwd`/debian/$(p_gcc)
+	$(MAKE) install_utils PREFIX=`pwd`/debian/$(p_gcc)
 
 	install -d debian/$(p_gcc)/usr/share/man/man1
 	install -m 644 debian/uclibc-gcc.1 \