diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2013-04-07 15:21:41 +0200 |
---|---|---|
committer | Pali Rohár <pali.rohar@gmail.com> | 2013-04-07 15:21:41 +0200 |
commit | 47bdc71eea44b9332901bfbb1052d12fea88fb87 (patch) | |
tree | ac87470962793309a12e8abcda9c3928cc8ffdd9 | |
parent | d9e43ef41c3ef59bfb9fe3b811604f2b41160257 (diff) | |
download | 0xFFFF-47bdc71eea44b9332901bfbb1052d12fea88fb87.tar.bz2 |
debian: Add debian packaging
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 25 | ||||
-rw-r--r-- | debian/copyright | 29 | ||||
-rw-r--r-- | debian/docs | 2 | ||||
-rwxr-xr-x | debian/rules | 11 | ||||
-rw-r--r-- | debian/source/format | 1 |
7 files changed, 74 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..444d517 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +0xffff (0.6-1) unstable; urgency=low + + * This is new rewritten version of original 0xFFFF 0.5 tool + + -- Pali Rohár <pali.rohar@gmail.com> Sun, 07 Apr 2013 15:01:50 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..45d4f04 --- /dev/null +++ b/debian/control @@ -0,0 +1,25 @@ +Source: 0xffff +Section: utils +Priority: extra +Maintainer: Pali Rohár <pali.rohar@gmail.com> +Build-Depends: debhelper (>= 7), libusb-dev +Standards-Version: 3.9.3 + +Package: 0xffff +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Open Free Fiasco Firmware Flasher + 0xFFFF is Open Free Fiasco Firmware Flasher for Maemo devices. It support + generating and unpacking FIASCO images on local computer. Useful for editing + Maemo firmware package for future flash. It support via USB flashing any image + type to Maemo device and also \"cold\" flashing which means flashing dead + device with erased bootloader. There is support for booting kernel via USB + without flashing to NAND and also changing configuration of Maemo device + (enable/disable R&D mode, changing HW revision strings, ...). + . + 0xFFFF is alternative tool to proprietary Nokia flasher-3.5 and fiasco-gen. + 0xFFFF generate compatible FIASCO images and also accept FIASCO images + generated by Nokia fiasco-gen. + . + Supported Maemo devices: + Nokia 770, Nokia N800, Nokia N810, Nokia N810 WiMAX, Nokia N900 diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..8c04568 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: 0xffff + +Files: * +Copyright: 2007-2012 pancake <pancake@youterm.com> + 2011 Michael Buesch <mb@bu3sch.de> + 2011-2013 Pali Rohár <pali.rohar@gmail.com> +License: GPL-3.0+ + +Files: debian/* +Copyright: 2013 Pali Rohár <pali.rohar@gmail.com> +License: GPL-3.0+ + +License: GPL-3.0+ + This program 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 3 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 <http://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..2e09849 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README +doc/* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f43d960 --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ + +override_dh_auto_install: + dh_auto_install -- PREFIX=/usr 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) |