summaryrefslogtreecommitdiffstats
path: root/src/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/makefile20
-rw-r--r--src/runtime/rt_assert.C22
-rw-r--r--src/runtime/rt_console.C22
-rw-r--r--src/runtime/rt_main.C20
-rw-r--r--src/runtime/rt_start.S20
-rw-r--r--src/runtime/rt_stdlib.C20
-rw-r--r--src/runtime/rt_sync.C22
-rw-r--r--src/runtime/rt_task.C22
-rw-r--r--src/runtime/rt_vfs.C20
9 files changed, 94 insertions, 94 deletions
diff --git a/src/runtime/makefile b/src/runtime/makefile
index 220ccef46..f2606540e 100644
--- a/src/runtime/makefile
+++ b/src/runtime/makefile
@@ -3,21 +3,21 @@
#
# $Source: src/runtime/makefile $
#
-# IBM CONFIDENTIAL
+# OpenPOWER HostBoot Project
#
# COPYRIGHT International Business Machines Corp. 2013,2014
#
-# p1
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# Object Code Only (OCO) source materials
-# Licensed Internal Code Source Materials
-# IBM HostBoot Licensed Internal Code
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# The source code for this program is not published or otherwise
-# divested of its trade secrets, irrespective of what has been
-# deposited with the U.S. Copyright Office.
-#
-# Origin: 30
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
HOSTBOOT_RUNTIME = 1
diff --git a/src/runtime/rt_assert.C b/src/runtime/rt_assert.C
index 9821a0fad..a22fe461a 100644
--- a/src/runtime/rt_assert.C
+++ b/src/runtime/rt_assert.C
@@ -3,21 +3,21 @@
/* */
/* $Source: src/runtime/rt_assert.C $ */
/* */
-/* IBM CONFIDENTIAL */
+/* OpenPOWER HostBoot Project */
/* */
-/* COPYRIGHT International Business Machines Corp. 2013 */
+/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
-/* p1 */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
/* */
-/* Object Code Only (OCO) source materials */
-/* Licensed Internal Code Source Materials */
-/* IBM HostBoot Licensed Internal Code */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
-/* The source code for this program is not published or otherwise */
-/* divested of its trade secrets, irrespective of what has been */
-/* deposited with the U.S. Copyright Office. */
-/* */
-/* Origin: 30 */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <assert.h>
diff --git a/src/runtime/rt_console.C b/src/runtime/rt_console.C
index 930e37462..bac70aa02 100644
--- a/src/runtime/rt_console.C
+++ b/src/runtime/rt_console.C
@@ -3,21 +3,21 @@
/* */
/* $Source: src/runtime/rt_console.C $ */
/* */
-/* IBM CONFIDENTIAL */
+/* OpenPOWER HostBoot Project */
/* */
-/* COPYRIGHT International Business Machines Corp. 2013 */
+/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
-/* p1 */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
/* */
-/* Object Code Only (OCO) source materials */
-/* Licensed Internal Code Source Materials */
-/* IBM HostBoot Licensed Internal Code */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
-/* The source code for this program is not published or otherwise */
-/* divested of its trade secrets, irrespective of what has been */
-/* deposited with the U.S. Copyright Office. */
-/* */
-/* Origin: 30 */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <kernel/console.H>
diff --git a/src/runtime/rt_main.C b/src/runtime/rt_main.C
index 038a58e9f..f2bfcad6c 100644
--- a/src/runtime/rt_main.C
+++ b/src/runtime/rt_main.C
@@ -3,21 +3,21 @@
/* */
/* $Source: src/runtime/rt_main.C $ */
/* */
-/* IBM CONFIDENTIAL */
+/* OpenPOWER HostBoot Project */
/* */
/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
-/* p1 */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
/* */
-/* Object Code Only (OCO) source materials */
-/* Licensed Internal Code Source Materials */
-/* IBM HostBoot Licensed Internal Code */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
-/* The source code for this program is not published or otherwise */
-/* divested of its trade secrets, irrespective of what has been */
-/* deposited with the U.S. Copyright Office. */
-/* */
-/* Origin: 30 */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <builtins.h>
diff --git a/src/runtime/rt_start.S b/src/runtime/rt_start.S
index a8356fc27..d69184aef 100644
--- a/src/runtime/rt_start.S
+++ b/src/runtime/rt_start.S
@@ -3,21 +3,21 @@
#
# $Source: src/runtime/rt_start.S $
#
-# IBM CONFIDENTIAL
+# OpenPOWER HostBoot Project
#
# COPYRIGHT International Business Machines Corp. 2013,2014
#
-# p1
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# Object Code Only (OCO) source materials
-# Licensed Internal Code Source Materials
-# IBM HostBoot Licensed Internal Code
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# The source code for this program is not published or otherwise
-# divested of its trade secrets, irrespective of what has been
-# deposited with the U.S. Copyright Office.
-#
-# Origin: 30
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
.include "kernel/ppcconsts.S"
diff --git a/src/runtime/rt_stdlib.C b/src/runtime/rt_stdlib.C
index 7735cd230..723d2b22f 100644
--- a/src/runtime/rt_stdlib.C
+++ b/src/runtime/rt_stdlib.C
@@ -3,21 +3,21 @@
/* */
/* $Source: src/runtime/rt_stdlib.C $ */
/* */
-/* IBM CONFIDENTIAL */
+/* OpenPOWER HostBoot Project */
/* */
/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
-/* p1 */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
/* */
-/* Object Code Only (OCO) source materials */
-/* Licensed Internal Code Source Materials */
-/* IBM HostBoot Licensed Internal Code */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
-/* The source code for this program is not published or otherwise */
-/* divested of its trade secrets, irrespective of what has been */
-/* deposited with the U.S. Copyright Office. */
-/* */
-/* Origin: 30 */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <stdlib.h>
diff --git a/src/runtime/rt_sync.C b/src/runtime/rt_sync.C
index 037bdaa25..86d1b426b 100644
--- a/src/runtime/rt_sync.C
+++ b/src/runtime/rt_sync.C
@@ -3,21 +3,21 @@
/* */
/* $Source: src/runtime/rt_sync.C $ */
/* */
-/* IBM CONFIDENTIAL */
+/* OpenPOWER HostBoot Project */
/* */
-/* COPYRIGHT International Business Machines Corp. 2013 */
+/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
-/* p1 */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
/* */
-/* Object Code Only (OCO) source materials */
-/* Licensed Internal Code Source Materials */
-/* IBM HostBoot Licensed Internal Code */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
-/* The source code for this program is not published or otherwise */
-/* divested of its trade secrets, irrespective of what has been */
-/* deposited with the U.S. Copyright Office. */
-/* */
-/* Origin: 30 */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <sys/sync.h>
diff --git a/src/runtime/rt_task.C b/src/runtime/rt_task.C
index f25e7bc69..4628f07e5 100644
--- a/src/runtime/rt_task.C
+++ b/src/runtime/rt_task.C
@@ -3,21 +3,21 @@
/* */
/* $Source: src/runtime/rt_task.C $ */
/* */
-/* IBM CONFIDENTIAL */
+/* OpenPOWER HostBoot Project */
/* */
-/* COPYRIGHT International Business Machines Corp. 2013 */
+/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
-/* p1 */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
/* */
-/* Object Code Only (OCO) source materials */
-/* Licensed Internal Code Source Materials */
-/* IBM HostBoot Licensed Internal Code */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
-/* The source code for this program is not published or otherwise */
-/* divested of its trade secrets, irrespective of what has been */
-/* deposited with the U.S. Copyright Office. */
-/* */
-/* Origin: 30 */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <sys/task.h>
diff --git a/src/runtime/rt_vfs.C b/src/runtime/rt_vfs.C
index 5477c8ac6..6e9334b66 100644
--- a/src/runtime/rt_vfs.C
+++ b/src/runtime/rt_vfs.C
@@ -3,21 +3,21 @@
/* */
/* $Source: src/runtime/rt_vfs.C $ */
/* */
-/* IBM CONFIDENTIAL */
+/* OpenPOWER HostBoot Project */
/* */
/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
-/* p1 */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
/* */
-/* Object Code Only (OCO) source materials */
-/* Licensed Internal Code Source Materials */
-/* IBM HostBoot Licensed Internal Code */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
-/* The source code for this program is not published or otherwise */
-/* divested of its trade secrets, irrespective of what has been */
-/* deposited with the U.S. Copyright Office. */
-/* */
-/* Origin: 30 */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <runtime/interface.h>
OpenPOWER on IntegriCloud