From c2950b789ebef0cc9dc1f6741e47f61dcac5f1d2 Mon Sep 17 00:00:00 2001 From: Mats Bergstrom Date: Tue, 4 Oct 2011 12:41:22 +0200 Subject: Added debian directory --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 29 +++++++++++++++++++++++++++++ debian/docs | 2 ++ debian/rules | 31 +++++++++++++++++++++++++++++++ debian/source/format | 1 + 7 files changed, 84 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 000000000..08248dcff --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +u-boot-ux500 (2009.11-2) unstable; urgency=low + + * Initial Release. + + -- Mats Bergstrom Mon, 03 Oct 2011 14:40:24 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 000000000..103a8f16c --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: u-boot-ux500 +Section: unknown +Priority: extra +Maintainer: Igloo community +Build-Depends: debhelper (>= 7.0.50~) +Standards-Version: 3.9.1 +Homepage: http://www.igloocommunity.org + + +Package: u-boot-ux500 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ST-Ericsson Snowball binary u-boot files + This package contains binary u-boot files for the Snowball developer board from + ST-Ericsson. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 000000000..a5a7b2ca0 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: u-boot-ux500 +Source: http://www.igloocommunity.org/gitweb/ + +Files: * +Copyright: (C) Copyright 2000 - 2009 Wolfgang Denk, DENX Software Engineering, wd@denx.de +License: GPL-2.0+ + +Files: debian/* +Copyright: 2011 Mats Bergstrom +License: GPL-2.0+ + +License: GPL-2.0+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package 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, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + diff --git a/debian/docs b/debian/docs new file mode 100644 index 000000000..9095af332 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README +CHANGELOG-before-U-Boot-1.1.5 diff --git a/debian/rules b/debian/rules new file mode 100755 index 000000000..f5864c090 --- /dev/null +++ b/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +#%: +# dh $@ + +#UBOOT_MAKE_ARGS := ARCH=arm CROSS_COMPILE=/usr/bin/arm-linux-gnueabi- +UBOOT_MAKE_ARGS := ARCH=arm + +build: + $(MAKE) $(UBOOT_MAKE_ARGS) u8500_snowball_config + $(MAKE) $(UBOOT_MAKE_ARGS) + +binary: + $(MAKE) $(UBOOT_MAKE_ARGS) u8500_snowball_config + $(MAKE) $(UBOOT_MAKE_ARGS) + +binary-arch: + $(MAKE) $(UBOOT_MAKE_ARGS) u8500_snowball_config + $(MAKE) $(UBOOT_MAKE_ARGS) + +clean: + $(MAKE) $(UBOOT_MAKE_ARGS) clean diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) -- cgit v1.2.3