mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial
* git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial: README: bzip2 is not new Documentation/Changes: remove outdated translation references remove dead Radeon URL SCSI_AACRAID: add a help text update the i386 defconfig MAINTAINERS: remove the LANMEDIA entry Move ip2.c and ip2main.c to drivers/char/ip2/ where the other files
This commit is contained in:
commit
ba93c6297b
@ -15,24 +15,6 @@ and therefore owes credit to the same people as that file (Jared Mauch,
|
||||
Axel Boldt, Alessandro Sigala, and countless other users all over the
|
||||
'net).
|
||||
|
||||
The latest revision of this document, in various formats, can always
|
||||
be found at <http://cyberbuzz.gatech.edu/kaboom/linux/Changes-2.4/>.
|
||||
|
||||
Feel free to translate this document. If you do so, please send me a
|
||||
URL to your translation for inclusion in future revisions of this
|
||||
document.
|
||||
|
||||
Smotrite file <http://oblom.rnc.ru/linux/kernel/Changes.ru>, yavlyaushisya
|
||||
russkim perevodom dannogo documenta.
|
||||
|
||||
Visite <http://www2.adi.uam.es/~ender/tecnico/> para obtener la traducción
|
||||
al español de este documento en varios formatos.
|
||||
|
||||
Eine deutsche Version dieser Datei finden Sie unter
|
||||
<http://www.stefan-winter.de/Changes-2.4.0.txt>.
|
||||
|
||||
Chris Ricker (kaboom@gatech.edu or chris.ricker@genetics.utah.edu).
|
||||
|
||||
Current Minimal Requirements
|
||||
============================
|
||||
|
||||
|
@ -1524,12 +1524,6 @@ M: davem@davemloft.net
|
||||
L: linux-kernel@vger.kernel.org
|
||||
S: Maintained
|
||||
|
||||
LANMEDIA WAN CARD DRIVER
|
||||
P: Andrew Stanley-Jones
|
||||
M: asj@lanmedia.com
|
||||
W: http://www.lanmedia.com/
|
||||
S: Supported
|
||||
|
||||
LAPB module
|
||||
P: Henner Eisen
|
||||
M: eis@baty.hanse.de
|
||||
|
2
README
2
README
@ -74,7 +74,7 @@ INSTALLING the kernel:
|
||||
whatever the kernel-du-jour happens to be.
|
||||
|
||||
- You can also upgrade between 2.6.xx releases by patching. Patches are
|
||||
distributed in the traditional gzip and the new bzip2 format. To
|
||||
distributed in the traditional gzip and the newer bzip2 format. To
|
||||
install by patching, get all the newer patch files, enter the
|
||||
top level directory of the kernel source (linux-2.6.xx) and execute:
|
||||
|
||||
|
1174
arch/i386/defconfig
1174
arch/i386/defconfig
File diff suppressed because it is too large
Load Diff
@ -31,7 +31,7 @@ obj-$(CONFIG_MOXA_INTELLIO) += moxa.o
|
||||
obj-$(CONFIG_A2232) += ser_a2232.o generic_serial.o
|
||||
obj-$(CONFIG_ATARI_DSP56K) += dsp56k.o
|
||||
obj-$(CONFIG_MOXA_SMARTIO) += mxser.o
|
||||
obj-$(CONFIG_COMPUTONE) += ip2.o ip2main.o
|
||||
obj-$(CONFIG_COMPUTONE) += ip2/
|
||||
obj-$(CONFIG_RISCOM8) += riscom8.o
|
||||
obj-$(CONFIG_ISI) += isicom.o
|
||||
obj-$(CONFIG_SYNCLINK) += synclink.o
|
||||
|
@ -37,8 +37,8 @@ config DRM_RADEON
|
||||
help
|
||||
Choose this option if you have an ATI Radeon graphics card. There
|
||||
are both PCI and AGP versions. You don't need to choose this to
|
||||
run the Radeon in plain VGA mode. There is a product page at
|
||||
<http://www.ati.com/na/pages/products/pc/radeon32/index.html>.
|
||||
run the Radeon in plain VGA mode.
|
||||
|
||||
If M is selected, the module will be called radeon.
|
||||
|
||||
config DRM_I810
|
||||
|
8
drivers/char/ip2/Makefile
Normal file
8
drivers/char/ip2/Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
#
|
||||
# Makefile for the Computone IntelliPort Plus Driver
|
||||
#
|
||||
|
||||
obj-$(CONFIG_COMPUTONE) += ip2.o ip2main.o
|
||||
|
||||
ip2-objs := ip2base.o
|
||||
|
@ -20,14 +20,14 @@
|
||||
#define __initdata
|
||||
#endif
|
||||
|
||||
#include "./ip2/ip2types.h"
|
||||
#include "./ip2/fip_firm.h" // the meat
|
||||
#include "ip2types.h"
|
||||
#include "fip_firm.h" // the meat
|
||||
|
||||
int
|
||||
ip2_loadmain(int *, int *, unsigned char *, int ); // ref into ip2main.c
|
||||
|
||||
/* Note: Add compiled in defaults to these arrays, not to the structure
|
||||
in ip2/ip2.h any longer. That structure WILL get overridden
|
||||
in ip2.h any longer. That structure WILL get overridden
|
||||
by these values, or command line values, or insmod values!!! =mhw=
|
||||
*/
|
||||
static int io[IP2_MAX_BOARDS]= { 0, 0, 0, 0 };
|
@ -35,7 +35,7 @@
|
||||
// Clean up potential NULL pointer dereferences
|
||||
// Clean up devfs registration
|
||||
// Add kernel command line parsing for io and irq
|
||||
// Compile defaults for io and irq are now set in ip2.c not ip2/ip2.h!
|
||||
// Compile defaults for io and irq are now set in ip2.c not ip2.h!
|
||||
// Reworked poll_only hack for explicit parameter setting
|
||||
// You must now EXPLICITLY set poll_only = 1 or set all irqs to 0
|
||||
// Merged ip2_loadmain and old_ip2_init
|
||||
@ -123,12 +123,12 @@
|
||||
|
||||
#include <asm/uaccess.h>
|
||||
|
||||
#include "./ip2/ip2types.h"
|
||||
#include "./ip2/ip2trace.h"
|
||||
#include "./ip2/ip2ioctl.h"
|
||||
#include "./ip2/ip2.h"
|
||||
#include "./ip2/i2ellis.h"
|
||||
#include "./ip2/i2lib.h"
|
||||
#include "ip2types.h"
|
||||
#include "ip2trace.h"
|
||||
#include "ip2ioctl.h"
|
||||
#include "ip2.h"
|
||||
#include "i2ellis.h"
|
||||
#include "i2lib.h"
|
||||
|
||||
/*****************
|
||||
* /proc/ip2mem *
|
||||
@ -282,9 +282,9 @@ static int tracewrap;
|
||||
/* Code */
|
||||
/********/
|
||||
|
||||
#include "./ip2/i2ellis.c" /* Extremely low-level interface services */
|
||||
#include "./ip2/i2cmd.c" /* Standard loadware command definitions */
|
||||
#include "./ip2/i2lib.c" /* High level interface services */
|
||||
#include "i2ellis.c" /* Extremely low-level interface services */
|
||||
#include "i2cmd.c" /* Standard loadware command definitions */
|
||||
#include "i2lib.c" /* High level interface services */
|
||||
|
||||
/* Configuration area for modprobe */
|
||||
|
@ -379,6 +379,14 @@ config SCSI_AHA1740
|
||||
config SCSI_AACRAID
|
||||
tristate "Adaptec AACRAID support"
|
||||
depends on SCSI && PCI
|
||||
help
|
||||
This driver supports a variety of Dell, HP, Adaptec, IBM and
|
||||
ICP storage products. For a list of supported products, refer
|
||||
to <file:Documentation/scsi/aacraid.txt>.
|
||||
|
||||
To compile this driver as a module, choose M here: the module
|
||||
will be called aacraid.
|
||||
|
||||
|
||||
source "drivers/scsi/aic7xxx/Kconfig.aic7xxx"
|
||||
|
||||
|
@ -899,8 +899,6 @@ config FB_RADEON_OLD
|
||||
Choose this option if you want to use an ATI Radeon graphics card as
|
||||
a framebuffer device. There are both PCI and AGP versions. You
|
||||
don't need to choose this to run the Radeon in plain VGA mode.
|
||||
There is a product page at
|
||||
<http://www.ati.com/na/pages/products/pc/radeon32/index.html>.
|
||||
|
||||
config FB_RADEON
|
||||
tristate "ATI Radeon display support"
|
||||
|
Loading…
x
Reference in New Issue
Block a user