Index: linux-2.2.12/2.2.12-ip-explain.txt
diff -c linux-2.2.12/2.2.12-ip-explain.txt:1.1 linux-2.2.12/2.2.12-ip-explain.txt:1.2
*** linux-2.2.12/2.2.12-ip-explain.txt:1.1	Wed Jan  5 16:23:54 2000
--- linux-2.2.12/2.2.12-ip-explain.txt	Mon Jan 31 19:02:37 2000
***************
*** 1,5 ****
! 	Routing Cache
  
  Route cache consists of RT_HASH_DIVISOR struct rtable entries.
  Each rtable entry consists of :
  struct rtable
--- 1,7 ----
! 		Notes on Linux 2.2.12 IP Stack implementation
  
+ ***	Routing Cache
+ 
  Route cache consists of RT_HASH_DIVISOR struct rtable entries.
  Each rtable entry consists of :
  struct rtable
***************
*** 32,37 ****
--- 34,54 ----
  #endif
  };
  
+ Each key structure consist of
+ struct rt_key
+ {
+ 	__u32			dst;
+ 	__u32			src;
+ 	int			iif;
+ 	int			oif;
+ #ifdef CONFIG_IP_ROUTE_FWMARK
+ 	__u32			fwmark;
+ #endif
+ 	__u8			tos;
+ 	__u8			scope;
+ };
+ 
+ 
  Each dst_entry has the following members:
  
  struct dst_entry
***************
*** 90,92 ****
--- 107,244 ----
  	atomic_t		entries;
  };
  
+ *** How a packet from the wire
+ 
+ open AF_INET socket
+ 
+ a socket has a pointer to a corresponding 'struct sock'
+ 
+ a sock has a pointer to an 'struct proto ops' which for AF_INET can take
+ two values: inet_stream_ops and inet_dgram_ops.
+ Each of those is a structure of function pointers, but both point to
+ inet_recvmsg() as the recvmsg member of the structure.
+ 
+ inet_recvmsg() in turn calls the sock->sk->prot->recvmsg() function
+ (it references the 'struct sock' prot member which is of type
+ 'struct proto' and this structure is filled for every protocol
+ in the AF_INET family with corresponding functions that do
+ connect,accept,recv,send and stuff. Similarly, this structure
+ has a field for <protocol>_recvmsg.
+ 
+ For raw sockets raw_recvmsg is this function. raw_recvmsg as
+ its main function calls skb_recv_datagram() to queue an
+ skb on the sock's receive queue.
+ 
+ *** Notes on ip_output
+ 
+ There are several functions that can send a buffer or an skb
+ out:
+ 
+ void ip_build_and_send_pkt(struct sk_buff *skb, 
+                            struct sock *sk,
+ 			   u32 saddr, u32 daddr, 
+ 			   struct ip_options *opt)
+ /// Used exclusively by tcp_v4_send_synack
+ 
+ void ip_queue_xmit(struct sk_buff *skb)
+ /// This function uses ip_fragment if the packet is longer
+ /// than MTU
+ /// It is used exclusively by TCP
+ 
+ int ip_build_xmit(struct sock *sk, 
+ 		  int getfrag (const void *,
+ 			       char *,
+ 			       unsigned int,	
+ 			       unsigned int),
+ 		  const void *frag,
+ 		  unsigned length,
+ 		  struct ipcm_cookie *ipc,
+ 		  struct rtable *rt,
+ 		  int flags)
+ /// Used by raw, udp, icmp to send buffers out
+ 
+ int ip_build_xmit_slow(struct sock *sk,
+ 		  int getfrag (const void *,
+ 			       char *,
+ 			       unsigned int,	
+ 			       unsigned int),
+ 		  const void *frag,
+ 		  unsigned length,
+ 		  struct ipcm_cookie *ipc,
+ 		  struct rtable *rt,
+ 		  int flags)
+ //// this function is the fragmenting version of the ip_build_xmit
+ 
+ 
+ *** Notes on ip_cmsg functions and ipcm_cookies
+ 
+ ip_cmsg_send and ip_cmsg_recv functions are used
+ by raw and udp sendmsg and recvmsg functions
+ respectively. Their purpose is the processing of
+ control messages and ancillary data (see R.Stevens's
+ book).
+ 
+ On the recv side, based on the flags passed to the
+ recvmsg call or the selected socket options (?)
+ some of the pretinent information about the packet
+ being received is put into control blocks and
+ attached to the ancillary data of the msg_hdr
+ structure (msg_control field).
+ 
+ On the send side, based on the selected socket options,
+ some of the ancillary data from the control blocks
+ is read into ipcm_cookie data structure which is
+ later used by ip_build_xmit. (some of the ip header
+ options can be put into ancillary data block so they
+ will be extracted during the packet build process
+ and put into the packet).
+ 
+ *** Relinquishing control of sk_buff by sk
+ 
+ When a skbuff is being sent thru ip_build_xmit
+ (for instance), it is owned by the originating
+ sock. 
+ 
+ When we intercept the outgoing packet, we
+ need to relinquish the control of the sock
+ over the skbuff in order to pass it to our
+ divert sock.
+ 
+ Here is the procedure that the driver follows
+ when it does kfree_skb() which, among other things
+ does proper accounting of the write space available
+ to a sock:
+ 
+    dst_release(skb->dst);
+    if (skb->destructor)
+       skb->destructor(skb);
+    skb_headerinit(skb, NULL, 0) /* clean state */
+    kfree_skbmem(skb);
+ 
+ In turn skb_headerinit does the following:
+ 
+ static inline void skb_headerinit(void *p, kmem_cache_t *cache, 
+ 				  unsigned long flags)
+ {
+ 	struct sk_buff *skb = p;
+ 
+ 	skb->destructor = NULL;
+ 	skb->pkt_type = PACKET_HOST;	/* Default type */
+ 	skb->pkt_bridged = 0;		/* Not bridged */
+ 	skb->prev = skb->next = NULL;
+ 	skb->list = NULL;
+ 	skb->sk = NULL;
+ 	skb->stamp.tv_sec=0;	/* No idea about time */
+ 	skb->ip_summed = 0;
+ 	skb->security = 0;	/* By default packets are insecure */
+ 	skb->dst = NULL;
+ #ifdef CONFIG_IP_FIREWALL
+         skb->fwmark = 0;
+ #endif
+ 	memset(skb->cb, 0, sizeof(skb->cb));
+ 	skb->priority = 0;
+ }
+ 
+ 
+ We need to do something similar, except for 
+ releasing the skb memory.
\ No newline at end of file
Index: linux-2.2.12/Documentation/Configure.help
diff -c linux-2.2.12/Documentation/Configure.help:1.1 linux-2.2.12/Documentation/Configure.help:1.2
*** linux-2.2.12/Documentation/Configure.help:1.1	Mon Dec 27 12:14:33 1999
--- linux-2.2.12/Documentation/Configure.help	Tue Feb  8 17:17:45 2000
***************
*** 2696,2701 ****
--- 2696,2720 ----
    Documentation/networking/multicast.txt. If you haven't heard about
    it, you don't need it.
  
+ IP: divert sockets
+ CONFIG_IP_DIVERT
+   This is used to enable FreeBSD divert socket mechanism on Linux.
+   Divert sockets allow a super user to intercept and reinject
+   IP packets based on firewall selection. You must have a patched
+   version of ipchains in order to set the DIVERT rules, or else
+   you have to do it in your user code.
+   visit http://www.anr.mcnc.org/~divert for more information
+ 
+ IP: pass through divert
+ CONFIG_DIV_PT
+   This is a companion option to CONFIG_IP_DIVERT. It modifies the 
+   behaviour of divert sockets in the following way - by default
+   if you have a divert rule set and no application is listening
+   on the specified divert port, a divert rule behaves identically
+   to a deny rule - the packets are dropped.
+   If you specifu CONFIG_IP_DIVERT, then in the absence of a listening
+   application diverted sockets will proceed as if no rule is specified.
+ 
  IP: PIM-SM version 1 support
  CONFIG_IP_PIMSM_V1
    Kernel side support for Sparse Mode PIM (Protocol Independent
Index: linux-2.2.12/Documentation/devices.tex
diff -c linux-2.2.12/Documentation/devices.tex:1.1 linux-2.2.12/Documentation/devices.tex:1.1.1.1
*** linux-2.2.12/Documentation/devices.tex:1.1	Mon Dec 27 12:14:32 1999
--- linux-2.2.12/Documentation/devices.tex	Mon Dec 27 12:14:32 1999
***************
*** 1,5 ****
  \documentstyle{article}
! % $Id: devices.tex,v 1.1 1999/12/27 17:14:32 ibaldin Exp $
  % ---------------------------------------------------------------------------
  % Adopt somewhat reasonable margins, so it doesn't take a million
  % pages to print... :-)  If you're actually putting this in print, you
--- 1,5 ----
  \documentstyle{article}
! % $Id: devices.tex,v 1.1.1.1 1999/12/27 17:14:32 ibaldin Exp $
  % ---------------------------------------------------------------------------
  % Adopt somewhat reasonable margins, so it doesn't take a million
  % pages to print... :-)  If you're actually putting this in print, you
Index: linux-2.2.12/Documentation/cdrom/aztcd
diff -c linux-2.2.12/Documentation/cdrom/aztcd:1.1 linux-2.2.12/Documentation/cdrom/aztcd:1.1.1.1
*** linux-2.2.12/Documentation/cdrom/aztcd:1.1	Mon Dec 27 12:14:35 1999
--- linux-2.2.12/Documentation/cdrom/aztcd	Mon Dec 27 12:14:35 1999
***************
*** 1,4 ****
! $Id: aztcd,v 1.1 1999/12/27 17:14:35 ibaldin Exp $
            Readme-File /usr/src/Documentation/cdrom/aztcd
             			for 
  	     AZTECH CD-ROM CDA268-01A, ORCHID CD-3110,
--- 1,4 ----
! $Id: aztcd,v 1.1.1.1 1999/12/27 17:14:35 ibaldin Exp $
            Readme-File /usr/src/Documentation/cdrom/aztcd
             			for 
  	     AZTECH CD-ROM CDA268-01A, ORCHID CD-3110,
Index: linux-2.2.12/Documentation/cdrom/cdrom-standard.tex
diff -c linux-2.2.12/Documentation/cdrom/cdrom-standard.tex:1.1 linux-2.2.12/Documentation/cdrom/cdrom-standard.tex:1.1.1.1
*** linux-2.2.12/Documentation/cdrom/cdrom-standard.tex:1.1	Mon Dec 27 12:14:36 1999
--- linux-2.2.12/Documentation/cdrom/cdrom-standard.tex	Mon Dec 27 12:14:36 1999
***************
*** 1,5 ****
  \documentclass{article}
