[kernel] r6342 - in dists/sid/linux-2.6/debian: bin patches patches/series

Bastian Blank waldi at costa.debian.org
Thu Mar 30 10:48:34 UTC 2006


Author: waldi
Date: Thu Mar 30 10:48:24 2006
New Revision: 6342

Added:
   dists/sid/linux-2.6/debian/bin/check-patches.sh   (contents, props changed)
Removed:
   dists/sid/linux-2.6/debian/patches/TODO
   dists/sid/linux-2.6/debian/patches/hppa-incompatible.patch
   dists/sid/linux-2.6/debian/patches/powerpc-mv643xx-spinlock-fix-support.patch
   dists/sid/linux-2.6/debian/patches/vserver-powerpc-fix01.patch
Modified:
   dists/sid/linux-2.6/debian/patches/series/1
Log:
* debian/bin/check-patches.sh: Add small script to check for used patches.
* debian/patches/series/1: Completely remove commented out patches.
* debian/patches/TODO: Remove outdated file.
* debian/patches/hppa-incompatible.patch,
  debian/patches/powerpc-mv643xx-spinlock-fix-support.patch,
  debian/patches/vserver-powerpc-fix01.patch: Remove unused patches.


Added: dists/sid/linux-2.6/debian/bin/check-patches.sh
==============================================================================
--- (empty file)
+++ dists/sid/linux-2.6/debian/bin/check-patches.sh	Thu Mar 30 10:48:24 2006
@@ -0,0 +1,13 @@
+#!/bin/sh -e
+
+TMPDIR=$(mktemp -d)
+trap "rm -rf $TMPDIR" EXIT
+awk '{if (NF >= 2) print $2}' debian/patches/series/* | sort -u > $TMPDIR/used
+find debian/patches -maxdepth 1 -type f -printf "%f\n" | sort > $TMPDIR/avail
+echo "Used patches"
+echo "=============="
+cat $TMPDIR/used
+echo
+echo "Unused patches"
+echo "=============="
+fgrep -v -f $TMPDIR/used $TMPDIR/avail

Modified: dists/sid/linux-2.6/debian/patches/series/1
==============================================================================
--- dists/sid/linux-2.6/debian/patches/series/1	(original)
+++ dists/sid/linux-2.6/debian/patches/series/1	Thu Mar 30 10:48:24 2006
@@ -7,11 +7,8 @@
 + ia64-irq-affinity-upfix.patch
 + powerpc-mkvmlinuz-support.patch
 + powerpc-build-links.patch
-#FIXME + powerpc-mv643xx-spinlock-fix-support.patch
 + powerpc-prep-utah-ide-interrupt.patch
 + powerpc-mv643xx-hotplug-support.patch
-#FIXME + powerpc-serial.patch 
-#FIXME + powerpc-apus.patch
 + sparc64-hme-lockup.patch
 + sparc64-atyfb-xl-gr.patch
 + mips-makefile.patch



More information about the Kernel-svn-changes mailing list