diff options
author | Guillem Jover <guillem@debian.org> | 2007-05-26 06:43:05 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2007-05-26 06:43:05 +0000 |
commit | ea1e9b12a0b90c19718fd8e09cc1f86829adaf03 (patch) | |
tree | 2b80840a7f325c71a139d9891f20dcb29ff93e02 /debian/patches/44_more_ports.patch | |
parent | 8a4c3358fb2a9008ce69d5202542fb3c85e5744a (diff) |
New upstream CVS snapshot.
- debian/patches/41_io_unlock_ioremove.patch: Removed, merged upstream.
- debian/patches/42_disable_ioperm.patch: Likewise.
- debian/patches/43_debvice_port_fix.patch: Likewise.
- debian/patches/44_more_ports.patch: Likewise.
- debian/patches/45_io_per_task.patch: Likewise.
- debian/patches/46_io_device.patch: Likewise.
- debian/patches/20_mmx_support.patch: Sync.
- debian/patches/90_autoconf_autogen.patch: Regenerated.
Diffstat (limited to 'debian/patches/44_more_ports.patch')
-rw-r--r-- | debian/patches/44_more_ports.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/patches/44_more_ports.patch b/debian/patches/44_more_ports.patch deleted file mode 100644 index 44d4968..0000000 --- a/debian/patches/44_more_ports.patch +++ /dev/null @@ -1,31 +0,0 @@ -2006-01-02 Samuel Thibault <samuel.thibault@ens-lyon.org> - - * i386/i386at/iopl.c (iopl_port_list): Add timer controler port. - * i386/i386at/kd.c (vga_port_list): Renamed to ... - (kd_port_list): ... this. Add timer and speaker ports. - - -Index: i386/i386at/kd.c -=================================================================== ---- i386/i386at/kd.c.orig 2006-11-14 03:58:57.000000000 +0200 -+++ i386/i386at/kd.c 2006-11-14 04:16:08.000000000 +0200 -@@ -336,7 +336,9 @@ short kd_io_reg = EGA_IO_REG; - /* - * IO port sets for different controllers. - */ --io_reg_t vga_port_list[] = { -+static io_reg_t kd_port_list[] = { -+ 0x42, 0x43, /* Timer */ -+ 0x61, /* Speaker */ - 0x3b4, 0x3b5, 0x3b8, 0x3b9, 0x3ba, /* MDA/EGA */ - 0x3d4, 0x3d5, 0x3d8, 0x3d9, 0x3da, /* CGA/EGA */ - 0x3c0, 0x3c1, 0x3c2, 0x3c3, 0x3c4, 0x3c5, 0x3c6, 0x3c7, -@@ -351,7 +353,7 @@ kd_io_map_open(device) - mach_device_t device; - { - kd_io_device = device; -- io_port_create(device, vga_port_list); -+ io_port_create(device, kd_port_list); - } - - void |