what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

linux-2.2.12-div.patch

linux-2.2.12-div.patch
Posted Feb 15, 2000
Authored by Ilia Baldine | Site anr.mcnc.org

This is a port of FreeBSD divert sockets to Linux 2.2.12. Divert sockets allow you to intercept packets traveling through the IP stack based on firewall rule selection and then reinject them (possibly after mangling).

tags | tool, firewall
systems | linux, freebsd
SHA-256 | f62023a433def63d24a920cbc87bf565428dc5627ae06f6d663dbd10b711a44d

linux-2.2.12-div.patch

Change Mirror Download
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 https://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_sparc.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: sys_sparc.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* linux/arch/sparc/kernel/sys_sparc.c
*
* This file contains various random system calls that
--- 1,4 ----
! /* $Id: sys_sparc.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* linux/arch/sparc/kernel/sys_sparc.c
*
* This file contains various random system calls that
Index: linux-2.2.12/arch/sparc/kernel/sys_sunos.c
diff -c linux-2.2.12/arch/sparc/kernel/sys_sunos.c:1.1 linux-2.2.12/arch/sparc/kernel/sys_sunos.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/sys_sunos.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/sys_sunos.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: sys_sunos.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* sys_sunos.c: SunOS specific syscall compatibility support.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: sys_sunos.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* sys_sunos.c: SunOS specific syscall compatibility support.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/systbls.S
diff -c linux-2.2.12/arch/sparc/kernel/systbls.S:1.1 linux-2.2.12/arch/sparc/kernel/systbls.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/systbls.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/systbls.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: systbls.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* systbls.S: System call entry point tables for OS compatibility.
* The native Linux system call table lives here also.
*
--- 1,4 ----
! /* $Id: systbls.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* systbls.S: System call entry point tables for OS compatibility.
* The native Linux system call table lives here also.
*
Index: linux-2.2.12/arch/sparc/kernel/time.c
diff -c linux-2.2.12/arch/sparc/kernel/time.c:1.1 linux-2.2.12/arch/sparc/kernel/time.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/time.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/time.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: time.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* linux/arch/sparc/kernel/time.c
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: time.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* linux/arch/sparc/kernel/time.c
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/trampoline.S
diff -c linux-2.2.12/arch/sparc/kernel/trampoline.S:1.1 linux-2.2.12/arch/sparc/kernel/trampoline.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/trampoline.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/trampoline.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: trampoline.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* trampoline.S: SMP cpu boot-up trampoline code.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: trampoline.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* trampoline.S: SMP cpu boot-up trampoline code.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/traps.c
diff -c linux-2.2.12/arch/sparc/kernel/traps.c:1.1 linux-2.2.12/arch/sparc/kernel/traps.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/traps.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/traps.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: traps.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* arch/sparc/kernel/traps.c
*
* Copyright 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: traps.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* arch/sparc/kernel/traps.c
*
* Copyright 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/unaligned.c
diff -c linux-2.2.12/arch/sparc/kernel/unaligned.c:1.1 linux-2.2.12/arch/sparc/kernel/unaligned.c:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/unaligned.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/unaligned.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: unaligned.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* unaligned.c: Unaligned load/store trap handling with special
* cases for the kernel to do them more quickly.
*
--- 1,4 ----
! /* $Id: unaligned.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* unaligned.c: Unaligned load/store trap handling with special
* cases for the kernel to do them more quickly.
*
Index: linux-2.2.12/arch/sparc/kernel/wof.S
diff -c linux-2.2.12/arch/sparc/kernel/wof.S:1.1 linux-2.2.12/arch/sparc/kernel/wof.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/wof.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/wof.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: wof.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* wof.S: Sparc window overflow handler.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: wof.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* wof.S: Sparc window overflow handler.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/kernel/wuf.S
diff -c linux-2.2.12/arch/sparc/kernel/wuf.S:1.1 linux-2.2.12/arch/sparc/kernel/wuf.S:1.1.1.1
*** linux-2.2.12/arch/sparc/kernel/wuf.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/kernel/wuf.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: wuf.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* wuf.S: Window underflow trap handler for the Sparc.
*
* Copyright (C) 1995 David S. Miller
--- 1,4 ----
! /* $Id: wuf.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* wuf.S: Window underflow trap handler for the Sparc.
*
* Copyright (C) 1995 David S. Miller
Index: linux-2.2.12/arch/sparc/lib/Makefile
diff -c linux-2.2.12/arch/sparc/lib/Makefile:1.1 linux-2.2.12/arch/sparc/lib/Makefile:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/Makefile:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/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 Sparc library files..
#

--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
# Makefile for Sparc library files..
#

Index: linux-2.2.12/arch/sparc/lib/ashrdi3.S
diff -c linux-2.2.12/arch/sparc/lib/ashrdi3.S:1.1 linux-2.2.12/arch/sparc/lib/ashrdi3.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/ashrdi3.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/ashrdi3.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: ashrdi3.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* ashrdi3.S: The filesystem code creates all kinds of references to
* this little routine on the sparc with gcc.
*
--- 1,4 ----
! /* $Id: ashrdi3.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* ashrdi3.S: The filesystem code creates all kinds of references to
* this little routine on the sparc with gcc.
*
Index: linux-2.2.12/arch/sparc/lib/blockops.S
diff -c linux-2.2.12/arch/sparc/lib/blockops.S:1.1 linux-2.2.12/arch/sparc/lib/blockops.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/blockops.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/blockops.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: blockops.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* blockops.S: Common block zero optimized routines.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: blockops.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* blockops.S: Common block zero optimized routines.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/lib/debuglocks.c
diff -c linux-2.2.12/arch/sparc/lib/debuglocks.c:1.1 linux-2.2.12/arch/sparc/lib/debuglocks.c:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/debuglocks.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/debuglocks.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: debuglocks.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* debuglocks.c: Debugging versions of SMP locking primitives.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: debuglocks.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* debuglocks.c: Debugging versions of SMP locking primitives.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/lib/irqlock.S
diff -c linux-2.2.12/arch/sparc/lib/irqlock.S:1.1 linux-2.2.12/arch/sparc/lib/irqlock.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/irqlock.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/irqlock.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: irqlock.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* irqlock.S: High performance IRQ global locking and interrupt entry.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: irqlock.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* irqlock.S: High performance IRQ global locking and interrupt entry.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/lib/locks.S
diff -c linux-2.2.12/arch/sparc/lib/locks.S:1.1 linux-2.2.12/arch/sparc/lib/locks.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/locks.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/locks.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: locks.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* locks.S: SMP low-level lock primitives on Sparc.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: locks.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* locks.S: SMP low-level lock primitives on Sparc.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/lib/lshrdi3.S
diff -c linux-2.2.12/arch/sparc/lib/lshrdi3.S:1.1 linux-2.2.12/arch/sparc/lib/lshrdi3.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/lshrdi3.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/lshrdi3.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: lshrdi3.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $ */

