--- u-boot-omap3-2010.3git20100531.orig/debian/changelog +++ u-boot-omap3-2010.3git20100531/debian/changelog @@ -0,0 +1,36 @@ +u-boot-omap3 (2010.3git20100531-0ubuntu1) maverick; urgency=low + + * new upstream version with beagle XM support + + -- Oliver Grawert Tue, 01 Jun 2010 11:46:37 +0200 + +u-boot-omap3 (2010.3git20100315-0ubuntu4) lucid; urgency=low + + * rules: export CROSS_COMPILE=$(DEB_HOST_GNU_TYPE)- when DEB_BUILD_GNU_TYPE + and DEB_HOST_GNU_TYPE differ; fixes cross-builds. + * rules: the upstream build passes LDFLAGS directly to ld instead of calling + gcc for linking; so instead of passing -Wl,foo in LDFLAGS as in automake + builds, one should set LDFLAGS to foo directly; add some Makefile to foo + to convert the flags on the fly. + * rules: minor whitespace cleanups. + + -- Loïc Minier Wed, 24 Mar 2010 16:06:07 +0100 + +u-boot-omap3 (2010.3git20100315-0ubuntu3) lucid; urgency=low + + * add a proper versioned build-dep for debhelper when using overrides + + -- Oliver Grawert Tue, 23 Mar 2010 15:52:31 +0100 + +u-boot-omap3 (2010.3git20100315-0ubuntu2) lucid; urgency=low + + * adjust debian/rules to use proper overrides + * adjust debian/u-boot-omap3.install accordingly + + -- Oliver Grawert Tue, 23 Mar 2010 13:51:29 +0100 + +u-boot-omap3 (2010.3git20100315-0ubuntu1) lucid; urgency=low + + * Initial release. (LP: #544331) + + -- Oliver Grawert Mon, 22 Mar 2010 15:06:23 +0200 --- u-boot-omap3-2010.3git20100531.orig/debian/compat +++ u-boot-omap3-2010.3git20100531/debian/compat @@ -0,0 +1 @@ +7 --- u-boot-omap3-2010.3git20100531.orig/debian/u-boot-omap3.install +++ u-boot-omap3-2010.3git20100531/debian/u-boot-omap3.install @@ -0,0 +1 @@ +usr/lib/u-boot/ --- u-boot-omap3-2010.3git20100531.orig/debian/README.source +++ u-boot-omap3-2010.3git20100531/debian/README.source @@ -0,0 +1,17 @@ +x-loader for Debian +------------------- + + + +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. Please see: + + /usr/share/doc/quilt/README.source + +for more information on how to apply the patches, modify patches, or +remove a patch. + + + --- u-boot-omap3-2010.3git20100531.orig/debian/rules +++ u-boot-omap3-2010.3git20100531/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +# the upstream build passes LDFLAGS directly to ld instead of calling gcc for +# linking; so instead of passing -Wl,foo in LDFLAGS as in automake builds, one +# should set LDFLAGS to foo directly +comma := , +LDFLAGS := $(patsubst -Wl$(comma)%,%,$(LDFLAGS)) + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) +export CROSS_COMPILE=$(DEB_HOST_GNU_TYPE)- +endif + +%: + dh --with quilt $@ + +override_dh_auto_configure: + $(MAKE) omap3_beagle_config + +override_dh_auto_install: + install -D -m644 u-boot.bin debian/tmp/usr/lib/u-boot/u-boot-beagle.bin --- u-boot-omap3-2010.3git20100531.orig/debian/copyright +++ u-boot-omap3-2010.3git20100531/debian/copyright @@ -0,0 +1,45 @@ +This work was packaged for Debian by: + + Oliver Grawert on Mon, 22 Mar 2010 15:06:23 +0200 + +It was downloaded from: + + http://gitorious.org/u-boot-omap3/mainline/commits/master + +Upstream Authors: + + Wolfgang Denk, DENX Software Engineering, wd@denx.de. + Steve Sakoman + +Copyright: + + Copyright (C) 2000-2010 + Wolfgang Denk, DENX Software Engineering, wd@denx.de. + +License: + + 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. + +The Debian packaging is: + + Copyright (C) 2010 Oliver Grawert + +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. --- u-boot-omap3-2010.3git20100531.orig/debian/control +++ u-boot-omap3-2010.3git20100531/debian/control @@ -0,0 +1,15 @@ +Source: u-boot-omap3 +Section: misc +Priority: extra +Maintainer: Oliver Grawert +Build-Depends: quilt (>= 0.46-7~), debhelper (>= 7.0.50~) +Standards-Version: 3.8.4 + +Package: u-boot-omap3 +Architecture: armel +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: U-Boot bootloader configured for TI OMAP 3xxx CPUs + This package contains the U-Boot bootloader for TI OMAP 3xx CPUs, + which is responsible for loading and executing the Linux kernel on those + boards. This package contains the u-boot binary blob, and is not usually + needed on a normal system --- u-boot-omap3-2010.3git20100531.orig/debian/patches/series +++ u-boot-omap3-2010.3git20100531/debian/patches/series @@ -0,0 +1 @@ +# add your quilt patches here