debian/0000755000000000000000000000000012252442130007161 5ustar debian/changelog.upstream.sh0000644000000000000000000000557712252434175013333 0ustar #!/bin/sh # Generate debian/changelog.upstream from debian/changelog and # the git revision log. Inspired by Gerrit Pape’s # debian/changelog.upstream.sh, from the git-core Debian package. set -e # If argument matches /^Version: /, output remaining text. # Result is true if and only if argument matches. version_line() { local line result line=$1 result=${line#Version: } if test "$result" = "$line" then return 1 else printf "%s\n" "$result" return 0 fi } # If argument matches /^\* New.*snapshot.*commit /, # output remaining text. # Result is true if and only if argument matches. commit_id_line() { local line result line=$1 result=${line#\* New*snapshot*commit } if test "$result" = "$line" then return 1 else printf "%s\n" "$result" return 0 fi } # Read standard input, scanning for a changelog entry of the # form “New snapshot, taken from upstream commit .” # Output is . # Fails and writes a message to standard error if no such entry is # found before the next Version: line with a different upstream # version (or EOF). # $1 is the upstream version sought. read_commit_id() { local upstream_version line version cid upstream_version=$1 while read line do if version=$(version_line "$line") && test "${version%-*}" != "$upstream_version" then break fi if cid=$(commit_id_line "$line") then printf "%s\n" "${cid%.}" return 0 fi done echo >&2 "No commit id for $upstream_version" return 1 } last=none last_cid=none # Add a list of all revisions up to $last to debian/changelog.upstream # and set last=$2. # $1 is a user-readable name for the commit $2 add_version() { local new new_cid limiter new=$1 new_cid=$2 if test "$last" = none then : > debian/changelog.upstream+ last=$new last_cid=$new_cid return 0 fi if test "$new" = "$last" then return 0 fi exec >> debian/changelog.upstream+ if test "$new" = none then # pre-history git show radeontool-1.6.0:CHANGES else echo "Version $last" echo "Version $last" | tr "[:print:]" - echo if test "$new" = 1.5 then # beginning of tracked history git shortlog --no-merges "$last_cid" else git shortlog --no-merges "$new_cid".."$last_cid" fi echo fi last=$new last_cid=$new_cid } v="radeontool-" dpkg-parsechangelog --format rfc822 --all | { while read line do if version=$(version_line "$line") then # strip Debian revision upstream_version=${version%-*} if test "$upstream_version" = "1.5" then # pre-history add_version "$upstream_version" "untracked" elif git rev-parse --verify -q "$v$upstream_version" > /dev/null then # upstream release add_version "$upstream_version" "$v$upstream_version" else # snapshot cid=$(read_commit_id "$upstream_version") || exit 1 add_version "$upstream_version" "$cid" fi fi done add_version none none } mv -f debian/changelog.upstream+ debian/changelog.upstream debian/autogen.sh0000755000000000000000000000101012252434175011164 0ustar #!/bin/sh # Generate debian/changelog.upstream. # # Uses debian/changelog and the git revision log. set -e generated_changelog_needs_update() { test -e debian/changelog.upstream || return 0 read line < debian/changelog.upstream || return 0 ver=${line#Version } test "$ver" != "" || return 0 read line < debian/changelog || return 0 rhs=${line#*(} deb_ver=${rhs%)*} new_ver=${deb_ver%-*} test "$ver" != "$new_ver" } if ! generated_changelog_needs_update then exit 0 fi exec sh debian/changelog.upstream.sh debian/gbp.conf0000644000000000000000000000013112252434175010605 0ustar [git-buildpackage] prebuild = GIT_DIR=$GBP_GIT_DIR debian/autogen.sh compression = bzip2 debian/changelog.upstream0000644000000000000000000001270312252440563012705 0ustar Version 1.6.3 ------------- Alex Deucher (3): add latest chip families from the ddx add radeonreg program radeonreg: add radeonreg regs all option Dave Airlie (4): evergreen : more regs radeontool: update pci ids radeontool: add support for parsing OF ibm,* setup tables update version Jonathan Nieder (12): avoid -Wformat-security warnings teach fatal() to write newline avivotool: make card detection and mapping errors non-fatal avivotool, radeonreg: make fatal errors exit use continue statement to simplify "for each PCI device" loop avivotool, radeonreg: completely skip early cards with --skip exit "for each PCI device" loop as soon as Radeon device is found radeontool, avivotool: remove unnecessary region autodetection magic switch to modern pci_device_map_range API include errno string in more messages radeontool: document functions that require mapped control region radeontool: make card detection and mapping errors non-fatal Rafał Miłecki (6): avivotool: allow reading regs from given range avivotool: allow reading basic audio info on Evergreen avivotool: allow reading HDMI related regs on R600 avivotool: dump current audio state on Evergreen avivotool: dump enabled HDMI blocks on Evergreen avivotool: dump whole HDMI block on Evergreen Tormod Volden (2): radeontool: add missing newline to error message prefix fatal error messages with "fatal error:" Version 1.6.2 ------------- Alex Deucher (1): add support for 256k mmio apertures Dave Airlie (12): radeon: fix clock cntl smashing on setting a value avivotool: fix fb mapping failure update pciids from radeon evergreen: add initial support using code from DDX evergreen: add initial cursor avoid crashing on dce3.2 all reg dumps radeontool: fix mc dumps evergreen: add initial dac support evergreen: add support for other commandline regs evergreen: add more regs to all dumps add combios ram reset table radeontool 1.6.2 Version 1.6.1 ------------- Alex Deucher (4): radeontool/avivotool: power mode updates add autogen.sh fix i2c gpio lookup fix mmio aperture selection for evergreen Dave Airlie (6): decode combios mm table a bit radeontool: add more legacy crtc regs radeontool: add a bunch more pll regs radeontool: more legacy registers add combios igp tables bump to 1.6.1 Jonathan Nieder (7): radeontool: completely skip early cards with --skip radeontool: error out for missing control or fb region radeontool: handle r128 again radeontool: error out for too many control or fb regions radeontool regmatch: print name before reading each register radeontool regmatch: sync() before reading a bunch of registers radeontool: Avoid lockup on ‘radeontool regmatch '*'’ on r128 Luigi Gangitano (1): radeontool: parse command options reliably Tormod Volden (2): radeontool: Remove an incomplete list of known cards radeontool: use stderr for usage message Version 1.6.0 ------------- Alex Deucher (4): add tv-out registers add bios tvtables add support for all combios tables to radeontool dump detailed connector/router info Dave Airlie (46): initial radeontool import from Ben Herrenschmidt.. add support for ATOM connectors adsd fw_cntl and TMDS external detect add more DAC regs and SE_CNTL_STATUS initial exttmds table add rs480 unk regs add standard reg naming to avivotool add r600 mc regs add some more regs for vga plls add tv + cursor 2 radeontool: update to use libpciaccess radeontool: add some pll/clk reg reading code add some more regs make fatal error exit fix bug in option parsing fix debug command line add lvds pll cntl to default list add kgrids atom parser and initial table parsing add more ram dumping stuff kernel compat radeontool: update atombios WIP on atom execute fix mmap dump dp table offsets radeon: fix struct scope initial fb hacks fix fb return correct fb val add some pcie bits radeon: add start of pci id code radeontool: add missing family radeon: dacs have moved radeon: get dacs automatically set card_info properly add basic RS6xx bits radeon: some ppc debuggin add missing return add missing le32_to_cpu avivotool: fix cmdfifo dumping + add some atombios tables radeon: fix clock cntl read/write + add tmds radeonbios: add some more combios tables radeontool: add clk regs to avivotool radeontool: add some more combios radeontool: add mc dumps dump in hex radeon/avivotool: automake/autoconfisize Robin Johnson (1): fix skip add a pci id airlied (1): add pixclks cntl root (1): add avivotool to build v1.5 (2004 Feb 12) Added stretch option v1.4 (2004 Feb 4) Fix message about backlight status. (Soos Peter) v1.3 (2004 Feb 3) path fixes in lightwatch.pl added --skip=1 option for multiple cards print mmap() return value on error v1.2 (2003 Oct 26) Don't hard code the path of lspci, but instead set the PATH environment variable. Search for "ATI Tech" as well as "Radeon" in the lspci output. Included lightwatch.pl. debian/radeontool.sgml0000644000000000000000000001307012252434175012226 0ustar manpage.1'. You may view the manual page with: `docbook-to-man manpage.sgml | nroff -man | less'. A typical entry in a Makefile or Makefile.am is: manpage.1: manpage.sgml docbook-to-man $< > $@ The docbook-to-man binary is found in the docbook-to-man package. Please remember that if you create the nroff version in one of the debian/rules file targets (such as build), you will need to include docbook-to-man in your Build-Depends control field. --> Luigi"> Gangitano"> January 2, 2009"> 8"> luigi@debian.org"> RADEONTOOL"> Debian"> GNU"> GPL"> ]>
&dhemail;
&dhfirstname; &dhsurname; 2005 &dhusername; &dhdate;
&dhucpackage; &dhsection; &dhpackage; utility to get/set registers and to control backlight on radeon based laptops &dhpackage; DESCRIPTION This manual page documents briefly the &dhpackage; command. This manual page was written for the &debian; distribution because the original program does not have a manual page. &dhpackage; is a program that switches on/off backlight and external output on ATI Radeon based laptops, and is able to list or set register values. COMMANDS You can specify one of the following commands: Power down the external video output Power down the backlight Adjusts stretching for resolution mismatch Show a listing of some random registers Show registers matching wildcard pattern Set registers matching wildcard pattern OPTIONS These programs follow the usual &gnu; command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. Show a little debug info Skips the first n cards and acts on the n+1 AUTHOR This manual page was written by &dhusername; &dhemail; for the &debian; system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the &gnu; General Public License, Version 2 any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL.
debian/README.Debian0000644000000000000000000000103412252434175011232 0ustar radeontool for Debian --------------------- WARNING: Radeontool code has not been completely audited and may contain bugs that could damage your hardware. Use at your own risk. radeontool needs to access /dev/mem in RW mode, so it must be executed by root. This is why it's goin' to stay in /usr/sbin. An useful perl script that monitors xscreensaver status and powers off/on backlight when the screen saver kicks in. See /usr/share/doc/radeontool/lightwatch.pl -- Luigi Gangitano , Mon, 28 Feb 2005 00:13:08 +0100 debian/copyright0000644000000000000000000001755412252434175011142 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: radeontool Upstream-Contact: xorg-driver-ati@lists.x.org (subscription required) Upstream-Maintainer: Dave Airlie Source: http://people.freedesktop.org/~airlied/radeontool/ git://people.freedesktop.org/~airlied/radeontool.git Files: avivotool.c radeontool.c radeonreg.c Copyright: 2002-2004 Frederick Dean 2006 Ben Herrenschmidt 2007 Daniel Stone 2007 Jerome Glisse 2007 Matthew Garrett 2011 Rafał Miłecki 2007-2009, 2011-2012 Alex Deucher 2006-2012 Dave Airlie License: ZLIB Files: configure.ac Makefile.am Copyright: 2009 Dave Airlie License: X11 Files: atom-bits.h atom.c atom.h atom-names.h Origin: kgrids ATOM parser, http://www.x.org/docs/AMD/kgrids-atom.zip Adapted for radeontool by Dave Airlie, 2008. Author: Stanislaw Skowronek Copyright: 2008 Advanced Micro Devices, Inc. License: Expat Files: atombios.h ObjectID.h Origin: src/AtomBios/includes/ from xf86-video-radeonhd 1.2.0 Updated by Dave Airlie, 2008. Updated by Alex Deucher, 2009. See drivers/gpu/drm/radeon/ in linux-2.6 for the latest version. Copyright: 2006-2007 Advanced Micro Devices, Inc. License: Expat Files: atom-types.h Author: Dave Airlie Copyright: 2008 Red Hat, Inc. License: Expat Files: atombios_tables.c kernel-compat.h Copyright: 2008-2009 Dave Airlie 2009 Alex Deucher License: no-notice No copyright or license notice. Files: radeon_chipinfo_gen.h Origin: src/ in xf86-video-ati 6.14.2~20 Source: src/pcidb in xf86-video-ati 6.14.2~20 Copyright: none, automatically generated License: generated /* This file is autogenerated please do not edit */ Files: radeon.h Origin: Extracted from src/radeon.h in xf86-video-ati 6.14.2~20 Copyright: none: this is a list of chip families License: none No copyright to license. Files: radeon_reg.h Siblings: src/radeon_reg.h in xf86-video-ati include/radeon_reg.h in xf86-video-avivo drivers/gpu/drm/radeon/radeon_reg.h in linux-2.6 Copyright: 2000 ATI Technologies Inc., Markham, Ontario, and VA Linux Systems Inc., Fremont, California. License: X11-2 Files: xf86i2c.c xf86i2c.h Origin: hw/xfree86/i2c/ from xorg-server 1.1.99.3 Adapted for avivotool by Jerome Glisse, 2007. Copyright: © 1998 Itai Nahshon, Michael Schimek License: probably-Expat Probably intended to be distributed under an MIT/X11-style license. . The original code (in XFree86 3.9Nd) was inspired by the Linux I2C driver written by Gerd Knorr and others in 1998, but the code differs enough that it seems likely no verbatim copying took place. A second-hand account[1] indicates that Michael Schimek’s contribution was not copied from Linux: . -- 8< -- From: mcnichol@austin.ibm.com Subject: Re: kdrive neomagic driver is GPL licensed? Date: Mon, 30 Apr 2007 22:49:00 -0500 Message-ID: <200705010349.l413n0O30576@xanth.austin.ibm.com> Cc: xorg@lists.freedesktop.org To: daniel@fooishbar.org . [...] The following comment caught my attention: . /* * Copyright (C) 1998 Itai Nahshon, Michael Schimek * * The original code was derived from and inspired by * the I2C driver from the Linux kernel. * (c) 1998 Gerd Knorr */ . It shows up in 2 files: X11R7.1/xorg-server-1.1.1/hw/xfree86/i2c/xf86i2c.c X11R7.1/xorg-server-1.1.1/hw/xfree86/i2c/xf86i2cmodule.c . This may be ok, but I thought it worth looking into. I managed to get in touch with Michael, and he verified that none of his contributions were derived from Linux. I haven't been able to contact Itai or Gerd. -- >8 -- . [1] http://article.gmane.org/gmane.comp.freedesktop.xorg/17694 . Michael Schimek continued to improve the module through 1999. The changes since then have been small bug fixes. License: ZLIB Use hereby granted under the zlib license. . This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. . 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. . 3. This notice may not be removed or altered from any source distribution. License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: X11 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation on the rights to use, copy, modify, merge, publish, distribute, sub license, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: X11-2 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation on the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL ATI, VA LINUX SYSTEMS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/watch0000644000000000000000000000012612252434175010223 0ustar version=3 http://people.freedesktop.org/~airlied/radeontool/radeontool-(.*)\.tar\.bz2 debian/compat0000644000000000000000000000000212252434175010371 0ustar 9 debian/changelog0000644000000000000000000001334112252441577011053 0ustar radeontool (1.6.3-1) unstable; urgency=low * New upstream release - adds radeonreg tool. [ Tormod Volden ] * debian/control: Bump standards-Version to 3.9.4 [ Jonathan Nieder ] * debian/control: Add myself to uploaders. * Drop -Wformat-security patch (applied upstream). * debian/control: Bump standards-Version to 3.9.3 (checked). * debian/compat: Move to debhelper version 9 semantics. Requires a build-time dependency on debhelper 9. * debian/rules: Let debhelper take care of compiler flags. * debian/copyright: Use machine-readable format 1.0. * debian/copyright: Update. * debian/changelog.upstream.sh: Permit terser changelog lines for snapshots. -- Jonathan Nieder Thu, 12 Dec 2013 15:15:10 -0800 radeontool (1.6.2-1.1) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS: radeontool.c:42:5: error: format not a string literal and no format arguments": add patch from Jonathan Nieder (adds format arguments). Closes: #643464 -- gregor herrmann Fri, 27 Jan 2012 15:27:43 +0100 radeontool (1.6.2-1) unstable; urgency=low [ Jonathan Nieder ] * New upstream release. - includes Evergreen support. * debian/control: Bump to standards-version 3.9.1 (checked). * debian/compat: Move to debhelper version 8 semantics. Requires a build-time dependency on debhelper 8. * debian/rules: Respect buildflags.conf and DEB_CFLAGS_APPEND by using the dpkg-buildflags utility. Requires a build-time dependency on dpkg-dev 1.15.7. [ Luigi Gangitano ] * debian/rules: Add missing targets build-arch and build-indep * debian/control: Bump Standards-Version to 3.9.2 (no change needed). -- Luigi Gangitano Fri, 02 Sep 2011 13:04:29 +0200 radeontool (1.6.1-1) unstable; urgency=low [ Jonathan Nieder ] * New upstream release. - includes r128 support (closes: #572168). * Drop all patches (applied upstream). * Generate upstream changelog from git log. See README.source for details. * debian/copyright: Fill in more details. * debian/rules: Rewrite using dh. Requires a build-time dependency on debhelper 7.0.50. * debian/rules: Run autotools at build time. Requires build-time dependencies on autoconf, automake, and libtool and a build-time conflict with automake1.4. * debian/radeontool.sgml: Move manpage to section 8 (thanks to Helge Kreutzmann, closes: #570839). * debian/rules: Apply patches at unpack time instead of build time by using dpkg source format 3.0 (quilt). Remove build-time dependency on quilt. * debian/watch: Use uscan format version 3. * Use the bzip2-compressed version of the original source. [ Luigi Gangitano ] * debian/radeontool.lintian-override: Override Lintian error on GPL reference * debian/control: Bump to standard-versione 3.9.0 (no change needed) -- Luigi Gangitano Wed, 30 Jun 2010 16:01:37 +0100 radeontool (1.6.0-1) unstable; urgency=low [ Tormod Volden ] * New upstream release Upstream is now git://anongit.freedesktop.org/~airlied/radeontool * Copied from Bryce Harrington's Ubuntu version: + Update man page to add 'regmatch' and 'regset' docs + debian/control: Build-dep on pkg-config and libpciaccess-dev and mention register debugging in package description + Install avivotool binary too * debian/rules: Replace dh_clean -k with dh_prep * debian/control: Bump to standard-version 3.8.4 * debian/compat: Bump to debhelper compat version 7 * debian/control: Build-dep on debhelper 7 * debian/copyright: Add copyright notices and start working towards a machine-readable format * debian/rules: CHANGES and lightwatch.pl are not shipped any longer * debian/rules: Run configure at build time * debian/rules: Remove generated files in clean target * debian/patches/10-upstream-parse-options.patch: Converted from inline patching to quilt * debian/patches/20-upstream-use-stderr-for-error-messages-and-usage.patch: Added and sent upstream, avoid errors on standard output * debian/patches/30-remove-an-incomplete-list-of-known-cards.patch: Added and sent upstream, avoid "unknown card" message * debian/control: Add Vcs-Git and Vcs-Browser links [ Luigi Gangitano ] * debian/control: Added Tormod in Uploaders * debian/watch: Fixed URL in watch file -- Tormod Volden Mon, 8 Feb 2010 18:57:18 +0100 radeontool (1.5-5) unstable; urgency=low * radeontool.c - Fix undetected card on ATI Chipset, thanks to Modestas Vainius - Fix '--strip' command line option - Fix command line option parsing for '--skip' and '--debug' - Fix uninitialized skip and debug options - Fix type for pointer (long not int) * Makefile,debian/rules - Add support for DEB_BUILD_OPTIONS and CFLAGS -- Luigi Gangitano Sun, 19 Nov 2006 20:09:50 +0100 radeontool (1.5-4) unstable; urgency=low * radeontool.c - Applied patch to fix FTBFS on powerpc (Thanks to Yves-Alexis Perez) (Closes: #388031) -- Luigi Gangitano Sat, 23 Sep 2006 00:38:41 +0200 radeontool (1.5-3) unstable; urgency=low * Uploaded to unstable (Closes: #297218) * debian/control - Added warning on code quality in description * debian/README.Debian - Added warning on code quality -- Luigi Gangitano Mon, 4 Apr 2005 23:24:59 +0200 radeontool (1.5-2) unstable; urgency=low * debian/rules - Moved manpage to correct place * debian/control - Added dependency on pciutils -- Luigi Gangitano Mon, 28 Feb 2005 06:06:09 +0100 radeontool (1.5-1) unstable; urgency=low * Initial Release. -- Luigi Gangitano Mon, 28 Feb 2005 00:13:08 +0100 debian/README.source0000644000000000000000000000066412252434175011360 0ustar This Debian package is developed in a public Git repository (see the Vcs-Git field of debian/control) based on the upstream Git repository (see debian/copyright). To build from a git checkout: debian/autogen.sh debuild To build a released version, no special instructions apply. “dpkg-buildpackage” or “apt-get -b radeontool” should work as usual. -- Jonathan Nieder Wed, 24 Mar 2010 10:34:12 -0500 debian/radeontool.lintian-overrides0000644000000000000000000000011112252434175014712 0ustar radeontool binary: copyright-should-refer-to-common-license-file-for-gpl debian/dirs0000644000000000000000000000001112252434175010047 0ustar usr/sbin debian/source/0000755000000000000000000000000012252434175010473 5ustar debian/source/format0000644000000000000000000000001412252434175011701 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000266312252434175010262 0ustar #!/usr/bin/make -f # This file is in the public domain. # You may freely use, modify, distribute, and relicense it. clean build build-indep build-arch install binary-indep binary-arch binary: dh $@ .PHONY: clean build install binary-indep binary-arch binary override_dh_auto_clean: sh debian/autogen.sh test -e debian/changelog.upstream || { \ echo >&2 see debian/README.source; \ exit 1; \ } rm -f radeontool.8; # from docbook-to-man rm -f radeontool avivotool radeonreg; # from cc rm -f *.o; # from cc rm -f *.tab.c; # from yacc rm -fr *.lo .libs _libs; # from libtool rm -f Makefile libtool; # from config.status rm -f config.status config.cache config.log; # from configure rm -f configure.lineno config.status.lineno config.lt; # from configure rm -fr configure autom4te.cache; # from autoconf rm -fr .deps; # from depcomp rm -f Makefile.in config.guess config.sub; # from automake rm -f depcomp install-sh ltmain.sh missing; # from automake rm -f aclocal.m4; # from aclocal rm -f CHANGES autogen.sh fix.sh lightwatch.pl; # not distributed override_dh_auto_configure: autoreconf -is dh_auto_configure -- $(conf_opt) override_dh_auto_build: dh_auto_build docbook-to-man debian/radeontool.sgml > radeontool.8 override_dh_installman: dh_installman radeontool.8 override_dh_installchangelogs: dh_installchangelogs debian/changelog.upstream conf_opt = --bindir='$${exec_prefix}/sbin' export DEB_CFLAGS_MAINT_PREPEND = -Wall debian/control0000644000000000000000000000172612252441537010604 0ustar Source: radeontool Section: utils Priority: optional Maintainer: Luigi Gangitano Uploaders: Tormod Volden , Jonathan Nieder Build-Depends: debhelper (>= 9), docbook-to-man, pciutils, pkg-config, libpciaccess-dev, autoconf, automake, libtool Build-Conflicts: automake1.4 Standards-Version: 3.9.4 Vcs-Git: git://git.debian.org/collab-maint/radeontool.git Vcs-Browser: http://git.debian.org/?p=collab-maint/radeontool.git;a=summary Package: radeontool Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: utility to control ATI Radeon backlight functions on laptops Radeontool is a small utility to control ATI Radeon based laptops' backlight and external output functions. It is also able to dump the contents of registers for debugging purposes. . WARNING: Radeontool code has not been completely audited and may contain bugs that could damage your hardware. Use at your own risk.