diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | debian/changelog | 53 | ||||
-rw-r--r-- | debian/control | 1 | ||||
-rwxr-xr-x | debian/rules | 6 |
4 files changed, 64 insertions, 4 deletions
@@ -1,5 +1,13 @@ 2001-04-29 Marcus Brinkmann <marcus@gnu.org> + * debian/changelog: New entries for past Debian uploads. + * debian/rules: Disable eatdma driver (breaks AMD K7), do + not enable com, lpr (com is redundant, lpr doesn't work), + move enabling of kmsg in its own line. + * debian/control: Add build dependency on mig and sharutils. + +2001-04-29 Marcus Brinkmann <marcus@gnu.org> + * device/chario.c: Set number of elements of tthiwat and ttlowat to NSPEEDS rather than 16. Initialize the two new elements. (chario_init): Initialize pdma_timeouts and pdma_water_mark for diff --git a/debian/changelog b/debian/changelog index e69928b..e9d7fae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,56 @@ +gnumach (1:1.2-10) unstable; urgency=low + + * debian/rules (stamp-configure): Disable eatadma driver, which + prevents booting on some AMD K7 motherboards. Reported by + Robert Bihlmeyer <robbe@orcus.priv.at>. + * Update to CVS 20010429, which contains support for high baud rates + (B57600, B115200). + * Patches applied to CVS code: cdromlock, color, kbd_enqueu. + + -- Marcus Brinkmann <brinkmd@gnu.org> Sun, 29 Apr 2001 21:41:34 +0200 + +gnumach (1:1.2-9) unstable; urgency=low + + * Update to CVS 20010111, which contains a new interface for + block devices with a large number of blocks. + + -- Marcus Brinkmann <brinkmd@gnu.org> Thu, 11 Jan 2001 23:45:49 +0100 + +gnumach (1:1.2-8) unstable; urgency=low + + * Applied patch by Alexey Dejneka <adejneka@comail.ru> to fix CD ROM + locking problem. + * debian/control: Add mig and sharutils to list of build dependencies + (sharutils for uudecode for fpu emu), closes: #74794. + * linux/src/drivers/net/tulip.c: Update from Linux 2.2.17, thanks + Jason Henry Parker <jasonp@uq.net.au> + + -- Marcus Brinkmann <brinkmd@debian.org> Sun, 26 Nov 2000 03:46:08 +0100 + +gnumach (1:1.2-7) unstable; urgency=low + + * Update to CVS 20000929, which contains a fix for comX. + * debian/rules: Drop --enable-lpr, which doesn't work. + Drop --enable-com, which is already enforced. + + -- Marcus Brinkmann <brinkmd@debian.org> Fri, 29 Sep 2000 20:24:54 +0200 + +gnumach (1:1.2-5) unstable; urgency=low + + * Update to CVS 20000817, which contains a fix for + linux/dev/glue/block.c. + + -- Marcus Brinkmann <brinkmd@debian.org> Thu, 17 Aug 2000 03:22:30 +0200 + +gnumach (1:1.2-4) unstable; urgency=low + + * Add color support to gnumach. Set TERM to mach-color to get the full + effect. Thanks to Juli-Manel Merino Vidal <jmmv@mail.com> for working + out the mapping between ANSI color codes and the bits to poke into the + attribute. + + -- Marcus Brinkmann <brinkmd@debian.org> Tue, 8 Aug 2000 21:00:50 +0200 + gnumach (1:1.2-3) unstable; urgency=low * Snapshot from CVS 20000703. diff --git a/debian/control b/debian/control index 3b64b0a..fe51feb 100644 --- a/debian/control +++ b/debian/control @@ -3,6 +3,7 @@ Section: base Priority: optional Maintainer: GNU Hurd Maintainers <bug-hurd@gnu.org> Standards-Version: 2.5.0.0 +Build-Depends: mig, sharutils Package: gnumach Section: base diff --git a/debian/rules b/debian/rules index 938e8b9..884e077 100755 --- a/debian/rules +++ b/debian/rules @@ -57,10 +57,9 @@ stamp-configure: # ncr5380, ncr53c400, ncr53c8xx, ncr53c406a # hpj2577, hpj2573, hp27248b, hp2585, atp cd build && ../configure \ - --enable-com \ --enable-floppy \ --enable-ide \ - --enable-lpr \ + --enable-kmsg \ \ --enable-advansys \ --enable-buslogic \ @@ -76,7 +75,6 @@ stamp-configure: --enable-seagate \ --enable-t128 --enable-t128f --enable-t228 \ --enable-ncr53c7xx \ - --enable-eatadma \ --enable-eatapio \ --enable-wd7000 \ --enable-eata \ @@ -133,7 +131,7 @@ stamp-configure: --enable-ni52 --enable-ni65 \ --enable-lance \ --enable-tlan \ - --enable-kmsg --build=$(BUILDARCH) --host=$(HOSTARCH) + --build=$(BUILDARCH) --host=$(HOSTARCH) touch stamp-configure all build: stamp-build |