summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control13
-rw-r--r--debian/copyright41
-rwxr-xr-xdebian/rules14
-rw-r--r--debian/source/format1
6 files changed, 75 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ca76384
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+arndale-pre-boot (0.0.2.20130101-0ubuntu1~linaro1) quantal; urgency=low
+
+ * Initial release.
+
+ -- Fathi Boudra <fathi.boudra@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..b48da5c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: arndale-pre-boot
+Section: admin
+Priority: extra
+Maintainer: Linaro Packagers <linaro-pkg@lists.launchpad.net>
+Build-Depends: debhelper (>= 8.0.0)
+Standards-Version: 3.9.3
+
+Package: arndale-pre-boot
+Architecture: all
+Depends: ${misc:Depends}
+Description: Binary pre-bootloader for Arndale (BL1)
+ This package contains the BL1 binary for Arndale board, a chip-specific
+ pre-bootloader provided by Samsung.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e7ef745
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,41 @@
+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 Samsung Electronics Co., LTD
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2013 Fathi Boudra <fathi.boudra@linaro.org>
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+You may use the binary pre-bootloader for Arndale board 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 Samsung Electronics Co., LTD. (“Samsung”) 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..d1dd7b6
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
+
+override_dh_auto_install:
+ install -D -p -m0644 arndale-bl1.bin \
+ debian/arndale-pre-boot/lib/firmware/arndale/arndale-bl1.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)