summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mcp750/bootloader
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/powerpc/mcp750/bootloader')
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/Makefile.in2
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/bootldr.h17
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/em86.c17
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/em86real.S17
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/exception.S17
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/head.S17
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/misc.c19
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/mm.c17
-rw-r--r--c/src/lib/libbsp/powerpc/mcp750/bootloader/pci.c19
9 files changed, 101 insertions, 41 deletions
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/Makefile.in b/c/src/lib/libbsp/powerpc/mcp750/bootloader/Makefile.in
index 172b7979a1..84e73dad01 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/Makefile.in
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/Makefile.in
@@ -1,5 +1,5 @@
#
-# $Id:
+# $Id$
#
@SET_MAKE@
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/bootldr.h b/c/src/lib/libbsp/powerpc/mcp750/bootloader/bootldr.h
index 023a1e321e..e3e02b0908 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/bootldr.h
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/bootldr.h
@@ -1,11 +1,18 @@
/*
- * include/asm-ppc/bloader.h -- Include file for bootloader.
+ * bootldr.h -- Include file for bootloader.
*
- * Copyright (C) 1998 Gabriel Paubert, paubert@iram.es
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
*
- * 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
- * for more details.
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
+ *
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
*/
#ifndef _PPC_BOOTLDR_H
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86.c b/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86.c
index 9b0f34db24..7e30089f49 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86.c
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86.c
@@ -1,3 +1,20 @@
+/*
+ * em86.c -- Include file for bootloader.
+ *
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
+ *
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
+ *
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
/*****************************************************************************
*
* Code to interpret Video BIOS ROM routines.
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86real.S b/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86real.S
index ac254055eb..a462cf7bdb 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86real.S
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/em86real.S
@@ -1,11 +1,18 @@
/*
- * arch/ppc/boot/em86real.S -- Small x86 emulator for video board setup
+ * em86real.S
*
- * Copyright (C) 1998 Gabriel Paubert, paubert@iram.es
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
*
- * 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
- * for more details.
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
+ *
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
*/
/* If the symbol __BOOT__ is defined, a slightly different version is
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/exception.S b/c/src/lib/libbsp/powerpc/mcp750/bootloader/exception.S
index cf539cf8d2..5835ea48a2 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/exception.S
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/exception.S
@@ -1,11 +1,18 @@
/*
- * arch/ppc/loader/exceotion.S -- Exception handlers for early boot.
+ * exception.S -- Exception handlers for early boot.
*
- * Copyright (C) 1998 Gabriel Paubert, paubert@iram.es
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
*
- * 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
- * for more details.
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
+ *
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
*/
/* This is an improved version of the TLB interrupt handling code from
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/head.S b/c/src/lib/libbsp/powerpc/mcp750/bootloader/head.S
index 3b413cfe5a..ca8f7a1a29 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/head.S
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/head.S
@@ -1,9 +1,18 @@
/*
- * $Id$
- *
- * 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.
+ * head.S -- Bootloader Entry point
+ *
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
+ *
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
*
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
*/
#include "bootldr.h"
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/misc.c b/c/src/lib/libbsp/powerpc/mcp750/bootloader/misc.c
index d5d0b19478..e7dd568c22 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/misc.c
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/misc.c
@@ -1,15 +1,18 @@
/*
- * arch/ppc/prepboot/misc.c
+ * head.S -- Bootloader Entry point
*
- * Copyright (C) 1998 Gabriel Paubert, paubert@iram.es
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
*
- * This file is based on arch/ppc/boot misc.c in previous versions of
- * Linux/PPC but has been so extensively changed that only a few lines
- * remain from the original.
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
*
- * 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
- * for more details.
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
*/
#include <sys/types.h>
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/mm.c b/c/src/lib/libbsp/powerpc/mcp750/bootloader/mm.c
index b385b02136..3807c75d85 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/mm.c
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/mm.c
@@ -1,11 +1,18 @@
/*
- * arch/ppc/prepboot/mm.c -- Crude memory management for early boot.
+ * mm.c -- Crude memory management for early boot.
*
- * Copyright (C) 1998 Gabriel Paubert, paubert@iram.es
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
*
- * 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
- * for more details.
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
+ *
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
*/
/* This code is a crude memory manager for early boot for LinuxPPC.
diff --git a/c/src/lib/libbsp/powerpc/mcp750/bootloader/pci.c b/c/src/lib/libbsp/powerpc/mcp750/bootloader/pci.c
index 97e75d7fd8..59cdf9e219 100644
--- a/c/src/lib/libbsp/powerpc/mcp750/bootloader/pci.c
+++ b/c/src/lib/libbsp/powerpc/mcp750/bootloader/pci.c
@@ -1,15 +1,18 @@
/*
- * arch/ppc/prepboot/pci.c -- Crude pci handling for early boot.
+ * pci.c -- Crude pci handling for early boot.
*
- * Copyright (C) 1998 Gabriel Paubert, paubert@iram.es
+ * Copyright (C) 1998, 1999 Gabriel Paubert, paubert@iram.es
*
- * The pci_scan_bus and pci_read_bases functions are slightly modified
- * versions of functions with the same name in linux/drivers/pci.c by
- * Martin Mares (mj@ucw.cz) and others (taken around linux-2.1.120).
+ * Modified to compile in RTEMS development environment
+ * by Eric Valette
*
- * 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
- * for more details.
+ * Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
*/