debian/0000775000000000000000000000000012014475760007176 5ustar debian/source/0000775000000000000000000000000012005540114010460 5ustar debian/source/format0000664000000000000000000000001412005540114011666 0ustar 3.0 (quilt) debian/copyright0000664000000000000000000000170212005540114011113 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: linaro-boot-utils Source: Files: * debian/* Copyright: 2011, Linaro License: GPL-2+ 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". debian/changelog0000664000000000000000000000107412014463734011050 0ustar linaro-boot-utils (0.1-0ubuntu1) quantal; urgency=low * Releasing 0.1-0ubuntu1 -- John Rigby Mon, 20 Aug 2012 10:36:52 -0600 linaro-boot-utils (0.1-0ubuntu1~ppa) quantal; urgency=low * Update control to point to correct git repo on git.lianro.org * Change to quantal -- John Rigby Thu, 02 Aug 2012 13:42:43 -0600 linaro-boot-utils (0.1-0ubuntu1~ppa~oneiric) oneiric; urgency=low * Initial release Based on upstream release 0.1 -- John Rigby Tue, 15 Nov 2011 00:08:22 -0700 debian/control0000664000000000000000000000121212014475760010575 0ustar Source: linaro-boot-utils Section: devel Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: John Rigby Build-Depends: debhelper (>= 8.0.0) Standards-Version: 3.9.3 Homepage: http://www.linaro.org Vcs-Git: git://git.linaro.org/people/jcrigby/linaro-boot-utils.git Package: linaro-boot-utils Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Utilities for booting development boards This package contains utilities useful for booting development boards with corrupt or no boot media over a USB or serial connection to a development host. debian/compat0000664000000000000000000000000212005540114010356 0ustar 8 debian/patches/0000775000000000000000000000000012005540114010607 5ustar debian/rules0000775000000000000000000000150712005540114010243 0ustar #!/usr/bin/make -f deb_source := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p') deb_version := $(shell dpkg-parsechangelog | sed -n 's/^Version: //p') upstream_version := $(shell echo '$(deb_version)' | sed 's/.*://; s/-[^-]*$$//') # --remote doesn't work with git.linaro.org so this needs to be # run from a local checkout get-orig-source: rm -rf $(deb_source)-$(upstream_version) rm -f $(deb_source)-$(upstream_version).orig.tar.gz git clone --depth 1 git://git.linaro.org/people/jcrigby/linaro-boot-utils.git $(deb_source)-$(upstream_version) cd $(deb_source)-$(upstream_version) && git archive \ --format=tar \ --prefix=$(deb_source)-$(upstream_version)/ \ v$(upstream_version) \ | gzip >../$(deb_source)_$(upstream_version).orig.tar.gz rm -rf $(deb_source)-$(upstream_version) #export DH_VERBOSE=1 %: dh $@