debian/0000755000000000000000000000000012244507067007175 5ustar debian/rules0000755000000000000000000000003712244507067010255 0ustar #!/usr/bin/make -f %: dh $@ debian/install0000644000000000000000000000020412244507067010562 0ustar debian/update-kboot usr/sbin debian/kernel/zz-update-kboot etc/kernel/postinst.d debian/kernel/zz-update-kboot etc/kernel/postrm.d debian/control0000644000000000000000000000134112244507067010577 0ustar Source: kboot-utils Section: admin Priority: extra Maintainer: Antonio Ospite Build-Depends: debhelper (>= 9) Standards-Version: 3.9.5 Homepage: http://git.ao2.it/kboot-utils.git Vcs-Git: git://git.ao2.it/kboot-utils.git -b debian Vcs-Browser: http://git.ao2.it/kboot-utils.git Package: kboot-utils Architecture: all Depends: ${misc:Depends} Description: helper tools to generate a kboot.conf file kboot-utils provides helper tools to automatically generate a kboot.conf file from entries in /boot. . kboot.conf is used for instance by the petitboot bootloader, which is used on the Sony PlayStation 3 in OtherOS mode; petitboot reads the file from the root filesystem in order to list kernels to boot. debian/update-kboot.80000644000000000000000000000051512244507067011665 0ustar .\" Copyright 2011 Antonio Ospite .\" Lincensed under GPL3+ .TH UPDATE-KBOOT "8" "April 2011" .SH NAME update-kboot \- stub for kboot-mkconfig .SH SYNOPSIS .B update-kboot .SH DESCRIPTION .B update-kboot is a stub for running .B kboot-mkconfig -o /etc/kboot.cfg to generate a kboot config file. .SH "SEE ALSO" .BR kboot-mkconfig (8) debian/gbp.conf0000644000000000000000000000015312244507067010613 0ustar [DEFAULT] debian-branch = debian upstream-branch = master upstream-tag = v%(version)s pristine-tar = False debian/source/0000755000000000000000000000000012244507067010475 5ustar debian/source/format0000644000000000000000000000001412244507067011703 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000227712244507067011057 0ustar kboot-utils (0.4-1) unstable; urgency=low * debian/copyright: update copyright years for package files -- Antonio Ospite Sun, 24 Nov 2013 19:06:22 +0100 kboot-utils (0.3-1) unstable; urgency=low * debian/dirs: remove entries already created by the upstream Makefile -- Antonio Ospite Tue, 19 Nov 2013 15:14:16 +0100 kboot-utils (0.2-2) unstable; urgency=low * debian/copyright: use Copyright Format 1.0 * debian/rules: remove unneeded comments * debian/control: switch to debhelper >= 9 * debian/control: bump Standards-Version to 3.9.5 * debian/control: specify the debian package branch in Vcs-Git * debian/gbp.conf: explicitly disable pristine-tar * debian/control: fix short and long descriptions. Thanks to gregor herrmann * debian/watch: add a watchfile * debian/control: fix the long description again -- Antonio Ospite Tue, 19 Nov 2013 13:53:38 +0100 kboot-utils (0.2-1) unstable; urgency=low * Initial release (Closes: #641465) Thanks to Gergely Nagy for reviewing the package -- Antonio Ospite Sun, 02 Oct 2011 11:24:42 +0200 debian/compat0000644000000000000000000000000212244507067010373 0ustar 9 debian/postinst0000644000000000000000000000071512244507067011006 0ustar #!/bin/sh # postinst script for kboot-utils # # see: dh_installdeb(1) set -e case "$1" in configure) # Update the kboot.conf on install update-kboot 3>&- ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/manpages0000644000000000000000000000005312244507067010711 0ustar man/kboot-mkconfig.8 debian/update-kboot.8 debian/copyright0000644000000000000000000000213312244507067011127 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: kboot-utils Source: http://git.ao2.it/kboot-utils.git Files: * Copyright: 2011 Antonio Ospite License: GPL-3.0+ Files: debian/* Copyright: 2011-2013 Antonio Ospite 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 program 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 full text of the GNU General Public License version 3 can be found in the `/usr/share/common-licenses/GPL-3' file. debian/docs0000644000000000000000000000003512244507067010046 0ustar README doc/kboot.conf.sample debian/update-kboot0000755000000000000000000000007512244507067011523 0ustar #!/bin/sh set -e exec kboot-mkconfig -o /etc/kboot.conf "$@" debian/watch0000644000000000000000000000031412244507067010224 0ustar version=3 opts=downloadurlmangle=s/shortlog\/refs\/tags\/(v[\d\.]+)/snapshot\/$1.tar.gz/,\ filenamemangle=s/.*v([\d\.]+)$/kboot-utils-$1.tar.gz/ \ http://git.ao2.it/kboot-utils.git/tags ^.*v([\d\.]+) debian/kernel/0000755000000000000000000000000012244507067010455 5ustar debian/kernel/zz-update-kboot0000755000000000000000000000076212244507067013447 0ustar #! /bin/sh set -e which update-kboot >/dev/null 2>&1 || exit 0 set -- $DEB_MAINT_PARAMS mode="${1#\'}" mode="${mode%\'}" case $0:$mode in # Only run on postinst configure and postrm remove, to avoid wasting # time by calling update-grub multiple times on upgrade and removal. # Also run if we have no DEB_MAINT_PARAMS, in order to work with old # kernel packages. */postinst.d/*:|*/postinst.d/*:configure|*/postrm.d/*:|*/postrm.d/*:remove) exec update-kboot ;; esac exit 0 debian/postrm0000644000000000000000000000065712244507067010454 0ustar #!/bin/sh # postrm script for kboot-utils # # see: dh_installdeb(1) set -e case "$1" in purge) rm -f /etc/kboot.conf ;; remove|upgrade|failed-upgrade|abort-upgrade|abort-install) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0