summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2011-08-24 10:42:27 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2011-08-24 10:48:28 -0500
commitfa7d388f1a121d42769ea0289e3c043fe229b4d2 (patch)
treefb2df977ec830be5fb8eb9bc82a02989258b2886 /src/lib
parent4b1d987b38960c882ae0e1b67d9816ab71b1c19f (diff)
downloadtalos-hostboot-fa7d388f1a121d42769ea0289e3c043fe229b4d2.tar.gz
talos-hostboot-fa7d388f1a121d42769ea0289e3c043fe229b4d2.zip
Add copyright headers to all source files.
Change-Id: I205f2409e56032cfc0aaf01d7e26d357f0b86373 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/277 Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com> Tested-by: Jenkins Server
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/assert.C22
-rw-r--r--src/lib/cxxtest_data.C38
-rw-r--r--src/lib/makefile29
-rw-r--r--src/lib/stdio.C22
-rw-r--r--src/lib/stdlib.C22
-rw-r--r--src/lib/string.C22
-rw-r--r--src/lib/sync.C22
-rw-r--r--src/lib/syscall_misc.C22
-rw-r--r--src/lib/syscall_mm.C22
-rw-r--r--src/lib/syscall_mmio.C22
-rw-r--r--src/lib/syscall_msg.C22
-rw-r--r--src/lib/syscall_stub.S22
-rw-r--r--src/lib/syscall_task.C22
-rw-r--r--src/lib/syscall_time.C22
14 files changed, 303 insertions, 28 deletions
diff --git a/src/lib/assert.C b/src/lib/assert.C
index c8b454a2f..591630f14 100644
--- a/src/lib/assert.C
+++ b/src/lib/assert.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/assert.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
/** @file assert.C
* @brief Common handling functions for assert paths.
*/
diff --git a/src/lib/cxxtest_data.C b/src/lib/cxxtest_data.C
index 7ba2c6c6e..b32845d48 100644
--- a/src/lib/cxxtest_data.C
+++ b/src/lib/cxxtest_data.C
@@ -1,19 +1,25 @@
-/****************************************************************************
- * $IBMCopyrightBlock:
- *
- * IBM Confidential
- *
- * Licensed Internal Code Source Materials
- *
- * IBM HostBoot Licensed Internal Code
- *
- * (C) Copyright IBM Corp. 2011
- *
- * The source code for this program is not published or other-
- * wise divested of its trade secrets, irrespective of what has
- * been deposited with the U.S. Copyright Office.
- * $
-****************************************************************************/
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/cxxtest_data.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <stdint.h>
/**
diff --git a/src/lib/makefile b/src/lib/makefile
index b1660d469..5ad3dd0de 100644
--- a/src/lib/makefile
+++ b/src/lib/makefile
@@ -1,20 +1,25 @@
-#############################################################################
-# $IBMCopyrightBlock:
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
#
-# IBM Confidential
+# $Source: src/lib/makefile $
#
-# Licensed Internal Code Source Materials
+# IBM CONFIDENTIAL
#
-# IBM HostBoot Licensed Internal Code
+# COPYRIGHT International Business Machines Corp. 2010 - 2011
#
-# (C) Copyright IBM Corp. 2010 - 2011
+# p1
#
-# The source code for this program is not published or other-
-# wise divested of its trade secrets, irrespective of what has
-# been deposited with the U.S. Copyright Office.
-#$
-#############################################################################
-
+# Object Code Only (OCO) source materials
+# Licensed Internal Code Source Materials
+# IBM HostBoot Licensed Internal Code
+#
+# The source code for this program is not published or other-
+# wise divested of its trade secrets, irrespective of what has
+# been deposited with the U.S. Copyright Office.
+#
+# Origin: 30
+#
+# IBM_PROLOG_END
ROOTPATH = ../..
OBJS = string.o stdlib.o assert.o stdio.o
diff --git a/src/lib/stdio.C b/src/lib/stdio.C
index 62b3c39a9..0dc617276 100644
--- a/src/lib/stdio.C
+++ b/src/lib/stdio.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/stdio.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <stdint.h>
#include <stdio.h>
#include <util/sprintf.H>
diff --git a/src/lib/stdlib.C b/src/lib/stdlib.C
index 0d2cde9df..b7cf92455 100644
--- a/src/lib/stdlib.C
+++ b/src/lib/stdlib.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/stdlib.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2010 - 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <limits.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/lib/string.C b/src/lib/string.C
index 0444a19bc..81578f5c4 100644
--- a/src/lib/string.C
+++ b/src/lib/string.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/string.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <string.h>
extern "C" void *memset(void *vdest, int64_t ch, size_t len)
diff --git a/src/lib/sync.C b/src/lib/sync.C
index be20903d7..95501d2aa 100644
--- a/src/lib/sync.C
+++ b/src/lib/sync.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/sync.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <arch/ppc.H>
#include <sys/sync.h>
#include <sys/syscall.h>
diff --git a/src/lib/syscall_misc.C b/src/lib/syscall_misc.C
index ec2125d63..3ce97396e 100644
--- a/src/lib/syscall_misc.C
+++ b/src/lib/syscall_misc.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/syscall_misc.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <sys/misc.h>
#include <sys/syscall.h>
#include <sys/mmio.h>
diff --git a/src/lib/syscall_mm.C b/src/lib/syscall_mm.C
index ba527073f..ebc95b951 100644
--- a/src/lib/syscall_mm.C
+++ b/src/lib/syscall_mm.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/syscall_mm.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <sys/syscall.h>
#include <sys/mm.h>
#include <arch/ppc.H>
diff --git a/src/lib/syscall_mmio.C b/src/lib/syscall_mmio.C
index f771129b7..182bd374f 100644
--- a/src/lib/syscall_mmio.C
+++ b/src/lib/syscall_mmio.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/syscall_mmio.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2010 - 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <sys/syscall.h>
#include <sys/mmio.h>
#include <assert.h>
diff --git a/src/lib/syscall_msg.C b/src/lib/syscall_msg.C
index 3e7c23632..08fafcbef 100644
--- a/src/lib/syscall_msg.C
+++ b/src/lib/syscall_msg.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/syscall_msg.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2010 - 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <sys/msg.h>
#include <sys/syscall.h>
#include <sys/vfs.h>
diff --git a/src/lib/syscall_stub.S b/src/lib/syscall_stub.S
index a3b83326e..aca533338 100644
--- a/src/lib/syscall_stub.S
+++ b/src/lib/syscall_stub.S
@@ -1,3 +1,25 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: src/lib/syscall_stub.S $
+#
+# IBM CONFIDENTIAL
+#
+# COPYRIGHT International Business Machines Corp. 2010 - 2011
+#
+# p1
+#
+# Object Code Only (OCO) source materials
+# Licensed Internal Code Source Materials
+# IBM HostBoot Licensed Internal Code
+#
+# The source code for this program is not published or other-
+# wise divested of its trade secrets, irrespective of what has
+# been deposited with the U.S. Copyright Office.
+#
+# Origin: 30
+#
+# IBM_PROLOG_END
.section .text
.global _syscall0
diff --git a/src/lib/syscall_task.C b/src/lib/syscall_task.C
index b133ef2e4..d986d5374 100644
--- a/src/lib/syscall_task.C
+++ b/src/lib/syscall_task.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/syscall_task.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2010 - 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <sys/task.h>
#include <sys/syscall.h>
#include <kernel/task.H>
diff --git a/src/lib/syscall_time.C b/src/lib/syscall_time.C
index 0a779b9f0..d4ea6d0a7 100644
--- a/src/lib/syscall_time.C
+++ b/src/lib/syscall_time.C
@@ -1,3 +1,25 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/lib/syscall_time.C $
+//
+// IBM CONFIDENTIAL
+//
+// COPYRIGHT International Business Machines Corp. 2010 - 2011
+//
+// p1
+//
+// Object Code Only (OCO) source materials
+// Licensed Internal Code Source Materials
+// IBM HostBoot Licensed Internal Code
+//
+// The source code for this program is not published or other-
+// wise divested of its trade secrets, irrespective of what has
+// been deposited with the U.S. Copyright Office.
+//
+// Origin: 30
+//
+// IBM_PROLOG_END
#include <sys/time.h>
#include <sys/syscall.h>
OpenPOWER on IntegriCloud