summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatalin Marinas <catalin.marinas@arm.com>2011-03-28 14:43:04 +0100
committerCatalin Marinas <catalin.marinas@arm.com>2011-03-28 14:43:04 +0100
commitd1cf723140258fe2178fd0775d872731a4e3d40c (patch)
tree8caa2f2aa012e12940723667e140bfa2b72c8801
parent82ab1d5ab350b04851414e42172719dd9f660cf8 (diff)
Change the license to BSD (required by ARM's legal team).
-rw-r--r--LICENSE.txt28
-rw-r--r--Makefile7
-rw-r--r--boot.S16
-rw-r--r--model.lds.S16
4 files changed, 40 insertions, 27 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..ac0e31b
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,28 @@
+Copyright (c) 2011, ARM Limited
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+ * Neither the name of ARM nor the names of its contributors may be
+ used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/Makefile b/Makefile
index 944d705..31443c8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,9 @@
-# Build an ELF linux+filesystem image
+# Makefile - build a kernel+filesystem image for stand-alone Linux booting
+#
+# Copyright (C) 2011 ARM Limited. All rights reserved.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE.txt file.
CPPFLAGS += -DSMP
CPPFLAGS += -DUSE_INITRD
diff --git a/boot.S b/boot.S
index 3ad47c8..867290b 100644
--- a/boot.S
+++ b/boot.S
@@ -1,20 +1,10 @@
/*
* boot.S - simple register setup code for stand-alone Linux booting
*
- * Copyright (C) 2009 ARM Limited
+ * Copyright (C) 2011 ARM Limited. All rights reserved.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE.txt file.
*/
.syntax unified
diff --git a/model.lds.S b/model.lds.S
index 10cd4b3..816c338 100644
--- a/model.lds.S
+++ b/model.lds.S
@@ -1,20 +1,10 @@
/*
* model.lds.S - simple linker script for stand-alone Linux booting
*
- * Copyright (C) 2009 ARM Limited
+ * Copyright (C) 2011 ARM Limited. All rights reserved.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE.txt file.
*/
OUTPUT_FORMAT("elf32-littlearm")