#include <asm/cprefix.h>

--- 1,4 ----
! /* $Id: lshrdi3.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $ */

#include <asm/cprefix.h>

Index: linux-2.2.12/arch/sparc/lib/memscan.S
diff -c linux-2.2.12/arch/sparc/lib/memscan.S:1.1 linux-2.2.12/arch/sparc/lib/memscan.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/memscan.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/memscan.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: memscan.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* memscan.S: Optimized memscan for the Sparc.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: memscan.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* memscan.S: Optimized memscan for the Sparc.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/lib/mul.S
diff -c linux-2.2.12/arch/sparc/lib/mul.S:1.1 linux-2.2.12/arch/sparc/lib/mul.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/mul.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/mul.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: mul.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* mul.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
--- 1,4 ----
! /* $Id: mul.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* mul.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
Index: linux-2.2.12/arch/sparc/lib/rem.S
diff -c linux-2.2.12/arch/sparc/lib/rem.S:1.1 linux-2.2.12/arch/sparc/lib/rem.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/rem.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/rem.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: rem.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* rem.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
--- 1,4 ----
! /* $Id: rem.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* rem.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
Index: linux-2.2.12/arch/sparc/lib/sdiv.S
diff -c linux-2.2.12/arch/sparc/lib/sdiv.S:1.1 linux-2.2.12/arch/sparc/lib/sdiv.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/sdiv.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/sdiv.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: sdiv.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* sdiv.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
--- 1,4 ----
! /* $Id: sdiv.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* sdiv.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
Index: linux-2.2.12/arch/sparc/lib/strncmp.S
diff -c linux-2.2.12/arch/sparc/lib/strncmp.S:1.1 linux-2.2.12/arch/sparc/lib/strncmp.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/strncmp.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/strncmp.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: strncmp.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* strncmp.S: Hand optimized Sparc assembly of GCC output from GNU libc
* generic strncmp routine.
*/
--- 1,4 ----
! /* $Id: strncmp.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* strncmp.S: Hand optimized Sparc assembly of GCC output from GNU libc
* generic strncmp routine.
*/
Index: linux-2.2.12/arch/sparc/lib/udiv.S
diff -c linux-2.2.12/arch/sparc/lib/udiv.S:1.1 linux-2.2.12/arch/sparc/lib/udiv.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/udiv.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/udiv.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: udiv.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* udiv.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
--- 1,4 ----
! /* $Id: udiv.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* udiv.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
Index: linux-2.2.12/arch/sparc/lib/umul.S
diff -c linux-2.2.12/arch/sparc/lib/umul.S:1.1 linux-2.2.12/arch/sparc/lib/umul.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/umul.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/umul.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: umul.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* umul.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
--- 1,4 ----
! /* $Id: umul.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* umul.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
Index: linux-2.2.12/arch/sparc/lib/urem.S
diff -c linux-2.2.12/arch/sparc/lib/urem.S:1.1 linux-2.2.12/arch/sparc/lib/urem.S:1.1.1.1
*** linux-2.2.12/arch/sparc/lib/urem.S:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/lib/urem.S Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: urem.S,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* urem.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
--- 1,4 ----
! /* $Id: urem.S,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* urem.S: This routine was taken from glibc-1.09 and is covered
* by the GNU Library General Public License Version 2.
*/
Index: linux-2.2.12/arch/sparc/math-emu/ashldi3.S
diff -c linux-2.2.12/arch/sparc/math-emu/ashldi3.S:1.1 linux-2.2.12/arch/sparc/math-emu/ashldi3.S:1.1.1.1
*** linux-2.2.12/arch/sparc/math-emu/ashldi3.S:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/math-emu/ashldi3.S Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: ashldi3.S,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* ashldi3.S: Math-emu code creates all kinds of references to
* this little routine on the sparc with gcc.
*
--- 1,4 ----
! /* $Id: ashldi3.S,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* ashldi3.S: Math-emu code creates all kinds of references to
* this little routine on the sparc with gcc.
*
Index: linux-2.2.12/arch/sparc/mm/Makefile
diff -c linux-2.2.12/arch/sparc/mm/Makefile:1.1 linux-2.2.12/arch/sparc/mm/Makefile:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/Makefile:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/mm/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 Sparc-specific parts of the memory manager.
#
# 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 Sparc-specific parts of the memory manager.
#
# Note! Dependencies are done automagically by 'make dep', which also
Index: linux-2.2.12/arch/sparc/mm/asyncd.c
diff -c linux-2.2.12/arch/sparc/mm/asyncd.c:1.1 linux-2.2.12/arch/sparc/mm/asyncd.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/asyncd.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/asyncd.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: asyncd.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* The asyncd kernel daemon. This handles paging on behalf of
* processes that receive page faults due to remote (async) memory
* accesses.
--- 1,4 ----
! /* $Id: asyncd.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* The asyncd kernel daemon. This handles paging on behalf of
* processes that receive page faults due to remote (async) memory
* accesses.
Index: linux-2.2.12/arch/sparc/mm/btfixup.c
diff -c linux-2.2.12/arch/sparc/mm/btfixup.c:1.1 linux-2.2.12/arch/sparc/mm/btfixup.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/btfixup.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/btfixup.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: btfixup.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* btfixup.c: Boot time code fixup and relocator, so that
* we can get rid of most indirect calls to achieve single
* image sun4c and srmmu kernel.
--- 1,4 ----
! /* $Id: btfixup.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* btfixup.c: Boot time code fixup and relocator, so that
* we can get rid of most indirect calls to achieve single
* image sun4c and srmmu kernel.
Index: linux-2.2.12/arch/sparc/mm/fault.c
diff -c linux-2.2.12/arch/sparc/mm/fault.c:1.1 linux-2.2.12/arch/sparc/mm/fault.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/fault.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/mm/fault.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: fault.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* fault.c: Page fault handlers for the Sparc.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: fault.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* fault.c: Page fault handlers for the Sparc.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/mm/generic.c
diff -c linux-2.2.12/arch/sparc/mm/generic.c:1.1 linux-2.2.12/arch/sparc/mm/generic.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/generic.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/generic.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: generic.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* generic.c: Generic Sparc mm routines that are not dependent upon
* MMU type but are Sparc specific.
*
--- 1,4 ----
! /* $Id: generic.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* generic.c: Generic Sparc mm routines that are not dependent upon
* MMU type but are Sparc specific.
*
Index: linux-2.2.12/arch/sparc/mm/hypersparc.S
diff -c linux-2.2.12/arch/sparc/mm/hypersparc.S:1.1 linux-2.2.12/arch/sparc/mm/hypersparc.S:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/hypersparc.S:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/hypersparc.S Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: hypersparc.S,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* hypersparc.S: High speed Hypersparc mmu/cache operations.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: hypersparc.S,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* hypersparc.S: High speed Hypersparc mmu/cache operations.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/mm/init.c
diff -c linux-2.2.12/arch/sparc/mm/init.c:1.1 linux-2.2.12/arch/sparc/mm/init.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/init.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/mm/init.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: init.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* linux/arch/sparc/mm/init.c
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: init.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* linux/arch/sparc/mm/init.c
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/mm/io-unit.c
diff -c linux-2.2.12/arch/sparc/mm/io-unit.c:1.1 linux-2.2.12/arch/sparc/mm/io-unit.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/io-unit.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/io-unit.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: io-unit.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* io-unit.c: IO-UNIT specific routines for memory management.
*
* Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
--- 1,4 ----
! /* $Id: io-unit.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* io-unit.c: IO-UNIT specific routines for memory management.
*
* Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
Index: linux-2.2.12/arch/sparc/mm/iommu.c
diff -c linux-2.2.12/arch/sparc/mm/iommu.c:1.1 linux-2.2.12/arch/sparc/mm/iommu.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/iommu.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/iommu.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: iommu.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* iommu.c: IOMMU specific routines for memory management.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: iommu.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* iommu.c: IOMMU specific routines for memory management.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/mm/loadmmu.c
diff -c linux-2.2.12/arch/sparc/mm/loadmmu.c:1.1 linux-2.2.12/arch/sparc/mm/loadmmu.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/loadmmu.c:1.1 Mon Dec 27 12:14:13 1999
--- linux-2.2.12/arch/sparc/mm/loadmmu.c Mon Dec 27 12:14:13 1999
***************
*** 1,4 ****
! /* $Id: loadmmu.c,v 1.1 1999/12/27 17:14:13 ibaldin Exp $
* loadmmu.c: This code loads up all the mm function pointers once the
* machine type has been determined. It also sets the static
* mmu values such as PAGE_NONE, etc.
--- 1,4 ----
! /* $Id: loadmmu.c,v 1.1.1.1 1999/12/27 17:14:13 ibaldin Exp $
* loadmmu.c: This code loads up all the mm function pointers once the
* machine type has been determined. It also sets the static
* mmu values such as PAGE_NONE, etc.
Index: linux-2.2.12/arch/sparc/mm/nosrmmu.c
diff -c linux-2.2.12/arch/sparc/mm/nosrmmu.c:1.1 linux-2.2.12/arch/sparc/mm/nosrmmu.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/nosrmmu.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/nosrmmu.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: nosrmmu.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* nosrmmu.c: This file is a bunch of dummies for sun4 compiles,
* so that it does not need srmmu and avoid ifdefs.
*
--- 1,4 ----
! /* $Id: nosrmmu.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* nosrmmu.c: This file is a bunch of dummies for sun4 compiles,
* so that it does not need srmmu and avoid ifdefs.
*
Index: linux-2.2.12/arch/sparc/mm/nosun4c.c
diff -c linux-2.2.12/arch/sparc/mm/nosun4c.c:1.1 linux-2.2.12/arch/sparc/mm/nosun4c.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/nosun4c.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/nosun4c.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: nosun4c.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* nosun4c.c: This file is a bunch of dummies for SMP compiles,
* so that it does not need sun4c and avoid ifdefs.
*
--- 1,4 ----
! /* $Id: nosun4c.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* nosun4c.c: This file is a bunch of dummies for SMP compiles,
* so that it does not need sun4c and avoid ifdefs.
*
Index: linux-2.2.12/arch/sparc/mm/srmmu.c
diff -c linux-2.2.12/arch/sparc/mm/srmmu.c:1.1 linux-2.2.12/arch/sparc/mm/srmmu.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/srmmu.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/srmmu.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: srmmu.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* srmmu.c: SRMMU specific routines for memory management.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: srmmu.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* srmmu.c: SRMMU specific routines for memory management.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/mm/sun4c.c
diff -c linux-2.2.12/arch/sparc/mm/sun4c.c:1.1 linux-2.2.12/arch/sparc/mm/sun4c.c:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/sun4c.c:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/sun4c.c Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: sun4c.c,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* sun4c.c: Doing in software what should be done in hardware.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: sun4c.c,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* sun4c.c: Doing in software what should be done in hardware.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/mm/tsunami.S
diff -c linux-2.2.12/arch/sparc/mm/tsunami.S:1.1 linux-2.2.12/arch/sparc/mm/tsunami.S:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/tsunami.S:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/tsunami.S Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: tsunami.S,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* tsunami.S: High speed MicroSparc-I mmu/cache operations.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: tsunami.S,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* tsunami.S: High speed MicroSparc-I mmu/cache operations.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/mm/viking.S
diff -c linux-2.2.12/arch/sparc/mm/viking.S:1.1 linux-2.2.12/arch/sparc/mm/viking.S:1.1.1.1
*** linux-2.2.12/arch/sparc/mm/viking.S:1.1 Mon Dec 27 12:14:14 1999
--- linux-2.2.12/arch/sparc/mm/viking.S Mon Dec 27 12:14:14 1999
***************
*** 1,4 ****
! /* $Id: viking.S,v 1.1 1999/12/27 17:14:14 ibaldin Exp $
* viking.S: High speed Viking cache/mmu operations
*
* Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
--- 1,4 ----
! /* $Id: viking.S,v 1.1.1.1 1999/12/27 17:14:14 ibaldin Exp $
* viking.S: High speed Viking cache/mmu operations
*
* Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
Index: linux-2.2.12/arch/sparc/prom/Makefile
diff -c linux-2.2.12/arch/sparc/prom/Makefile:1.1 linux-2.2.12/arch/sparc/prom/Makefile:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/Makefile:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/Makefile Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! # $Id: Makefile,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
# Makefile for the Sun Boot PROM interface library under
# Linux.
#
--- 1,4 ----
! # $Id: Makefile,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
# Makefile for the Sun Boot PROM interface library under
# Linux.
#
Index: linux-2.2.12/arch/sparc/prom/bootstr.c
diff -c linux-2.2.12/arch/sparc/prom/bootstr.c:1.1 linux-2.2.12/arch/sparc/prom/bootstr.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/bootstr.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/bootstr.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: bootstr.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* bootstr.c: Boot string/argument acquisition from the PROM.
*
* Copyright(C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: bootstr.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* bootstr.c: Boot string/argument acquisition from the PROM.
*
* Copyright(C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/prom/console.c
diff -c linux-2.2.12/arch/sparc/prom/console.c:1.1 linux-2.2.12/arch/sparc/prom/console.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/console.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/console.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: console.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* console.c: Routines that deal with sending and receiving IO
* to/from the current console device using the PROM.
*
--- 1,4 ----
! /* $Id: console.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* console.c: Routines that deal with sending and receiving IO
* to/from the current console device using the PROM.
*
Index: linux-2.2.12/arch/sparc/prom/devmap.c
diff -c linux-2.2.12/arch/sparc/prom/devmap.c:1.1 linux-2.2.12/arch/sparc/prom/devmap.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/devmap.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/devmap.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: devmap.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* promdevmap.c: Map device/IO areas to virtual addresses.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: devmap.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* promdevmap.c: Map device/IO areas to virtual addresses.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/prom/devops.c
diff -c linux-2.2.12/arch/sparc/prom/devops.c:1.1 linux-2.2.12/arch/sparc/prom/devops.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/devops.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/devops.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: devops.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* devops.c: Device operations using the PROM.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: devops.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* devops.c: Device operations using the PROM.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/prom/init.c
diff -c linux-2.2.12/arch/sparc/prom/init.c:1.1 linux-2.2.12/arch/sparc/prom/init.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/init.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/init.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: init.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* init.c: Initialize internal variables used by the PROM
* library functions.
*
--- 1,4 ----
! /* $Id: init.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* init.c: Initialize internal variables used by the PROM
* library functions.
*
Index: linux-2.2.12/arch/sparc/prom/memory.c
diff -c linux-2.2.12/arch/sparc/prom/memory.c:1.1 linux-2.2.12/arch/sparc/prom/memory.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/memory.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/memory.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: memory.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* memory.c: Prom routine for acquiring various bits of information
* about RAM on the machine, both virtual and physical.
*
--- 1,4 ----
! /* $Id: memory.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* memory.c: Prom routine for acquiring various bits of information
* about RAM on the machine, both virtual and physical.
*
Index: linux-2.2.12/arch/sparc/prom/misc.c
diff -c linux-2.2.12/arch/sparc/prom/misc.c:1.1 linux-2.2.12/arch/sparc/prom/misc.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/misc.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/misc.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: misc.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* misc.c: Miscellaneous prom functions that don't belong
* anywhere else.
*
--- 1,4 ----
! /* $Id: misc.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* misc.c: Miscellaneous prom functions that don't belong
* anywhere else.
*
Index: linux-2.2.12/arch/sparc/prom/mp.c
diff -c linux-2.2.12/arch/sparc/prom/mp.c:1.1 linux-2.2.12/arch/sparc/prom/mp.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/mp.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/mp.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: mp.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* mp.c: OpenBoot Prom Multiprocessor support routines. Don't call
* these on a UP or else you will halt and catch fire. ;)
*
--- 1,4 ----
! /* $Id: mp.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* mp.c: OpenBoot Prom Multiprocessor support routines. Don't call
* these on a UP or else you will halt and catch fire. ;)
*
Index: linux-2.2.12/arch/sparc/prom/palloc.c
diff -c linux-2.2.12/arch/sparc/prom/palloc.c:1.1 linux-2.2.12/arch/sparc/prom/palloc.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/palloc.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/palloc.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: palloc.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* palloc.c: Memory allocation from the Sun PROM.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: palloc.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* palloc.c: Memory allocation from the Sun PROM.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/prom/printf.c
diff -c linux-2.2.12/arch/sparc/prom/printf.c:1.1 linux-2.2.12/arch/sparc/prom/printf.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/printf.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/printf.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: printf.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* printf.c: Internal prom library printf facility.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: printf.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* printf.c: Internal prom library printf facility.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/prom/ranges.c
diff -c linux-2.2.12/arch/sparc/prom/ranges.c:1.1 linux-2.2.12/arch/sparc/prom/ranges.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/ranges.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/ranges.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: ranges.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* ranges.c: Handle ranges in newer proms for obio/sbus.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
--- 1,4 ----
! /* $Id: ranges.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* ranges.c: Handle ranges in newer proms for obio/sbus.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
Index: linux-2.2.12/arch/sparc/prom/segment.c
diff -c linux-2.2.12/arch/sparc/prom/segment.c:1.1 linux-2.2.12/arch/sparc/prom/segment.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/segment.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/segment.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: segment.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* segment.c: Prom routine to map segments in other contexts before
* a standalone is completely mapped. This is for sun4 and
* sun4c architectures only.
--- 1,4 ----
! /* $Id: segment.c,v 1.1.1.1 1999/12/27 17:14:16 ibaldin Exp $
* segment.c: Prom routine to map segments in other contexts before
* a standalone is completely mapped. This is for sun4 and
* sun4c architectures only.
Index: linux-2.2.12/arch/sparc/prom/tree.c
diff -c linux-2.2.12/arch/sparc/prom/tree.c:1.1 linux-2.2.12/arch/sparc/prom/tree.c:1.1.1.1
*** linux-2.2.12/arch/sparc/prom/tree.c:1.1 Mon Dec 27 12:14:16 1999
--- linux-2.2.12/arch/sparc/prom/tree.c Mon Dec 27 12:14:16 1999
***************
*** 1,4 ****
! /* $Id: tree.c,v 1.1 1999/12/27 17:14:16 ibaldin Exp $
* tree.c: Basic device tree traversal/scanning for the Linux
* prom library.
Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    44 Files
  • 6
    Nov 6th
    18 Files
  • 7
    Nov 7th
    9 Files
  • 8
    Nov 8th
    8 Files
  • 9
    Nov 9th
    3 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    14 Files
  • 12
    Nov 12th
    20 Files
  • 13
    Nov 13th
    63 Files
  • 14
    Nov 14th
    18 Files
  • 15
    Nov 15th
    8 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    17 Files
  • 19
    Nov 19th
    0 Files
  • 20
    Nov 20th
    0 Files
  • 21
    Nov 21st
    0 Files
  • 22
    Nov 22nd
    0 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    0 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close