! \def\version{$Id: cdrom-standard.tex,v 1.1 1999/12/27 17:14:36 ibaldin Exp $}
  \newcommand{\newsection}[1]{\newpage\section{#1}}
  
  \evensidemargin=0pt
--- 1,5 ----
  \documentclass{article}
! \def\version{$Id: cdrom-standard.tex,v 1.1.1.1 1999/12/27 17:14:36 ibaldin Exp $}
  \newcommand{\newsection}[1]{\newpage\section{#1}}
  
  \evensidemargin=0pt
Index: linux-2.2.12/Documentation/isdn/INTERFACE
diff -c linux-2.2.12/Documentation/isdn/INTERFACE:1.1 linux-2.2.12/Documentation/isdn/INTERFACE:1.1.1.1
*** linux-2.2.12/Documentation/isdn/INTERFACE:1.1	Mon Dec 27 12:14:36 1999
--- linux-2.2.12/Documentation/isdn/INTERFACE	Mon Dec 27 12:14:36 1999
***************
*** 1,4 ****
! $Id: INTERFACE,v 1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  Description of the Interface between Linklevel and Hardwarelevel
    of isdn4linux:
--- 1,4 ----
! $Id: INTERFACE,v 1.1.1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  Description of the Interface between Linklevel and Hardwarelevel
    of isdn4linux:
Index: linux-2.2.12/Documentation/isdn/INTERFACE.fax
diff -c linux-2.2.12/Documentation/isdn/INTERFACE.fax:1.1 linux-2.2.12/Documentation/isdn/INTERFACE.fax:1.1.1.1
*** linux-2.2.12/Documentation/isdn/INTERFACE.fax:1.1	Mon Dec 27 12:14:36 1999
--- linux-2.2.12/Documentation/isdn/INTERFACE.fax	Mon Dec 27 12:14:36 1999
***************
*** 1,4 ****
! $Id: INTERFACE.fax,v 1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  
  Description of the fax-subinterface between linklevel and hardwarelevel of 
--- 1,4 ----
! $Id: INTERFACE.fax,v 1.1.1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  
  Description of the fax-subinterface between linklevel and hardwarelevel of 
Index: linux-2.2.12/Documentation/isdn/README.act2000
diff -c linux-2.2.12/Documentation/isdn/README.act2000:1.1 linux-2.2.12/Documentation/isdn/README.act2000:1.1.1.1
*** linux-2.2.12/Documentation/isdn/README.act2000:1.1	Mon Dec 27 12:14:36 1999
--- linux-2.2.12/Documentation/isdn/README.act2000	Mon Dec 27 12:14:36 1999
***************
*** 1,4 ****
! $Id: README.act2000,v 1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  This document describes the ACT2000 driver for the
  IBM Active 2000 ISDN card.
--- 1,4 ----
! $Id: README.act2000,v 1.1.1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  This document describes the ACT2000 driver for the
  IBM Active 2000 ISDN card.
Index: linux-2.2.12/Documentation/isdn/README.audio
diff -c linux-2.2.12/Documentation/isdn/README.audio:1.1 linux-2.2.12/Documentation/isdn/README.audio:1.1.1.1
*** linux-2.2.12/Documentation/isdn/README.audio:1.1	Mon Dec 27 12:14:36 1999
--- linux-2.2.12/Documentation/isdn/README.audio	Mon Dec 27 12:14:36 1999
***************
*** 1,4 ****
! $Id: README.audio,v 1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  ISDN subsystem for Linux.
    Description of audio mode.
--- 1,4 ----
! $Id: README.audio,v 1.1.1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  ISDN subsystem for Linux.
    Description of audio mode.
Index: linux-2.2.12/Documentation/isdn/README.eicon
diff -c linux-2.2.12/Documentation/isdn/README.eicon:1.1 linux-2.2.12/Documentation/isdn/README.eicon:1.1.1.1
*** linux-2.2.12/Documentation/isdn/README.eicon:1.1	Mon Dec 27 12:14:36 1999
--- linux-2.2.12/Documentation/isdn/README.eicon	Mon Dec 27 12:14:36 1999
***************
*** 1,4 ****
! $Id: README.eicon,v 1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  (c) 1999 Cytronics & Melware
  
--- 1,4 ----
! $Id: README.eicon,v 1.1.1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  (c) 1999 Cytronics & Melware
  
Index: linux-2.2.12/Documentation/isdn/README.icn
diff -c linux-2.2.12/Documentation/isdn/README.icn:1.1 linux-2.2.12/Documentation/isdn/README.icn:1.1.1.1
*** linux-2.2.12/Documentation/isdn/README.icn:1.1	Mon Dec 27 12:14:36 1999
--- linux-2.2.12/Documentation/isdn/README.icn	Mon Dec 27 12:14:36 1999
***************
*** 1,4 ****
! $Id: README.icn,v 1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  You can get the ICN-ISDN-card from:
  
--- 1,4 ----
! $Id: README.icn,v 1.1.1.1 1999/12/27 17:14:36 ibaldin Exp $
  
  You can get the ICN-ISDN-card from:
  
Index: linux-2.2.12/Documentation/networking/ip-sysctl.txt
diff -c linux-2.2.12/Documentation/networking/ip-sysctl.txt:1.1 linux-2.2.12/Documentation/networking/ip-sysctl.txt:1.1.1.1
*** linux-2.2.12/Documentation/networking/ip-sysctl.txt:1.1	Mon Dec 27 12:14:35 1999
--- linux-2.2.12/Documentation/networking/ip-sysctl.txt	Mon Dec 27 12:14:35 1999
***************
*** 211,214 ****
  Updated by:
  Andi Kleen
  ak@muc.de
! $Id: ip-sysctl.txt,v 1.1 1999/12/27 17:14:35 ibaldin Exp $
--- 211,214 ----
  Updated by:
  Andi Kleen
  ak@muc.de
! $Id: ip-sysctl.txt,v 1.1.1.1 1999/12/27 17:14:35 ibaldin Exp $
Index: linux-2.2.12/arch/i386/boot/tools/build.c
diff -c linux-2.2.12/arch/i386/boot/tools/build.c:1.1 linux-2.2.12/arch/i386/boot/tools/build.c:1.1.1.1
*** linux-2.2.12/arch/i386/boot/tools/build.c:1.1	Mon Dec 27 12:14:10 1999
--- linux-2.2.12/arch/i386/boot/tools/build.c	Mon Dec 27 12:14:10 1999
***************
*** 1,5 ****
  /*
!  *  $Id: build.c,v 1.1 1999/12/27 17:14:10 ibaldin Exp $
   *
   *  Copyright (C) 1991, 1992  Linus Torvalds
   *  Copyright (C) 1997 Martin Mares
--- 1,5 ----
  /*
!  *  $Id: build.c,v 1.1.1.1 1999/12/27 17:14:10 ibaldin Exp $
   *
   *  Copyright (C) 1991, 1992  Linus Torvalds
   *  Copyright (C) 1997 Martin Mares
Index: linux-2.2.12/arch/i386/kernel/bios32.c
diff -c linux-2.2.12/arch/i386/kernel/bios32.c:1.1 linux-2.2.12/arch/i386/kernel/bios32.c:1.1.1.1
*** linux-2.2.12/arch/i386/kernel/bios32.c:1.1	Mon Dec 27 12:14:11 1999
--- linux-2.2.12/arch/i386/kernel/bios32.c	Mon Dec 27 12:14:11 1999
***************
*** 1,7 ****
  /*
   * bios32.c - Low-Level PCI Access
   *
!  * $Id: bios32.c,v 1.1 1999/12/27 17:14:11 ibaldin Exp $
   *
   * Copyright 1993, 1994 Drew Eckhardt
   *      Visionary Computing
--- 1,7 ----
  /*
   * bios32.c - Low-Level PCI Access
   *
!  * $Id: bios32.c,v 1.1.1.1 1999/12/27 17:14:11 ibaldin Exp $
   *
   * Copyright 1993, 1994 Drew Eckhardt
   *      Visionary Computing
Index: linux-2.2.12/arch/mips/Makefile
diff -c linux-2.2.12/arch/mips/Makefile:1.1 linux-2.2.12/arch/mips/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/Makefile:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/Makefile	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # This file is subject to the terms and conditions of the GNU General Public
  # License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # This file is subject to the terms and conditions of the GNU General Public
  # License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/arc/Makefile
diff -c linux-2.2.12/arch/mips/arc/Makefile:1.1 linux-2.2.12/arch/mips/arc/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/arc/Makefile:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/Makefile	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
  # Makefile for the SGI arcs prom monitor library routines
  # under Linux.
  #
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
  # Makefile for the SGI arcs prom monitor library routines
  # under Linux.
  #
Index: linux-2.2.12/arch/mips/arc/cmdline.c
diff -c linux-2.2.12/arch/mips/arc/cmdline.c:1.1 linux-2.2.12/arch/mips/arc/cmdline.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/cmdline.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/cmdline.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: cmdline.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: cmdline.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/arc/console.c
diff -c linux-2.2.12/arch/mips/arc/console.c:1.1 linux-2.2.12/arch/mips/arc/console.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/console.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/console.c	Mon Dec 27 12:14:18 1999
***************
*** 4,10 ****
   * Copyright (C) 1996 David S. Miller (dm@sgi.com)
   * Compability with board caches, Ulf Carlsson
   *
!  * $Id: console.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/config.h>
  #include <linux/init.h>
--- 4,10 ----
   * Copyright (C) 1996 David S. Miller (dm@sgi.com)
   * Compability with board caches, Ulf Carlsson
   *
!  * $Id: console.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/config.h>
  #include <linux/init.h>
Index: linux-2.2.12/arch/mips/arc/env.c
diff -c linux-2.2.12/arch/mips/arc/env.c:1.1 linux-2.2.12/arch/mips/arc/env.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/env.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/env.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: env.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: env.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/arc/file.c
diff -c linux-2.2.12/arch/mips/arc/file.c:1.1 linux-2.2.12/arch/mips/arc/file.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/file.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/file.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: file.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: file.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
Index: linux-2.2.12/arch/mips/arc/identify.c
diff -c linux-2.2.12/arch/mips/arc/identify.c:1.1 linux-2.2.12/arch/mips/arc/identify.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/identify.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/identify.c	Mon Dec 27 12:14:18 1999
***************
*** 7,13 ****
   * 
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: identify.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 7,13 ----
   * 
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: identify.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/arc/init.c
diff -c linux-2.2.12/arch/mips/arc/init.c:1.1 linux-2.2.12/arch/mips/arc/init.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/init.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/init.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: init.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: init.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/arc/memory.c
diff -c linux-2.2.12/arch/mips/arc/memory.c:1.1 linux-2.2.12/arch/mips/arc/memory.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/memory.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/memory.c	Mon Dec 27 12:14:18 1999
***************
*** 4,10 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: memory.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 4,10 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: memory.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/arc/misc.c
diff -c linux-2.2.12/arch/mips/arc/misc.c:1.1 linux-2.2.12/arch/mips/arc/misc.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/misc.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/misc.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: misc.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * misc.c: Miscellaneous ARCS PROM routines.
   *
--- 1,4 ----
! /* $Id: misc.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * misc.c: Miscellaneous ARCS PROM routines.
   *
Index: linux-2.2.12/arch/mips/arc/printf.c
diff -c linux-2.2.12/arch/mips/arc/printf.c:1.1 linux-2.2.12/arch/mips/arc/printf.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/printf.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/printf.c	Mon Dec 27 12:14:18 1999
***************
*** 4,10 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@sgi.com)
   *
!  * $Id: printf.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/config.h>
  #include <linux/init.h>
--- 4,10 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@sgi.com)
   *
!  * $Id: printf.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/config.h>
  #include <linux/init.h>
Index: linux-2.2.12/arch/mips/arc/salone.c
diff -c linux-2.2.12/arch/mips/arc/salone.c:1.1 linux-2.2.12/arch/mips/arc/salone.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/salone.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/salone.c	Mon Dec 27 12:14:18 1999
***************
*** 4,10 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: salone.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
--- 4,10 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: salone.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
Index: linux-2.2.12/arch/mips/arc/time.c
diff -c linux-2.2.12/arch/mips/arc/time.c:1.1 linux-2.2.12/arch/mips/arc/time.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/time.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/time.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: time.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: time.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
Index: linux-2.2.12/arch/mips/arc/tree.c
diff -c linux-2.2.12/arch/mips/arc/tree.c:1.1 linux-2.2.12/arch/mips/arc/tree.c:1.1.1.1
*** linux-2.2.12/arch/mips/arc/tree.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/arc/tree.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: tree.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: tree.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/sgialib.h>
Index: linux-2.2.12/arch/mips/baget/Makefile
diff -c linux-2.2.12/arch/mips/baget/Makefile:1.1 linux-2.2.12/arch/mips/baget/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/baget/Makefile:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/Makefile	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
  #
  # Makefile for the Baget specific kernel interface routines
  # under Linux.
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
  #
  # Makefile for the Baget specific kernel interface routines
  # under Linux.
Index: linux-2.2.12/arch/mips/baget/baget.c
diff -c linux-2.2.12/arch/mips/baget/baget.c:1.1 linux-2.2.12/arch/mips/baget/baget.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/baget.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/baget.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: baget.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * baget.c: Baget low level stuff
   *
--- 1,4 ----
! /* $Id: baget.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * baget.c: Baget low level stuff
   *
Index: linux-2.2.12/arch/mips/baget/bagetIRQ.S
diff -c linux-2.2.12/arch/mips/baget/bagetIRQ.S:1.1 linux-2.2.12/arch/mips/baget/bagetIRQ.S:1.1.1.1
*** linux-2.2.12/arch/mips/baget/bagetIRQ.S:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/bagetIRQ.S	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: bagetIRQ.S,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   * bagetIRQ.S: Interrupt exception dispatch code for Baget/MIPS
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
--- 1,4 ----
! /* $Id: bagetIRQ.S,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   * bagetIRQ.S: Interrupt exception dispatch code for Baget/MIPS
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
Index: linux-2.2.12/arch/mips/baget/balo.c
diff -c linux-2.2.12/arch/mips/baget/balo.c:1.1 linux-2.2.12/arch/mips/baget/balo.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/balo.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/balo.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: balo.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * balo.c: BAget LOader
   *
--- 1,4 ----
! /* $Id: balo.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * balo.c: BAget LOader
   *
Index: linux-2.2.12/arch/mips/baget/balo_supp.S
diff -c linux-2.2.12/arch/mips/baget/balo_supp.S:1.1 linux-2.2.12/arch/mips/baget/balo_supp.S:1.1.1.1
*** linux-2.2.12/arch/mips/baget/balo_supp.S:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/balo_supp.S	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: balo_supp.S,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   * balo_supp.S: BAget Loader supplement
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
--- 1,4 ----
! /* $Id: balo_supp.S,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   * balo_supp.S: BAget Loader supplement
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
Index: linux-2.2.12/arch/mips/baget/irq.c
diff -c linux-2.2.12/arch/mips/baget/irq.c:1.1 linux-2.2.12/arch/mips/baget/irq.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/irq.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/irq.c	Mon Dec 27 12:14:18 1999
***************
*** 5,11 ****
   *      Code (mostly sleleton and comments) derived from DECstation IRQ
   *      handling.
   *
!  * $Id: irq.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <linux/init.h>
--- 5,11 ----
   *      Code (mostly sleleton and comments) derived from DECstation IRQ
   *      handling.
   *
!  * $Id: irq.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <linux/init.h>
Index: linux-2.2.12/arch/mips/baget/print.c
diff -c linux-2.2.12/arch/mips/baget/print.c:1.1 linux-2.2.12/arch/mips/baget/print.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/print.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/print.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: print.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * print.c: Simple print fascility
   *
--- 1,4 ----
! /* $Id: print.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * print.c: Simple print fascility
   *
Index: linux-2.2.12/arch/mips/baget/setup.c
diff -c linux-2.2.12/arch/mips/baget/setup.c:1.1 linux-2.2.12/arch/mips/baget/setup.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/setup.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/setup.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: setup.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * setup.c: Baget/MIPS specific setup, including init of the feature struct.
   *
--- 1,4 ----
! /* $Id: setup.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * setup.c: Baget/MIPS specific setup, including init of the feature struct.
   *
Index: linux-2.2.12/arch/mips/baget/time.c
diff -c linux-2.2.12/arch/mips/baget/time.c:1.1 linux-2.2.12/arch/mips/baget/time.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/time.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/time.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: time.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   * time.c: Baget/MIPS specific time handling details
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
--- 1,4 ----
! /* $Id: time.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   * time.c: Baget/MIPS specific time handling details
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
Index: linux-2.2.12/arch/mips/baget/vacserial.c
diff -c linux-2.2.12/arch/mips/baget/vacserial.c:1.1 linux-2.2.12/arch/mips/baget/vacserial.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/vacserial.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/vacserial.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: vacserial.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   * vacserial.c: VAC UART serial driver
   *              This code stealed and adopted from linux/drivers/char/serial.c
   *              See that for author info
--- 1,4 ----
! /* $Id: vacserial.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   * vacserial.c: VAC UART serial driver
   *              This code stealed and adopted from linux/drivers/char/serial.c
   *              See that for author info
Index: linux-2.2.12/arch/mips/baget/prom/Makefile
diff -c linux-2.2.12/arch/mips/baget/prom/Makefile:1.1 linux-2.2.12/arch/mips/baget/prom/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/baget/prom/Makefile:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/prom/Makefile	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
  # Makefile for the Baget/MIPS prom emulator library routines.
  #
  # Note! Dependencies are done automagically by 'make dep', which also
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
  # Makefile for the Baget/MIPS prom emulator library routines.
  #
  # Note! Dependencies are done automagically by 'make dep', which also
Index: linux-2.2.12/arch/mips/baget/prom/init.c
diff -c linux-2.2.12/arch/mips/baget/prom/init.c:1.1 linux-2.2.12/arch/mips/baget/prom/init.c:1.1.1.1
*** linux-2.2.12/arch/mips/baget/prom/init.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/baget/prom/init.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov 
   *
!  * $Id: init.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/bootinfo.h>
--- 3,9 ----
   *
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov 
   *
!  * $Id: init.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <asm/bootinfo.h>
Index: linux-2.2.12/arch/mips/boot/Makefile
diff -c linux-2.2.12/arch/mips/boot/Makefile:1.1 linux-2.2.12/arch/mips/boot/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/boot/Makefile:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/boot/Makefile	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # This file is subject to the terms and conditions of the GNU General Public
  # License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # This file is subject to the terms and conditions of the GNU General Public
  # License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/dec/irq.c
diff -c linux-2.2.12/arch/mips/dec/irq.c:1.1 linux-2.2.12/arch/mips/dec/irq.c:1.1.1.1
*** linux-2.2.12/arch/mips/dec/irq.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/irq.c	Mon Dec 27 12:14:18 1999
***************
*** 4,10 ****
   * Copyright (C) 1992 Linus Torvalds
   * Copyright (C) 1994, 1995, 1996, 1997 Ralf Baechle
   *
!  * $Id: irq.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <linux/init.h>
--- 4,10 ----
   * Copyright (C) 1992 Linus Torvalds
   * Copyright (C) 1994, 1995, 1996, 1997 Ralf Baechle
   *
!  * $Id: irq.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <linux/init.h>
Index: linux-2.2.12/arch/mips/dec/reset.c
diff -c linux-2.2.12/arch/mips/dec/reset.c:1.1 linux-2.2.12/arch/mips/dec/reset.c:1.1.1.1
*** linux-2.2.12/arch/mips/dec/reset.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/reset.c	Mon Dec 27 12:14:18 1999
***************
*** 1,5 ****
  /*
!  *  $Id: reset.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   *  Reset a DECstation machine.
   *
--- 1,5 ----
  /*
!  *  $Id: reset.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   *  Reset a DECstation machine.
   *
Index: linux-2.2.12/arch/mips/dec/rtc-dec.c
diff -c linux-2.2.12/arch/mips/dec/rtc-dec.c:1.1 linux-2.2.12/arch/mips/dec/rtc-dec.c:1.1.1.1
*** linux-2.2.12/arch/mips/dec/rtc-dec.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/rtc-dec.c	Mon Dec 27 12:14:18 1999
***************
*** 1,5 ****
  
! /* $Id: rtc-dec.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
  
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,5 ----
  
! /* $Id: rtc-dec.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
  
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/dec/prom/Makefile
diff -c linux-2.2.12/arch/mips/dec/prom/Makefile:1.1 linux-2.2.12/arch/mips/dec/prom/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/dec/prom/Makefile:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/prom/Makefile	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
  # Makefile for the DECstation prom monitor library routines
  # under Linux.
  #
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
  # Makefile for the DECstation prom monitor library routines
  # under Linux.
  #
Index: linux-2.2.12/arch/mips/dec/prom/cmdline.c
diff -c linux-2.2.12/arch/mips/dec/prom/cmdline.c:1.1 linux-2.2.12/arch/mips/dec/prom/cmdline.c:1.1.1.1
*** linux-2.2.12/arch/mips/dec/prom/cmdline.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/prom/cmdline.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1998 Harald Koerfgen
   *
!  * $Id: cmdline.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1998 Harald Koerfgen
   *
!  * $Id: cmdline.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/dec/prom/identify.c
diff -c linux-2.2.12/arch/mips/dec/prom/identify.c:1.1 linux-2.2.12/arch/mips/dec/prom/identify.c:1.1.1.1
*** linux-2.2.12/arch/mips/dec/prom/identify.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/prom/identify.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1998 Harald Koerfgen and Paul M. Antoine
   *
!  * $Id: identify.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1998 Harald Koerfgen and Paul M. Antoine
   *
!  * $Id: identify.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/dec/prom/init.c
diff -c linux-2.2.12/arch/mips/dec/prom/init.c:1.1 linux-2.2.12/arch/mips/dec/prom/init.c:1.1.1.1
*** linux-2.2.12/arch/mips/dec/prom/init.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/prom/init.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1998 Harald Koerfgen
   *
!  * $Id: init.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include "prom.h"
--- 3,9 ----
   *
   * Copyright (C) 1998 Harald Koerfgen
   *
!  * $Id: init.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include "prom.h"
Index: linux-2.2.12/arch/mips/dec/prom/memory.c
diff -c linux-2.2.12/arch/mips/dec/prom/memory.c:1.1 linux-2.2.12/arch/mips/dec/prom/memory.c:1.1.1.1
*** linux-2.2.12/arch/mips/dec/prom/memory.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/dec/prom/memory.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1998 Harald Koerfgen, Frieder Streffer and Paul M. Antoine
   *
!  * $Id: memory.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <asm/addrspace.h>
  #include <linux/init.h>
--- 3,9 ----
   *
   * Copyright (C) 1998 Harald Koerfgen, Frieder Streffer and Paul M. Antoine
   *
!  * $Id: memory.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <asm/addrspace.h>
  #include <linux/init.h>
Index: linux-2.2.12/arch/mips/jazz/Makefile
diff -c linux-2.2.12/arch/mips/jazz/Makefile:1.1 linux-2.2.12/arch/mips/jazz/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/jazz/Makefile:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/jazz/Makefile	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # Makefile for the Jazz family specific parts of the kernel
  #
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # Makefile for the Jazz family specific parts of the kernel
  #
Index: linux-2.2.12/arch/mips/jazz/floppy-jazz.c
diff -c linux-2.2.12/arch/mips/jazz/floppy-jazz.c:1.1 linux-2.2.12/arch/mips/jazz/floppy-jazz.c:1.1.1.1
*** linux-2.2.12/arch/mips/jazz/floppy-jazz.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/jazz/floppy-jazz.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: floppy-jazz.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: floppy-jazz.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/jazz/int-handler.S
diff -c linux-2.2.12/arch/mips/jazz/int-handler.S:1.1 linux-2.2.12/arch/mips/jazz/int-handler.S:1.1.1.1
*** linux-2.2.12/arch/mips/jazz/int-handler.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/jazz/int-handler.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: int-handler.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: int-handler.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/jazz/kbd-jazz.c
diff -c linux-2.2.12/arch/mips/jazz/kbd-jazz.c:1.1 linux-2.2.12/arch/mips/jazz/kbd-jazz.c:1.1.1.1
*** linux-2.2.12/arch/mips/jazz/kbd-jazz.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/jazz/kbd-jazz.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: kbd-jazz.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Low-level hardware access stuff for Jazz family machines.
   *
--- 1,4 ----
! /* $Id: kbd-jazz.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Low-level hardware access stuff for Jazz family machines.
   *
Index: linux-2.2.12/arch/mips/jazz/reset.c
diff -c linux-2.2.12/arch/mips/jazz/reset.c:1.1 linux-2.2.12/arch/mips/jazz/reset.c:1.1.1.1
*** linux-2.2.12/arch/mips/jazz/reset.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/jazz/reset.c	Mon Dec 27 12:14:17 1999
***************
*** 3,9 ****
   *
   *  Reset a Jazz machine.
   *
!  *  $Id: reset.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  #include <linux/sched.h>
--- 3,9 ----
   *
   *  Reset a Jazz machine.
   *
!  *  $Id: reset.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  #include <linux/sched.h>
Index: linux-2.2.12/arch/mips/jazz/rtc-jazz.c
diff -c linux-2.2.12/arch/mips/jazz/rtc-jazz.c:1.1 linux-2.2.12/arch/mips/jazz/rtc-jazz.c:1.1.1.1
*** linux-2.2.12/arch/mips/jazz/rtc-jazz.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/jazz/rtc-jazz.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: rtc-jazz.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: rtc-jazz.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/jazz/setup.c
diff -c linux-2.2.12/arch/mips/jazz/setup.c:1.1 linux-2.2.12/arch/mips/jazz/setup.c:1.1.1.1
*** linux-2.2.12/arch/mips/jazz/setup.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/jazz/setup.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: setup.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Setup pointers to hardware-dependent routines.
   *
--- 1,4 ----
! /* $Id: setup.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Setup pointers to hardware-dependent routines.
   *
Index: linux-2.2.12/arch/mips/kernel/entry.S
diff -c linux-2.2.12/arch/mips/kernel/entry.S:1.1 linux-2.2.12/arch/mips/kernel/entry.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/entry.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/entry.S	Mon Dec 27 12:14:17 1999
***************
*** 7,13 ****
   *
   * Copyright (C) 1994, 1995 by Ralf Baechle
   *
!  * $Id: entry.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  /*
--- 7,13 ----
   *
   * Copyright (C) 1994, 1995 by Ralf Baechle
   *
!  * $Id: entry.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  /*
Index: linux-2.2.12/arch/mips/kernel/fpe.c
diff -c linux-2.2.12/arch/mips/kernel/fpe.c:1.1 linux-2.2.12/arch/mips/kernel/fpe.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/fpe.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/fpe.c	Mon Dec 27 12:14:17 1999
***************
*** 6,12 ****
   *
   * Copyright (C) 1997 Ralf Baechle
   *
!  * $Id: fpe.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/kernel.h>
  #include <linux/module.h>
--- 6,12 ----
   *
   * Copyright (C) 1997 Ralf Baechle
   *
!  * $Id: fpe.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/kernel.h>
  #include <linux/module.h>
Index: linux-2.2.12/arch/mips/kernel/gdb-low.S
diff -c linux-2.2.12/arch/mips/kernel/gdb-low.S:1.1 linux-2.2.12/arch/mips/kernel/gdb-low.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/gdb-low.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/gdb-low.S	Mon Dec 27 12:14:17 1999
***************
*** 5,11 ****
   *
   * Copyright (C) 1995 Andreas Busse
   *
!  * $Id: gdb-low.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  #include <linux/sys.h>
--- 5,11 ----
   *
   * Copyright (C) 1995 Andreas Busse
   *
!  * $Id: gdb-low.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  #include <linux/sys.h>
Index: linux-2.2.12/arch/mips/kernel/gdb-stub.c
diff -c linux-2.2.12/arch/mips/kernel/gdb-stub.c:1.1 linux-2.2.12/arch/mips/kernel/gdb-stub.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/gdb-stub.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/gdb-stub.c	Mon Dec 27 12:14:17 1999
***************
*** 12,18 ****
   *
   *  Copyright (C) 1995 Andreas Busse
   *
!  * $Id: gdb-stub.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  /*
--- 12,18 ----
   *
   *  Copyright (C) 1995 Andreas Busse
   *
!  * $Id: gdb-stub.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  /*
Index: linux-2.2.12/arch/mips/kernel/head.S
diff -c linux-2.2.12/arch/mips/kernel/head.S:1.1 linux-2.2.12/arch/mips/kernel/head.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/head.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/head.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: head.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * arch/mips/kernel/head.S
   *
--- 1,4 ----
! /* $Id: head.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * arch/mips/kernel/head.S
   *
Index: linux-2.2.12/arch/mips/kernel/ipc.c
diff -c linux-2.2.12/arch/mips/kernel/ipc.c:1.1 linux-2.2.12/arch/mips/kernel/ipc.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/ipc.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/ipc.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: ipc.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file contains various random system calls that
   * have a non-standard calling sequence on the Linux/MIPS
--- 1,4 ----
! /* $Id: ipc.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file contains various random system calls that
   * have a non-standard calling sequence on the Linux/MIPS
Index: linux-2.2.12/arch/mips/kernel/irix5sys.h
diff -c linux-2.2.12/arch/mips/kernel/irix5sys.h:1.1 linux-2.2.12/arch/mips/kernel/irix5sys.h:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/irix5sys.h:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/irix5sys.h	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: irix5sys.h,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * irix5sys.h: 32-bit IRIX5 ABI system call table.
   *
--- 1,4 ----
! /* $Id: irix5sys.h,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * irix5sys.h: 32-bit IRIX5 ABI system call table.
   *
Index: linux-2.2.12/arch/mips/kernel/irixelf.c
diff -c linux-2.2.12/arch/mips/kernel/irixelf.c:1.1 linux-2.2.12/arch/mips/kernel/irixelf.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/irixelf.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/irixelf.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: irixelf.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * irixelf.c: Code to load IRIX ELF executables which conform to
   *            the MIPS ABI.
--- 1,4 ----
! /* $Id: irixelf.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * irixelf.c: Code to load IRIX ELF executables which conform to
   *            the MIPS ABI.
Index: linux-2.2.12/arch/mips/kernel/irixinv.c
diff -c linux-2.2.12/arch/mips/kernel/irixinv.c:1.1 linux-2.2.12/arch/mips/kernel/irixinv.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/irixinv.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/irixinv.c	Mon Dec 27 12:14:17 1999
***************
*** 5,11 ****
   *
   * Miguel de Icaza, 1997.
   *
!  * $Id: irixinv.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/mm.h>
  #include <linux/init.h>
--- 5,11 ----
   *
   * Miguel de Icaza, 1997.
   *
!  * $Id: irixinv.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/mm.h>
  #include <linux/init.h>
Index: linux-2.2.12/arch/mips/kernel/irixioctl.c
diff -c linux-2.2.12/arch/mips/kernel/irixioctl.c:1.1 linux-2.2.12/arch/mips/kernel/irixioctl.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/irixioctl.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/irixioctl.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: irixioctl.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   * irixioctl.c: A fucking mess...
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
--- 1,4 ----
! /* $Id: irixioctl.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   * irixioctl.c: A fucking mess...
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
Index: linux-2.2.12/arch/mips/kernel/irixsig.c
diff -c linux-2.2.12/arch/mips/kernel/irixsig.c:1.1 linux-2.2.12/arch/mips/kernel/irixsig.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/irixsig.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/irixsig.c	Mon Dec 27 12:14:17 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: irixsig.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: irixsig.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/kernel/irq.c
diff -c linux-2.2.12/arch/mips/kernel/irq.c:1.1 linux-2.2.12/arch/mips/kernel/irq.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/irq.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/irq.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: irq.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: irq.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/mips_ksyms.c
diff -c linux-2.2.12/arch/mips/kernel/mips_ksyms.c:1.1 linux-2.2.12/arch/mips/kernel/mips_ksyms.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/mips_ksyms.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/mips_ksyms.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: mips_ksyms.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Export MIPS-specific functions needed for loadable modules.
   *
--- 1,4 ----
! /* $Id: mips_ksyms.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Export MIPS-specific functions needed for loadable modules.
   *
Index: linux-2.2.12/arch/mips/kernel/pci.c
diff -c linux-2.2.12/arch/mips/kernel/pci.c:1.1 linux-2.2.12/arch/mips/kernel/pci.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/pci.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/pci.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: pci.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: pci.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/process.c
diff -c linux-2.2.12/arch/mips/kernel/process.c:1.1 linux-2.2.12/arch/mips/kernel/process.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/process.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/process.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: process.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: process.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/ptrace.c
diff -c linux-2.2.12/arch/mips/kernel/ptrace.c:1.1 linux-2.2.12/arch/mips/kernel/ptrace.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/ptrace.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/ptrace.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: ptrace.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: ptrace.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/r2300_fpu.S
diff -c linux-2.2.12/arch/mips/kernel/r2300_fpu.S:1.1 linux-2.2.12/arch/mips/kernel/r2300_fpu.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/r2300_fpu.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/r2300_fpu.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: r2300_fpu.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   * r2300_fpu.S: Save/restore floating point context for signal handlers.
   *
   * This file is subject to the terms and conditions of the GNU General Public
--- 1,4 ----
! /* $Id: r2300_fpu.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   * r2300_fpu.S: Save/restore floating point context for signal handlers.
   *
   * This file is subject to the terms and conditions of the GNU General Public
Index: linux-2.2.12/arch/mips/kernel/r2300_misc.S
diff -c linux-2.2.12/arch/mips/kernel/r2300_misc.S:1.1 linux-2.2.12/arch/mips/kernel/r2300_misc.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/r2300_misc.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/r2300_misc.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: r2300_misc.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   * r2300_misc.S: Misc. exception handling code for R3000/R2000.
   *
   * Copyright (C) 1994, 1995, 1996 by Ralf Baechle and Andreas Busse
--- 1,4 ----
! /* $Id: r2300_misc.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   * r2300_misc.S: Misc. exception handling code for R3000/R2000.
   *
   * Copyright (C) 1994, 1995, 1996 by Ralf Baechle and Andreas Busse
Index: linux-2.2.12/arch/mips/kernel/r2300_switch.S
diff -c linux-2.2.12/arch/mips/kernel/r2300_switch.S:1.1 linux-2.2.12/arch/mips/kernel/r2300_switch.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/r2300_switch.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/r2300_switch.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: r2300_switch.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * r2300_switch.S: R2300 specific task switching code.
   *
--- 1,4 ----
! /* $Id: r2300_switch.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * r2300_switch.S: R2300 specific task switching code.
   *
Index: linux-2.2.12/arch/mips/kernel/r4k_fpu.S
diff -c linux-2.2.12/arch/mips/kernel/r4k_fpu.S:1.1 linux-2.2.12/arch/mips/kernel/r4k_fpu.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/r4k_fpu.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/r4k_fpu.S	Mon Dec 27 12:14:17 1999
***************
*** 10,16 ****
   * Multi-arch abstraction and asm macros for easier reading:
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: r4k_fpu.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/fpregdef.h>
--- 10,16 ----
   * Multi-arch abstraction and asm macros for easier reading:
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: r4k_fpu.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/fpregdef.h>
Index: linux-2.2.12/arch/mips/kernel/r4k_misc.S
diff -c linux-2.2.12/arch/mips/kernel/r4k_misc.S:1.1 linux-2.2.12/arch/mips/kernel/r4k_misc.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/r4k_misc.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/r4k_misc.S	Mon Dec 27 12:14:17 1999
***************
*** 6,12 ****
   * Multi-cpu abstraction and reworking:
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: r4k_misc.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/current.h>
--- 6,12 ----
   * Multi-cpu abstraction and reworking:
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: r4k_misc.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/current.h>
Index: linux-2.2.12/arch/mips/kernel/r4k_switch.S
diff -c linux-2.2.12/arch/mips/kernel/r4k_switch.S:1.1 linux-2.2.12/arch/mips/kernel/r4k_switch.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/r4k_switch.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/r4k_switch.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: r4k_switch.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: r4k_switch.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/r6000_fpu.S
diff -c linux-2.2.12/arch/mips/kernel/r6000_fpu.S:1.1 linux-2.2.12/arch/mips/kernel/r6000_fpu.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/r6000_fpu.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/r6000_fpu.S	Mon Dec 27 12:14:17 1999
***************
*** 10,16 ****
   * Multi-arch abstraction and asm macros for easier reading:
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: r6000_fpu.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/fpregdef.h>
--- 10,16 ----
   * Multi-arch abstraction and asm macros for easier reading:
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: r6000_fpu.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/fpregdef.h>
Index: linux-2.2.12/arch/mips/kernel/scall_o32.S
diff -c linux-2.2.12/arch/mips/kernel/scall_o32.S:1.1 linux-2.2.12/arch/mips/kernel/scall_o32.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/scall_o32.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/scall_o32.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: scall_o32.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: scall_o32.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/setup.c
diff -c linux-2.2.12/arch/mips/kernel/setup.c:1.1 linux-2.2.12/arch/mips/kernel/setup.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/setup.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/setup.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: setup.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: setup.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/signal.c
diff -c linux-2.2.12/arch/mips/kernel/signal.c:1.1 linux-2.2.12/arch/mips/kernel/signal.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/signal.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/signal.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: signal.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   *  linux/arch/mips/kernel/signal.c
   *
--- 1,4 ----
! /* $Id: signal.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   *  linux/arch/mips/kernel/signal.c
   *
Index: linux-2.2.12/arch/mips/kernel/softfp.S
diff -c linux-2.2.12/arch/mips/kernel/softfp.S:1.1 linux-2.2.12/arch/mips/kernel/softfp.S:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/softfp.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/softfp.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: softfp.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: softfp.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/syscall.c
diff -c linux-2.2.12/arch/mips/kernel/syscall.c:1.1 linux-2.2.12/arch/mips/kernel/syscall.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/syscall.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/syscall.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: syscall.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: syscall.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/syscalls.h
diff -c linux-2.2.12/arch/mips/kernel/syscalls.h:1.1 linux-2.2.12/arch/mips/kernel/syscalls.h:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/syscalls.h:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/syscalls.h	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: syscalls.h,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: syscalls.h,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/sysirix.c
diff -c linux-2.2.12/arch/mips/kernel/sysirix.c:1.1 linux-2.2.12/arch/mips/kernel/sysirix.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/sysirix.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/sysirix.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: sysirix.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * sysirix.c: IRIX system call emulation.
   *
--- 1,4 ----
! /* $Id: sysirix.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * sysirix.c: IRIX system call emulation.
   *
Index: linux-2.2.12/arch/mips/kernel/sysmips.c
diff -c linux-2.2.12/arch/mips/kernel/sysmips.c:1.1 linux-2.2.12/arch/mips/kernel/sysmips.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/sysmips.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/sysmips.c	Mon Dec 27 12:14:17 1999
***************
*** 7,13 ****
   *
   * Copyright (C) 1995, 1996, 1997 by Ralf Baechle
   *
!  * $Id: sysmips.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <linux/linkage.h>
--- 7,13 ----
   *
   * Copyright (C) 1995, 1996, 1997 by Ralf Baechle
   *
!  * $Id: sysmips.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <linux/linkage.h>
Index: linux-2.2.12/arch/mips/kernel/time.c
diff -c linux-2.2.12/arch/mips/kernel/time.c:1.1 linux-2.2.12/arch/mips/kernel/time.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/time.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/time.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: time.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   *  Copyright (C) 1991, 1992, 1995  Linus Torvalds
   *  Copyright (C) 1996, 1997, 1998  Ralf Baechle
--- 1,4 ----
! /* $Id: time.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   *  Copyright (C) 1991, 1992, 1995  Linus Torvalds
   *  Copyright (C) 1996, 1997, 1998  Ralf Baechle
Index: linux-2.2.12/arch/mips/kernel/traps.c
diff -c linux-2.2.12/arch/mips/kernel/traps.c:1.1 linux-2.2.12/arch/mips/kernel/traps.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/traps.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/traps.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: traps.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: traps.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/kernel/unaligned.c
diff -c linux-2.2.12/arch/mips/kernel/unaligned.c:1.1 linux-2.2.12/arch/mips/kernel/unaligned.c:1.1.1.1
*** linux-2.2.12/arch/mips/kernel/unaligned.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/kernel/unaligned.c	Mon Dec 27 12:14:17 1999
***************
*** 7,13 ****
   *
   * Copyright (C) 1996, 1998 by Ralf Baechle
   *
!  * $Id: unaligned.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file contains exception handler for address error exception with the
   * special capability to execute faulting instructions in software.  The
--- 7,13 ----
   *
   * Copyright (C) 1996, 1998 by Ralf Baechle
   *
!  * $Id: unaligned.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file contains exception handler for address error exception with the
   * special capability to execute faulting instructions in software.  The
Index: linux-2.2.12/arch/mips/lib/Makefile
diff -c linux-2.2.12/arch/mips/lib/Makefile:1.1 linux-2.2.12/arch/mips/lib/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/lib/Makefile:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/Makefile	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # Makefile for MIPS-specific library files..
  #
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
  #
  # Makefile for MIPS-specific library files..
  #
Index: linux-2.2.12/arch/mips/lib/csum_partial.S
diff -c linux-2.2.12/arch/mips/lib/csum_partial.S:1.1 linux-2.2.12/arch/mips/lib/csum_partial.S:1.1.1.1
*** linux-2.2.12/arch/mips/lib/csum_partial.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/csum_partial.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: csum_partial.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: csum_partial.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/csum_partial_copy.c
diff -c linux-2.2.12/arch/mips/lib/csum_partial_copy.c:1.1 linux-2.2.12/arch/mips/lib/csum_partial_copy.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/csum_partial_copy.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/csum_partial_copy.c	Mon Dec 27 12:14:17 1999
***************
*** 14,20 ****
   *		as published by the Free Software Foundation; either version
   *		2 of the License, or (at your option) any later version.
   *
!  * $Id: csum_partial_copy.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <net/checksum.h>
  #include <linux/types.h>
--- 14,20 ----
   *		as published by the Free Software Foundation; either version
   *		2 of the License, or (at your option) any later version.
   *
!  * $Id: csum_partial_copy.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <net/checksum.h>
  #include <linux/types.h>
Index: linux-2.2.12/arch/mips/lib/floppy-no.c
diff -c linux-2.2.12/arch/mips/lib/floppy-no.c:1.1 linux-2.2.12/arch/mips/lib/floppy-no.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/floppy-no.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/floppy-no.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: floppy-no.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: floppy-no.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/floppy-std.c
diff -c linux-2.2.12/arch/mips/lib/floppy-std.c:1.1 linux-2.2.12/arch/mips/lib/floppy-std.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/floppy-std.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/floppy-std.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: floppy-std.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: floppy-std.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/ide-no.c
diff -c linux-2.2.12/arch/mips/lib/ide-no.c:1.1 linux-2.2.12/arch/mips/lib/ide-no.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/ide-no.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/ide-no.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: ide-no.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: ide-no.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/ide-std.c
diff -c linux-2.2.12/arch/mips/lib/ide-std.c:1.1 linux-2.2.12/arch/mips/lib/ide-std.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/ide-std.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/ide-std.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: ide-std.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: ide-std.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/kbd-no.c
diff -c linux-2.2.12/arch/mips/lib/kbd-no.c:1.1 linux-2.2.12/arch/mips/lib/kbd-no.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/kbd-no.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/kbd-no.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: kbd-no.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: kbd-no.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/kbd-std.c
diff -c linux-2.2.12/arch/mips/lib/kbd-std.c:1.1 linux-2.2.12/arch/mips/lib/kbd-std.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/kbd-std.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/kbd-std.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: kbd-std.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: kbd-std.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/memcpy.S
diff -c linux-2.2.12/arch/mips/lib/memcpy.S:1.1 linux-2.2.12/arch/mips/lib/memcpy.S:1.1.1.1
*** linux-2.2.12/arch/mips/lib/memcpy.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/memcpy.S	Mon Dec 27 12:14:17 1999
***************
*** 3,9 ****
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
   *
!  * $Id: memcpy.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Unified implementation of memcpy, memmove and the __copy_user backend.
   * For __rmemcpy and memmove an exception is always a kernel bug, therefore
--- 3,9 ----
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
   *
!  * $Id: memcpy.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * Unified implementation of memcpy, memmove and the __copy_user backend.
   * For __rmemcpy and memmove an exception is always a kernel bug, therefore
Index: linux-2.2.12/arch/mips/lib/memset.S
diff -c linux-2.2.12/arch/mips/lib/memset.S:1.1 linux-2.2.12/arch/mips/lib/memset.S:1.1.1.1
*** linux-2.2.12/arch/mips/lib/memset.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/memset.S	Mon Dec 27 12:14:17 1999
***************
*** 7,13 ****
   *
   * Copyright (C) 1998 by Ralf Baechle
   *
!  * $Id: memset.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/offset.h>
--- 7,13 ----
   *
   * Copyright (C) 1998 by Ralf Baechle
   *
!  * $Id: memset.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/offset.h>
Index: linux-2.2.12/arch/mips/lib/rtc-no.c
diff -c linux-2.2.12/arch/mips/lib/rtc-no.c:1.1 linux-2.2.12/arch/mips/lib/rtc-no.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/rtc-no.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/rtc-no.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: rtc-no.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: rtc-no.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/rtc-std.c
diff -c linux-2.2.12/arch/mips/lib/rtc-std.c:1.1 linux-2.2.12/arch/mips/lib/rtc-std.c:1.1.1.1
*** linux-2.2.12/arch/mips/lib/rtc-std.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/rtc-std.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: rtc-std.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: rtc-std.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/lib/strlen_user.S
diff -c linux-2.2.12/arch/mips/lib/strlen_user.S:1.1 linux-2.2.12/arch/mips/lib/strlen_user.S:1.1.1.1
*** linux-2.2.12/arch/mips/lib/strlen_user.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/strlen_user.S	Mon Dec 27 12:14:17 1999
***************
*** 7,13 ****
   *
   * Copyright (c) 1996, 1998 by Ralf Baechle
   *
!  * $Id: strlen_user.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/offset.h>
--- 7,13 ----
   *
   * Copyright (c) 1996, 1998 by Ralf Baechle
   *
!  * $Id: strlen_user.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <asm/asm.h>
  #include <asm/offset.h>
Index: linux-2.2.12/arch/mips/lib/strncpy_user.S
diff -c linux-2.2.12/arch/mips/lib/strncpy_user.S:1.1 linux-2.2.12/arch/mips/lib/strncpy_user.S:1.1.1.1
*** linux-2.2.12/arch/mips/lib/strncpy_user.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/lib/strncpy_user.S	Mon Dec 27 12:14:17 1999
***************
*** 7,13 ****
   *
   * Copyright (c) 1996 by Ralf Baechle
   *
!  * $Id: strncpy_user.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <asm/asm.h>
--- 7,13 ----
   *
   * Copyright (c) 1996 by Ralf Baechle
   *
!  * $Id: strncpy_user.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/errno.h>
  #include <asm/asm.h>
Index: linux-2.2.12/arch/mips/mm/andes.c
diff -c linux-2.2.12/arch/mips/mm/andes.c:1.1 linux-2.2.12/arch/mips/mm/andes.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/andes.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/andes.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: andes.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * andes.c: MMU and cache operations for the R10000 (ANDES).
   *
--- 1,4 ----
! /* $Id: andes.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * andes.c: MMU and cache operations for the R10000 (ANDES).
   *
Index: linux-2.2.12/arch/mips/mm/fault.c
diff -c linux-2.2.12/arch/mips/mm/fault.c:1.1 linux-2.2.12/arch/mips/mm/fault.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/fault.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/fault.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: fault.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: fault.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/mm/init.c
diff -c linux-2.2.12/arch/mips/mm/init.c:1.1 linux-2.2.12/arch/mips/mm/init.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/init.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/init.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: init.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: init.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/mm/loadmmu.c
diff -c linux-2.2.12/arch/mips/mm/loadmmu.c:1.1 linux-2.2.12/arch/mips/mm/loadmmu.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/loadmmu.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/loadmmu.c	Mon Dec 27 12:14:17 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: loadmmu.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: loadmmu.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/mm/r2300.c
diff -c linux-2.2.12/arch/mips/mm/r2300.c:1.1 linux-2.2.12/arch/mips/mm/r2300.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/r2300.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/r2300.c	Mon Dec 27 12:14:17 1999
***************
*** 7,13 ****
   * Copyright (C) 1998 Harald Koerfgen
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
   *
!  * $Id: r2300.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 7,13 ----
   * Copyright (C) 1998 Harald Koerfgen
   * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
   *
!  * $Id: r2300.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/mm/r4xx0.c
diff -c linux-2.2.12/arch/mips/mm/r4xx0.c:1.1 linux-2.2.12/arch/mips/mm/r4xx0.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/r4xx0.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/r4xx0.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: r4xx0.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: r4xx0.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/mm/r6000.c
diff -c linux-2.2.12/arch/mips/mm/r6000.c:1.1 linux-2.2.12/arch/mips/mm/r6000.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/r6000.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/r6000.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: r6000.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * r6000.c: MMU and cache routines for the R6000 processors.
   *
--- 1,4 ----
! /* $Id: r6000.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * r6000.c: MMU and cache routines for the R6000 processors.
   *
Index: linux-2.2.12/arch/mips/mm/tfp.c
diff -c linux-2.2.12/arch/mips/mm/tfp.c:1.1 linux-2.2.12/arch/mips/mm/tfp.c:1.1.1.1
*** linux-2.2.12/arch/mips/mm/tfp.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/mm/tfp.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: tfp.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * tfp.c: MMU and cache routines specific to the r8000 (TFP).
   *
--- 1,4 ----
! /* $Id: tfp.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * tfp.c: MMU and cache routines specific to the r8000 (TFP).
   *
Index: linux-2.2.12/arch/mips/sgi/kernel/Makefile
diff -c linux-2.2.12/arch/mips/sgi/kernel/Makefile:1.1 linux-2.2.12/arch/mips/sgi/kernel/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/Makefile:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/sgi/kernel/Makefile	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
  # Makefile for the SGI specific kernel interface routines
  # under Linux.
  #
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
  # Makefile for the SGI specific kernel interface routines
  # under Linux.
  #
Index: linux-2.2.12/arch/mips/sgi/kernel/indyIRQ.S
diff -c linux-2.2.12/arch/mips/sgi/kernel/indyIRQ.S:1.1 linux-2.2.12/arch/mips/sgi/kernel/indyIRQ.S:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/indyIRQ.S:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/sgi/kernel/indyIRQ.S	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: indyIRQ.S,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   * indyIRQ.S: Interrupt exception dispatch code for FullHouse and
   *            Guiness.
   *
--- 1,4 ----
! /* $Id: indyIRQ.S,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   * indyIRQ.S: Interrupt exception dispatch code for FullHouse and
   *            Guiness.
   *
Index: linux-2.2.12/arch/mips/sgi/kernel/indy_hpc.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/indy_hpc.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/indy_hpc.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/indy_hpc.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/sgi/kernel/indy_hpc.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: indy_hpc.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * indy_hpc.c: Routines for generic manipulation of the HPC controllers.
   *
--- 1,4 ----
! /* $Id: indy_hpc.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * indy_hpc.c: Routines for generic manipulation of the HPC controllers.
   *
Index: linux-2.2.12/arch/mips/sgi/kernel/indy_int.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/indy_int.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/indy_int.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/indy_int.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/sgi/kernel/indy_int.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: indy_int.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * indy_int.c: Routines for generic manipulation of the INT[23] ASIC
   *             found on INDY workstations..
--- 1,4 ----
! /* $Id: indy_int.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * indy_int.c: Routines for generic manipulation of the INT[23] ASIC
   *             found on INDY workstations..
Index: linux-2.2.12/arch/mips/sgi/kernel/indy_mc.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/indy_mc.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/indy_mc.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/indy_mc.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/sgi/kernel/indy_mc.c	Mon Dec 27 12:14:17 1999
***************
*** 4,10 ****
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   * Copyright (C) 1999 Andrew R. Baker (andrewb@uab.edu) - Indigo2 changes
   *
!  * $Id: indy_mc.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 4,10 ----
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   * Copyright (C) 1999 Andrew R. Baker (andrewb@uab.edu) - Indigo2 changes
   *
!  * $Id: indy_mc.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/sgi/kernel/indy_rtc.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/indy_rtc.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/indy_rtc.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/indy_rtc.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sgi/kernel/indy_rtc.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: indy_rtc.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: indy_rtc.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/sgi/kernel/indy_sc.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/indy_sc.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/indy_sc.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/indy_sc.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sgi/kernel/indy_sc.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: indy_sc.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * indy_sc.c: Indy cache managment functions.
   *
--- 1,4 ----
! /* $Id: indy_sc.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * indy_sc.c: Indy cache managment functions.
   *
Index: linux-2.2.12/arch/mips/sgi/kernel/indy_timer.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/indy_timer.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/indy_timer.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/indy_timer.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/sgi/kernel/indy_timer.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: indy_timer.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * indy_timer.c: Setting up the clock on the INDY 8254 controller.
   *
--- 1,4 ----
! /* $Id: indy_timer.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * indy_timer.c: Setting up the clock on the INDY 8254 controller.
   *
Index: linux-2.2.12/arch/mips/sgi/kernel/reset.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/reset.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/reset.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/reset.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sgi/kernel/reset.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: reset.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * Reset a SGI.
   *
--- 1,4 ----
! /* $Id: reset.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * Reset a SGI.
   *
Index: linux-2.2.12/arch/mips/sgi/kernel/setup.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/setup.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/setup.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/setup.c:1.1	Mon Dec 27 12:14:17 1999
--- linux-2.2.12/arch/mips/sgi/kernel/setup.c	Mon Dec 27 12:14:17 1999
***************
*** 1,4 ****
! /* $Id: setup.c,v 1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * setup.c: SGI specific setup, including init of the feature struct.
   *
--- 1,4 ----
! /* $Id: setup.c,v 1.1.1.1 1999/12/27 17:14:17 ibaldin Exp $
   *
   * setup.c: SGI specific setup, including init of the feature struct.
   *
Index: linux-2.2.12/arch/mips/sgi/kernel/system.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/system.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/system.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/system.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sgi/kernel/system.c	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: system.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
--- 3,9 ----
   *
   * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
   *
!  * $Id: system.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   */
  #include <linux/init.h>
  #include <linux/kernel.h>
Index: linux-2.2.12/arch/mips/sgi/kernel/time.c
diff -c linux-2.2.12/arch/mips/sgi/kernel/time.c:1.1 linux-2.2.12/arch/mips/sgi/kernel/time.c:1.1.1.1
*** linux-2.2.12/arch/mips/sgi/kernel/time.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sgi/kernel/time.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: time.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   * time.c: Generic SGI time_init() code, this will dispatch to the
   *         appropriate per-architecture time/counter init code.
   *
--- 1,4 ----
! /* $Id: time.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   * time.c: Generic SGI time_init() code, this will dispatch to the
   *         appropriate per-architecture time/counter init code.
   *
Index: linux-2.2.12/arch/mips/sni/Makefile
diff -c linux-2.2.12/arch/mips/sni/Makefile:1.1 linux-2.2.12/arch/mips/sni/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/sni/Makefile:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sni/Makefile	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
  #
  # Makefile for the SNI specific part of the kernel
  #
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
  #
  # Makefile for the SNI specific part of the kernel
  #
Index: linux-2.2.12/arch/mips/sni/int-handler.S
diff -c linux-2.2.12/arch/mips/sni/int-handler.S:1.1 linux-2.2.12/arch/mips/sni/int-handler.S:1.1.1.1
*** linux-2.2.12/arch/mips/sni/int-handler.S:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sni/int-handler.S	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: int-handler.S,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * SNI RM200 PCI specific interrupt handler code.
   *
--- 1,4 ----
! /* $Id: int-handler.S,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * SNI RM200 PCI specific interrupt handler code.
   *
Index: linux-2.2.12/arch/mips/sni/io.c
diff -c linux-2.2.12/arch/mips/sni/io.c:1.1 linux-2.2.12/arch/mips/sni/io.c:1.1.1.1
*** linux-2.2.12/arch/mips/sni/io.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sni/io.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: io.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: io.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/sni/pci.c
diff -c linux-2.2.12/arch/mips/sni/pci.c:1.1 linux-2.2.12/arch/mips/sni/pci.c:1.1.1.1
*** linux-2.2.12/arch/mips/sni/pci.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sni/pci.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: pci.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
--- 1,4 ----
! /* $Id: pci.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
Index: linux-2.2.12/arch/mips/sni/pcimt_scache.c
diff -c linux-2.2.12/arch/mips/sni/pcimt_scache.c:1.1 linux-2.2.12/arch/mips/sni/pcimt_scache.c:1.1.1.1
*** linux-2.2.12/arch/mips/sni/pcimt_scache.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sni/pcimt_scache.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: pcimt_scache.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * arch/mips/sni/pcimt_scache.c
   *
--- 1,4 ----
! /* $Id: pcimt_scache.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * arch/mips/sni/pcimt_scache.c
   *
Index: linux-2.2.12/arch/mips/sni/setup.c
diff -c linux-2.2.12/arch/mips/sni/setup.c:1.1 linux-2.2.12/arch/mips/sni/setup.c:1.1.1.1
*** linux-2.2.12/arch/mips/sni/setup.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/sni/setup.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: setup.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * Setup pointers to hardware-dependent routines.
   *
--- 1,4 ----
! /* $Id: setup.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * Setup pointers to hardware-dependent routines.
   *
Index: linux-2.2.12/arch/mips/tools/Makefile
diff -c linux-2.2.12/arch/mips/tools/Makefile:1.1 linux-2.2.12/arch/mips/tools/Makefile:1.1.1.1
*** linux-2.2.12/arch/mips/tools/Makefile:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/tools/Makefile	Mon Dec 27 12:14:18 1999
***************
*** 3,9 ****
  # Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  # Copyright (C) 1997 Ralf Baechle (ralf@gnu.ai.mit.edu)
  #
! # $Id: Makefile,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
  #
  TARGET	:= $(TOPDIR)/include/asm-$(ARCH)/offset.h
  
--- 3,9 ----
  # Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  # Copyright (C) 1997 Ralf Baechle (ralf@gnu.ai.mit.edu)
  #
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
  #
  TARGET	:= $(TOPDIR)/include/asm-$(ARCH)/offset.h
  
Index: linux-2.2.12/arch/mips/tools/offset.c
diff -c linux-2.2.12/arch/mips/tools/offset.c:1.1 linux-2.2.12/arch/mips/tools/offset.c:1.1.1.1
*** linux-2.2.12/arch/mips/tools/offset.c:1.1	Mon Dec 27 12:14:18 1999
--- linux-2.2.12/arch/mips/tools/offset.c	Mon Dec 27 12:14:18 1999
***************
*** 1,4 ****
! /* $Id: offset.c,v 1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * offset.c: Calculate pt_regs and task_struct offsets.
   *
--- 1,4 ----
! /* $Id: offset.c,v 1.1.1.1 1999/12/27 17:14:18 ibaldin Exp $
   *
   * offset.c: Calculate pt_regs and task_struct offsets.
   *
Index: linux-2.2.12/arch/ppc/config.in
diff -c linux-2.2.12/arch/ppc/config.in:1.1 linux-2.2.12/arch/ppc/config.in:1.1.1.1
*** linux-2.2.12/arch/ppc/config.in:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/config.in	Mon Dec 27 12:14:19 1999
***************
*** 1,4 ****
! # $Id: config.in,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
  # For a description of the syntax of this configuration file,
  # see the Configure script.
  #
--- 1,4 ----
! # $Id: config.in,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
  # For a description of the syntax of this configuration file,
  # see the Configure script.
  #
Index: linux-2.2.12/arch/ppc/boot/head.S
diff -c linux-2.2.12/arch/ppc/boot/head.S:1.1 linux-2.2.12/arch/ppc/boot/head.S:1.1.1.1
*** linux-2.2.12/arch/ppc/boot/head.S:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/boot/head.S	Mon Dec 27 12:14:19 1999
***************
*** 6,12 ****
  	.text
  
  /*
!  * $Id: head.S,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *	
   * Boot loader philosophy:
   *      ROM loads us to some arbitrary location
--- 6,12 ----
  	.text
  
  /*
!  * $Id: head.S,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *	
   * Boot loader philosophy:
   *      ROM loads us to some arbitrary location
Index: linux-2.2.12/arch/ppc/boot/misc.c
diff -c linux-2.2.12/arch/ppc/boot/misc.c:1.1 linux-2.2.12/arch/ppc/boot/misc.c:1.1.1.1
*** linux-2.2.12/arch/ppc/boot/misc.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/boot/misc.c	Mon Dec 27 12:14:19 1999
***************
*** 1,7 ****
  /*
   * misc.c
   *
!  * $Id: misc.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   * 
   * Adapted for PowerPC by Gary Thomas
   *
--- 1,7 ----
  /*
   * misc.c
   *
!  * $Id: misc.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   * 
   * Adapted for PowerPC by Gary Thomas
   *
Index: linux-2.2.12/arch/ppc/coffboot/zlib.c
diff -c linux-2.2.12/arch/ppc/coffboot/zlib.c:1.1 linux-2.2.12/arch/ppc/coffboot/zlib.c:1.1.1.1
*** linux-2.2.12/arch/ppc/coffboot/zlib.c:1.1	Mon Dec 27 12:14:20 1999
--- linux-2.2.12/arch/ppc/coffboot/zlib.c	Mon Dec 27 12:14:20 1999
***************
*** 11,17 ****
   * - added Z_PACKET_FLUSH (see zlib.h for details)
   * - added inflateIncomp
   *
!  * $Id: zlib.c,v 1.1 1999/12/27 17:14:20 ibaldin Exp $
   */
  
  /*+++++*/
--- 11,17 ----
   * - added Z_PACKET_FLUSH (see zlib.h for details)
   * - added inflateIncomp
   *
!  * $Id: zlib.c,v 1.1.1.1 1999/12/27 17:14:20 ibaldin Exp $
   */
  
  /*+++++*/
Index: linux-2.2.12/arch/ppc/coffboot/zlib.h
diff -c linux-2.2.12/arch/ppc/coffboot/zlib.h:1.1 linux-2.2.12/arch/ppc/coffboot/zlib.h:1.1.1.1
*** linux-2.2.12/arch/ppc/coffboot/zlib.h:1.1	Mon Dec 27 12:14:20 1999
--- linux-2.2.12/arch/ppc/coffboot/zlib.h	Mon Dec 27 12:14:20 1999
***************
*** 1,4 ****
! /*	$Id: zlib.h,v 1.1 1999/12/27 17:14:20 ibaldin Exp $	*/
  
  /*
   * This file is derived from zlib.h and zconf.h from the zlib-0.95
--- 1,4 ----
! /*	$Id: zlib.h,v 1.1.1.1 1999/12/27 17:14:20 ibaldin Exp $	*/
  
  /*
   * This file is derived from zlib.h and zconf.h from the zlib-0.95
Index: linux-2.2.12/arch/ppc/kernel/head.S
diff -c linux-2.2.12/arch/ppc/kernel/head.S:1.1 linux-2.2.12/arch/ppc/kernel/head.S:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/head.S:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/head.S	Mon Dec 27 12:14:19 1999
***************
*** 1,7 ****
  /*
   *  arch/ppc/kernel/head.S
   *
!  *  $Id: head.S,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  PowerPC version 
   *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
--- 1,7 ----
  /*
   *  arch/ppc/kernel/head.S
   *
!  *  $Id: head.S,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  PowerPC version 
   *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
Index: linux-2.2.12/arch/ppc/kernel/idle.c
diff -c linux-2.2.12/arch/ppc/kernel/idle.c:1.1 linux-2.2.12/arch/ppc/kernel/idle.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/idle.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/idle.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: idle.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Idle daemon for PowerPC.  Idle daemon will handle any action
   * that needs to be taken when the system becomes idle.
--- 1,5 ----
  /*
!  * $Id: idle.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Idle daemon for PowerPC.  Idle daemon will handle any action
   * that needs to be taken when the system becomes idle.
Index: linux-2.2.12/arch/ppc/kernel/irq.c
diff -c linux-2.2.12/arch/ppc/kernel/irq.c:1.1 linux-2.2.12/arch/ppc/kernel/irq.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/irq.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/irq.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: irq.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  arch/ppc/kernel/irq.c
   *
--- 1,5 ----
  /*
!  * $Id: irq.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  arch/ppc/kernel/irq.c
   *
Index: linux-2.2.12/arch/ppc/kernel/mbx_setup.c
diff -c linux-2.2.12/arch/ppc/kernel/mbx_setup.c:1.1 linux-2.2.12/arch/ppc/kernel/mbx_setup.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/mbx_setup.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/mbx_setup.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: mbx_setup.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  linux/arch/ppc/kernel/setup.c
   *
--- 1,5 ----
  /*
!  * $Id: mbx_setup.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  linux/arch/ppc/kernel/setup.c
   *
Index: linux-2.2.12/arch/ppc/kernel/pci.c
diff -c linux-2.2.12/arch/ppc/kernel/pci.c:1.1 linux-2.2.12/arch/ppc/kernel/pci.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/pci.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/pci.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: pci.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common pmac/prep/chrp pci routines. -- Cort
   */
  
--- 1,5 ----
  /*
!  * $Id: pci.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common pmac/prep/chrp pci routines. -- Cort
   */
  
Index: linux-2.2.12/arch/ppc/kernel/ppc-stub.c
diff -c linux-2.2.12/arch/ppc/kernel/ppc-stub.c:1.1 linux-2.2.12/arch/ppc/kernel/ppc-stub.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/ppc-stub.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/ppc-stub.c	Mon Dec 27 12:14:19 1999
***************
*** 1,4 ****
! /* $Id: ppc-stub.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   * ppc-stub.c:  KGDB support for the Linux kernel.
   *
   * adapted from arch/sparc/kernel/sparc-stub.c for the PowerPC
--- 1,4 ----
! /* $Id: ppc-stub.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   * ppc-stub.c:  KGDB support for the Linux kernel.
   *
   * adapted from arch/sparc/kernel/sparc-stub.c for the PowerPC
Index: linux-2.2.12/arch/ppc/kernel/ppc_htab.c
diff -c linux-2.2.12/arch/ppc/kernel/ppc_htab.c:1.1 linux-2.2.12/arch/ppc/kernel/ppc_htab.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/ppc_htab.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/ppc_htab.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: ppc_htab.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * PowerPC hash table management proc entry.  Will show information
   * about the current hash table and will allow changes to it.
--- 1,5 ----
  /*
!  * $Id: ppc_htab.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * PowerPC hash table management proc entry.  Will show information
   * about the current hash table and will allow changes to it.
Index: linux-2.2.12/arch/ppc/kernel/prep_pci.c
diff -c linux-2.2.12/arch/ppc/kernel/prep_pci.c:1.1 linux-2.2.12/arch/ppc/kernel/prep_pci.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/prep_pci.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/prep_pci.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: prep_pci.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   * PReP pci functions.
   * Originally by Gary Thomas
   * rewritten and updated by Cort Dougan (cort@cs.nmt.edu)
--- 1,5 ----
  /*
!  * $Id: prep_pci.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   * PReP pci functions.
   * Originally by Gary Thomas
   * rewritten and updated by Cort Dougan (cort@cs.nmt.edu)
Index: linux-2.2.12/arch/ppc/kernel/process.c
diff -c linux-2.2.12/arch/ppc/kernel/process.c:1.1 linux-2.2.12/arch/ppc/kernel/process.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/process.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/process.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: process.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  linux/arch/ppc/kernel/process.c
   *
--- 1,5 ----
  /*
!  * $Id: process.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  linux/arch/ppc/kernel/process.c
   *
Index: linux-2.2.12/arch/ppc/kernel/prom.c
diff -c linux-2.2.12/arch/ppc/kernel/prom.c:1.1 linux-2.2.12/arch/ppc/kernel/prom.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/prom.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/prom.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: prom.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Procedures for interfacing to the Open Firmware PROM on
   * Power Macintosh computers.
--- 1,5 ----
  /*
!  * $Id: prom.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Procedures for interfacing to the Open Firmware PROM on
   * Power Macintosh computers.
Index: linux-2.2.12/arch/ppc/kernel/residual.c
diff -c linux-2.2.12/arch/ppc/kernel/residual.c:1.1 linux-2.2.12/arch/ppc/kernel/residual.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/residual.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/residual.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: residual.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Code to deal with the PReP residual data.
   *
--- 1,5 ----
  /*
!  * $Id: residual.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Code to deal with the PReP residual data.
   *
Index: linux-2.2.12/arch/ppc/kernel/setup.c
diff -c linux-2.2.12/arch/ppc/kernel/setup.c:1.1 linux-2.2.12/arch/ppc/kernel/setup.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/setup.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/setup.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: setup.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common prep/pmac/chrp boot and setup code.
   */
  
--- 1,5 ----
  /*
!  * $Id: setup.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common prep/pmac/chrp boot and setup code.
   */
  
Index: linux-2.2.12/arch/ppc/kernel/signal.c
diff -c linux-2.2.12/arch/ppc/kernel/signal.c:1.1 linux-2.2.12/arch/ppc/kernel/signal.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/signal.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/signal.c	Mon Dec 27 12:14:19 1999
***************
*** 1,7 ****
  /*
   *  linux/arch/ppc/kernel/signal.c
   *
!  *  $Id: signal.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  PowerPC version 
   *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
--- 1,7 ----
  /*
   *  linux/arch/ppc/kernel/signal.c
   *
!  *  $Id: signal.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  PowerPC version 
   *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
Index: linux-2.2.12/arch/ppc/kernel/smp.c
diff -c linux-2.2.12/arch/ppc/kernel/smp.c:1.1 linux-2.2.12/arch/ppc/kernel/smp.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/smp.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/smp.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: smp.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Smp support for ppc.
   *
--- 1,5 ----
  /*
!  * $Id: smp.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Smp support for ppc.
   *
Index: linux-2.2.12/arch/ppc/kernel/time.c
diff -c linux-2.2.12/arch/ppc/kernel/time.c:1.1 linux-2.2.12/arch/ppc/kernel/time.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/time.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/time.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: time.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common time routines among all ppc machines.
   *
   * Written by Cort Dougan (cort@cs.nmt.edu) to merge
--- 1,5 ----
  /*
!  * $Id: time.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common time routines among all ppc machines.
   *
   * Written by Cort Dougan (cort@cs.nmt.edu) to merge
Index: linux-2.2.12/arch/ppc/kernel/time.h
diff -c linux-2.2.12/arch/ppc/kernel/time.h:1.1 linux-2.2.12/arch/ppc/kernel/time.h:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/time.h:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/time.h	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: time.h,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common time prototypes and such for all ppc machines.
   *
   * Written by Cort Dougan (cort@cs.nmt.edu) to merge
--- 1,5 ----
  /*
!  * $Id: time.h,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   * Common time prototypes and such for all ppc machines.
   *
   * Written by Cort Dougan (cort@cs.nmt.edu) to merge
Index: linux-2.2.12/arch/ppc/kernel/totalmp.c
diff -c linux-2.2.12/arch/ppc/kernel/totalmp.c:1.1 linux-2.2.12/arch/ppc/kernel/totalmp.c:1.1.1.1
*** linux-2.2.12/arch/ppc/kernel/totalmp.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/kernel/totalmp.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: totalmp.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Support for Total Impact's TotalMP PowerPC accelerator board.
   *
--- 1,5 ----
  /*
!  * $Id: totalmp.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Support for Total Impact's TotalMP PowerPC accelerator board.
   *
Index: linux-2.2.12/arch/ppc/lib/locks.c
diff -c linux-2.2.12/arch/ppc/lib/locks.c:1.1 linux-2.2.12/arch/ppc/lib/locks.c:1.1.1.1
*** linux-2.2.12/arch/ppc/lib/locks.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/lib/locks.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  * $Id: locks.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Locks for smp ppc 
   * 
--- 1,5 ----
  /*
!  * $Id: locks.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   * Locks for smp ppc 
   * 
Index: linux-2.2.12/arch/ppc/mbxboot/head.S
diff -c linux-2.2.12/arch/ppc/mbxboot/head.S:1.1 linux-2.2.12/arch/ppc/mbxboot/head.S:1.1.1.1
*** linux-2.2.12/arch/ppc/mbxboot/head.S:1.1	Mon Dec 27 12:14:20 1999
--- linux-2.2.12/arch/ppc/mbxboot/head.S	Mon Dec 27 12:14:20 1999
***************
*** 6,12 ****
  	.text
  
  /*
!  * $Id: head.S,v 1.1 1999/12/27 17:14:20 ibaldin Exp $
   *	
   * This code is loaded by the ROM loader at some arbitrary location.
   * Move it to high memory so that it can load the kernel at 0x0000.
--- 6,12 ----
  	.text
  
  /*
!  * $Id: head.S,v 1.1.1.1 1999/12/27 17:14:20 ibaldin Exp $
   *	
   * This code is loaded by the ROM loader at some arbitrary location.
   * Move it to high memory so that it can load the kernel at 0x0000.
Index: linux-2.2.12/arch/ppc/mbxboot/misc.c
diff -c linux-2.2.12/arch/ppc/mbxboot/misc.c:1.1 linux-2.2.12/arch/ppc/mbxboot/misc.c:1.1.1.1
*** linux-2.2.12/arch/ppc/mbxboot/misc.c:1.1	Mon Dec 27 12:14:20 1999
--- linux-2.2.12/arch/ppc/mbxboot/misc.c	Mon Dec 27 12:14:20 1999
***************
*** 1,7 ****
  /*
   * misc.c
   *
!  * $Id: misc.c,v 1.1 1999/12/27 17:14:20 ibaldin Exp $
   * 
   * Adapted for PowerPC by Gary Thomas
   *
--- 1,7 ----
  /*
   * misc.c
   *
!  * $Id: misc.c,v 1.1.1.1 1999/12/27 17:14:20 ibaldin Exp $
   * 
   * Adapted for PowerPC by Gary Thomas
   *
Index: linux-2.2.12/arch/ppc/mm/init.c
diff -c linux-2.2.12/arch/ppc/mm/init.c:1.1 linux-2.2.12/arch/ppc/mm/init.c:1.1.1.1
*** linux-2.2.12/arch/ppc/mm/init.c:1.1	Mon Dec 27 12:14:19 1999
--- linux-2.2.12/arch/ppc/mm/init.c	Mon Dec 27 12:14:19 1999
***************
*** 1,5 ****
  /*
!  *  $Id: init.c,v 1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  PowerPC version 
   *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
--- 1,5 ----
  /*
!  *  $Id: init.c,v 1.1.1.1 1999/12/27 17:14:19 ibaldin Exp $
   *
   *  PowerPC version 
   *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
Index: linux-2.2.12/arch/sparc/Makefile
diff -c linux-2.2.12/arch/sparc/Makefile:1.1 linux-2.2.12/arch/sparc/Makefile:1.1.1.1
*** linux-2.2.12/arch/sparc/Makefile:1.1	Mon Dec 27 12:14:12 1999
--- linux-2.2.12/arch/sparc/Makefile	Mon Dec 27 12:14:12 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:12 ibaldin Exp $
  # sparc/Makefile
  #
  # Makefile for the architecture dependent flags and dependencies on the
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:12 ibaldin Exp $
  # sparc/Makefile
  #
  # Makefile for the architecture dependent flags and dependencies on the
Index: linux-2.2.12/arch/sparc/config.in
diff -c linux-2.2.12/arch/sparc/config.in:1.1 linux-2.2.12/arch/sparc/config.in:1.1.1.1
*** linux-2.2.12/arch/sparc/config.in:1.1	Mon Dec 27 12:14:12 1999
--- linux-2.2.12/arch/sparc/config.in	Mon Dec 27 12:14:12 1999
***************
*** 1,4 ****
! # $Id: config.in,v 1.1 1999/12/27 17:14:12 ibaldin Exp $
  # For a description of the syntax of this configuration file,
  # see the Configure script.
  #
--- 1,4 ----
! # $Id: config.in,v 1.1.1.1 1999/12/27 17:14:12 ibaldin Exp $
  # For a description of the syntax of this configuration file,
  # see the Configure script.
  #
Index: linux-2.2.12/arch/sparc/boot/Makefile
diff -c linux-2.2.12/arch/sparc/boot/Makefile:1.1 linux-2.2.12/arch/sparc/boot/Makefile:1.1.1.1
*** linux-2.2.12/arch/sparc/boot/Makefile:1.1	Mon Dec 27 12:14:12 1999
--- linux-2.2.12/arch/sparc/boot/Makefile	Mon Dec 27 12:14:12 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:12 ibaldin Exp $
  # Makefile for the Sparc boot stuff.
  #
  # Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:12 ibaldin Exp $
  # Makefile for the Sparc boot stuff.
  #
  # Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/boot/btfixupprep.c
diff -c linux-2.2.12/arch/sparc/boot/btfixupprep.c:1.1 linux-2.2.12/arch/sparc/boot/btfixupprep.c:1.1.1.1
*** linux-2.2.12/arch/sparc/boot/btfixupprep.c:1.1	Mon Dec 27 12:14:12 1999
--- linux-2.2.12/arch/sparc/boot/btfixupprep.c	Mon Dec 27 12:14:12 1999
***************
*** 1,4 ****
! /* $Id: btfixupprep.c,v 1.1 1999/12/27 17:14:12 ibaldin Exp $
     Simple utility to prepare vmlinux image for sparc.
     Resolves all BTFIXUP uses and settings and creates
     a special .s object to link to the image.
--- 1,4 ----
! /* $Id: btfixupprep.c,v 1.1.1.1 1999/12/27 17:14:12 ibaldin Exp $
     Simple utility to prepare vmlinux image for sparc.
     Resolves all BTFIXUP uses and settings and creates
     a special .s object to link to the image.
Index: linux-2.2.12/arch/sparc/boot/piggyback.c
diff -c linux-2.2.12/arch/sparc/boot/piggyback.c:1.1 linux-2.2.12/arch/sparc/boot/piggyback.c:1.1.1.1
*** linux-2.2.12/arch/sparc/boot/piggyback.c:1.1	Mon Dec 27 12:14:12 1999
--- linux-2.2.12/arch/sparc/boot/piggyback.c	Mon Dec 27 12:14:12 1999
***************
*** 1,4 ****
! /* $Id: piggyback.c,v 1.1 1999/12/27 17:14:12 ibaldin Exp $
     Simple utility to make a single-image install kernel with initial ramdisk
     for Sparc tftpbooting without need to set up nfs.
     
--- 1,4 ----
! /* $Id: piggyback.c,v 1.1.1.1 1999/12/27 17:14:12 ibaldin Exp $
     Simple utility to make a single-image install kernel with initial ramdisk
     for Sparc tftpbooting without need to set up nfs.
     
Index: linux-2.2.12/arch/sparc/kernel/Makefile
diff -c linux-2.2.12/arch/sparc/kernel/Makefile:1.1 linux-2.2.12/arch/sparc/kernel/Makefile:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/Makefile:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/Makefile	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
  # Makefile for the linux kernel.
  #
  # Note! Dependencies are done automagically by 'make dep', which also
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
  # Makefile for the linux kernel.
  #
  # Note! Dependencies are done automagically by 'make dep', which also
Index: linux-2.2.12/arch/sparc/kernel/ebus.c
diff -c linux-2.2.12/arch/sparc/kernel/ebus.c:1.1 linux-2.2.12/arch/sparc/kernel/ebus.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/ebus.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/ebus.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: ebus.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * ebus.c: PCI to EBus bridge device.
   *
   * Copyright (C) 1997  Eddie C. Dost  (ecd@skynet.be)
--- 1,4 ----
! /* $Id: ebus.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * ebus.c: PCI to EBus bridge device.
   *
   * Copyright (C) 1997  Eddie C. Dost  (ecd@skynet.be)
Index: linux-2.2.12/arch/sparc/kernel/entry.S
diff -c linux-2.2.12/arch/sparc/kernel/entry.S:1.1 linux-2.2.12/arch/sparc/kernel/entry.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/entry.S:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/entry.S	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: entry.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * arch/sparc/kernel/entry.S:  Sparc trap low-level entry points.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: entry.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * arch/sparc/kernel/entry.S:  Sparc trap low-level entry points.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/errtbls.c
diff -c linux-2.2.12/arch/sparc/kernel/errtbls.c:1.1 linux-2.2.12/arch/sparc/kernel/errtbls.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/errtbls.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/errtbls.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: errtbls.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * errtbls.c: Error number conversion tables between various syscall
   *            OS semantics.
   *
--- 1,4 ----
! /* $Id: errtbls.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * errtbls.c: Error number conversion tables between various syscall
   *            OS semantics.
   *
Index: linux-2.2.12/arch/sparc/kernel/etrap.S
diff -c linux-2.2.12/arch/sparc/kernel/etrap.S:1.1 linux-2.2.12/arch/sparc/kernel/etrap.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/etrap.S:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/etrap.S	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: etrap.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * etrap.S: Sparc trap window preparation for entry into the
   *          Linux kernel.
   *
--- 1,4 ----
! /* $Id: etrap.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * etrap.S: Sparc trap window preparation for entry into the
   *          Linux kernel.
   *
Index: linux-2.2.12/arch/sparc/kernel/head.S
diff -c linux-2.2.12/arch/sparc/kernel/head.S:1.1 linux-2.2.12/arch/sparc/kernel/head.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/head.S:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/head.S	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: head.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * head.S: The initial boot code for the Sparc port of Linux.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: head.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * head.S: The initial boot code for the Sparc port of Linux.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/idprom.c
diff -c linux-2.2.12/arch/sparc/kernel/idprom.c:1.1 linux-2.2.12/arch/sparc/kernel/idprom.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/idprom.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/idprom.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: idprom.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * idprom.c: Routines to load the idprom into kernel addresses and
   *           interpret the data contained within.
   *
--- 1,4 ----
! /* $Id: idprom.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * idprom.c: Routines to load the idprom into kernel addresses and
   *           interpret the data contained within.
   *
Index: linux-2.2.12/arch/sparc/kernel/ioport.c
diff -c linux-2.2.12/arch/sparc/kernel/ioport.c:1.1 linux-2.2.12/arch/sparc/kernel/ioport.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/ioport.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/ioport.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: ioport.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * ioport.c:  Simple io mapping allocator.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: ioport.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * ioport.c:  Simple io mapping allocator.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/irq.c
diff -c linux-2.2.12/arch/sparc/kernel/irq.c:1.1 linux-2.2.12/arch/sparc/kernel/irq.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/irq.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/irq.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /*  $Id: irq.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  arch/sparc/kernel/irq.c:  Interrupt request handling routines. On the
   *                            Sparc the IRQ's are basically 'cast in stone'
   *                            and you are supposed to probe the prom's device
--- 1,4 ----
! /*  $Id: irq.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  arch/sparc/kernel/irq.c:  Interrupt request handling routines. On the
   *                            Sparc the IRQ's are basically 'cast in stone'
   *                            and you are supposed to probe the prom's device
Index: linux-2.2.12/arch/sparc/kernel/muldiv.c
diff -c linux-2.2.12/arch/sparc/kernel/muldiv.c:1.1 linux-2.2.12/arch/sparc/kernel/muldiv.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/muldiv.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/muldiv.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: muldiv.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * muldiv.c: Hardware multiply/division illegal instruction trap
   *		for sun4c/sun4 (which do not have those instructions)
   *
--- 1,4 ----
! /* $Id: muldiv.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * muldiv.c: Hardware multiply/division illegal instruction trap
   *		for sun4c/sun4 (which do not have those instructions)
   *
Index: linux-2.2.12/arch/sparc/kernel/pcic.c
diff -c linux-2.2.12/arch/sparc/kernel/pcic.c:1.1 linux-2.2.12/arch/sparc/kernel/pcic.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/pcic.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/pcic.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: pcic.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * pcic.c: Sparc/PCI controller support
   *
   * Copyright (C) 1998 V. Roganov and G. Raiko
--- 1,4 ----
! /* $Id: pcic.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * pcic.c: Sparc/PCI controller support
   *
   * Copyright (C) 1998 V. Roganov and G. Raiko
Index: linux-2.2.12/arch/sparc/kernel/process.c
diff -c linux-2.2.12/arch/sparc/kernel/process.c:1.1 linux-2.2.12/arch/sparc/kernel/process.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/process.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/process.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /*  $Id: process.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  linux/arch/sparc/kernel/process.c
   *
   *  Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /*  $Id: process.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  linux/arch/sparc/kernel/process.c
   *
   *  Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/rtrap.S
diff -c linux-2.2.12/arch/sparc/kernel/rtrap.S:1.1 linux-2.2.12/arch/sparc/kernel/rtrap.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/rtrap.S:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/rtrap.S	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: rtrap.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * rtrap.S: Return from Sparc trap low-level code.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: rtrap.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * rtrap.S: Return from Sparc trap low-level code.
   *
   * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/setup.c
diff -c linux-2.2.12/arch/sparc/kernel/setup.c:1.1 linux-2.2.12/arch/sparc/kernel/setup.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/setup.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/setup.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /*  $Id: setup.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  linux/arch/sparc/kernel/setup.c
   *
   *  Copyright (C) 1995  David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /*  $Id: setup.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  linux/arch/sparc/kernel/setup.c
   *
   *  Copyright (C) 1995  David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/signal.c
diff -c linux-2.2.12/arch/sparc/kernel/signal.c:1.1 linux-2.2.12/arch/sparc/kernel/signal.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/signal.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/signal.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /*  $Id: signal.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  linux/arch/sparc/kernel/signal.c
   *
   *  Copyright (C) 1991, 1992  Linus Torvalds
--- 1,4 ----
! /*  $Id: signal.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  linux/arch/sparc/kernel/signal.c
   *
   *  Copyright (C) 1991, 1992  Linus Torvalds
Index: linux-2.2.12/arch/sparc/kernel/sparc-stub.c
diff -c linux-2.2.12/arch/sparc/kernel/sparc-stub.c:1.1 linux-2.2.12/arch/sparc/kernel/sparc-stub.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/sparc-stub.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/sparc-stub.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: sparc-stub.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * sparc-stub.c:  KGDB support for the Linux kernel.
   *
   * Modifications to run under Linux
--- 1,4 ----
! /* $Id: sparc-stub.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * sparc-stub.c:  KGDB support for the Linux kernel.
   *
   * Modifications to run under Linux
Index: linux-2.2.12/arch/sparc/kernel/sparc_ksyms.c
diff -c linux-2.2.12/arch/sparc/kernel/sparc_ksyms.c:1.1 linux-2.2.12/arch/sparc/kernel/sparc_ksyms.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/sparc_ksyms.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/sparc_ksyms.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: sparc_ksyms.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * arch/sparc/kernel/ksyms.c: Sparc specific ksyms support.
   *
   * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: sparc_ksyms.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * arch/sparc/kernel/ksyms.c: Sparc specific ksyms support.
   *
   * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/sun4d_irq.c
diff -c linux-2.2.12/arch/sparc/kernel/sun4d_irq.c:1.1 linux-2.2.12/arch/sparc/kernel/sun4d_irq.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/sun4d_irq.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/sun4d_irq.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /*  $Id: sun4d_irq.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  arch/sparc/kernel/sun4d_irq.c:
   *			SS1000/SC2000 interrupt handling.
   *
--- 1,4 ----
! /*  $Id: sun4d_irq.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   *  arch/sparc/kernel/sun4d_irq.c:
   *			SS1000/SC2000 interrupt handling.
   *
Index: linux-2.2.12/arch/sparc/kernel/sunos_asm.S
diff -c linux-2.2.12/arch/sparc/kernel/sunos_asm.S:1.1 linux-2.2.12/arch/sparc/kernel/sunos_asm.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/sunos_asm.S:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/sunos_asm.S	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: sunos_asm.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * sunos_asm.S: SunOS system calls which must have a low-level
   *              entry point to operate correctly.
   *
--- 1,4 ----
! /* $Id: sunos_asm.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * sunos_asm.S: SunOS system calls which must have a low-level
   *              entry point to operate correctly.
   *
Index: linux-2.2.12/arch/sparc/kernel/sunos_ioctl.c
diff -c linux-2.2.12/arch/sparc/kernel/sunos_ioctl.c:1.1 linux-2.2.12/arch/sparc/kernel/sunos_ioctl.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/sunos_ioctl.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/sunos_ioctl.c	Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: sunos_ioctl.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
   * sunos_ioctl.c: The Linux Operating system: SunOS ioctl compatibility.
   * 
   * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
--- 1,4 ----
! /* $Id: sunos_ioctl.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
   * sunos_ioctl.c: The Linux Operating system: SunOS ioctl compatibility.
   * 
   * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
Index: linux-2.2.12/arch/sparc/kernel/sys_sparc.c
diff -c linux-2.2.12/arch/sparc/kernel/sys_sparc.c:1.1 linux-2.2.12/arch/sparc/kernel/sys_sparc.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/sys_sparc.c:1.1	Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/sys