summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2013-01-07 10:53:38 +0200
committerFathi Boudra <fathi.boudra@linaro.org>2013-10-03 10:25:50 +0300
commit97f9d95f0789935805cdfb73296812a2e191b0dd (patch)
tree565e141ec0d9b2ab8c6ef0c3ee0ed9e01e1687c8
parent66f62de7fd260eae5992abdc084ca33e6cefa900 (diff)
Imported Debian patch 0.0.2.20130926-0ubuntu1~linaro1HEADmaster
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control12
-rw-r--r--debian/copyright40
-rwxr-xr-xdebian/rules18
-rw-r--r--debian/source/format1
6 files changed, 77 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..bc44959
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+fvp-pre-boot (0.0.2.20130926-0ubuntu1~linaro1) raring; urgency=low
+
+ * Initial release.
+
+ -- Ryan Harkin <ryan.harkin@linaro.org> Mon, 07 Jan 2013 10:53:38 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a002172
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,12 @@
+Source: fvp-pre-boot
+Section: admin
+Priority: extra
+Maintainer: Linaro Packagers <linaro-pkg@lists.launchpad.net>
+Build-Depends: debhelper (>= 8.0.0)
+Standards-Version: 3.9.4
+
+Package: fvp-pre-boot
+Architecture: all
+Depends: ${misc:Depends}
+Description: Binary pre-bootloader for FVP Base models
+ This package contains the generic firmware binaries for the FVP Base Models.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ac69b45
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,40 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: arndale-pre-boot
+Source: http://git.chromium.org/gitweb/?p=chromiumos/overlays/board-overlays.git
+
+Files: *
+Copyright: 2012-2013 ARM Ltd
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2013 Ryan Harkin <Ryan.Harkin@linaro.org>
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+You may use the binary pre-bootloader for FVP Base Models under
+the terms of the BSD license as follows:
+
+"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, LTD. (“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
+OWNER 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/debian/rules b/debian/rules
new file mode 100755
index 0000000..18e8d28
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
+
+override_dh_auto_install:
+ install -D -p -m0644 bl1.bin \
+ debian/fvp-pre-boot/lib/firmware/fvp-pre-boot/bl1.bin
+ install -D -p -m0644 BL2_AP_Trusted_RAM.bin \
+ debian/fvp-pre-boot/lib/firmware/fvp-pre-boot/BL2_AP_Trusted_RAM.bin
+ install -D -p -m0644 BL31_AP_Trusted_RAM.bin \
+ debian/fvp-pre-boot/lib/firmware/fvp-pre-boot/BL31_AP_Trusted_RAM.bin
+
+override_dh_strip:
+ dh_strip --exclude=.bin
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)