From 41d306c95b13e322023c5795ee46f98cbb723434 Mon Sep 17 00:00:00 2001 From: Imre Kaloz Date: Mon, 22 Nov 2010 13:31:46 +0000 Subject: [coldfire]: remove 2.6.25 support git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24088 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches/001-mcfv4e_checkfiles_script.patch | 94 ---------------------- 1 file changed, 94 deletions(-) delete mode 100644 target/linux/coldfire/patches/001-mcfv4e_checkfiles_script.patch (limited to 'target/linux/coldfire/patches/001-mcfv4e_checkfiles_script.patch') diff --git a/target/linux/coldfire/patches/001-mcfv4e_checkfiles_script.patch b/target/linux/coldfire/patches/001-mcfv4e_checkfiles_script.patch deleted file mode 100644 index 16b85368a4..0000000000 --- a/target/linux/coldfire/patches/001-mcfv4e_checkfiles_script.patch +++ /dev/null @@ -1,94 +0,0 @@ -From d54d785a28afb65811c5d5ad727c57233deb6f60 Mon Sep 17 00:00:00 2001 -From: Kurt Mahan -Date: Wed, 31 Oct 2007 16:36:51 -0600 -Subject: [PATCH] Scripts to allow running files through checkpatch.pl - -Scripts based on scripts/checkfiles that are in various trees. - -These should not be sent up because there are already patches from -the original script author. - -LTIBName: mcfv4e-checkfiles-script -Signed-off-by: Kurt Mahan ---- - scripts/checkfiles | 35 +++++++++++++++++++++++++++++++++++ - scripts/checkfilesterse | 34 ++++++++++++++++++++++++++++++++++ - 2 files changed, 69 insertions(+), 0 deletions(-) - create mode 100755 scripts/checkfiles - create mode 100755 scripts/checkfilesterse - ---- /dev/null -+++ b/scripts/checkfiles -@@ -0,0 +1,35 @@ -+#!/bin/sh -+# (c) 2007, Erez Zadok (initial version) -+# Licensed under the terms of the GNU GPL License version 2 -+# -+# Check source files for compliance with coding standards, using terse -+# output in the style that g/cc produces. This output can be easily parsed -+# within text editors (e.g., emacs/vim) which can produce a split text -+# screen showing in one screen the error message, and in another screen the -+# corresponding source file, with the cursor placed on the offending line. -+# See for example the documentation for Emacs's "next-error" command, often -+# bound to M-x ` (ESC x back-tick). -+ -+# Usage: checkfiles file [files...] -+# if "file" is a directory, will check all *.[hc] files recursively -+ -+# check usage -+usage() { -+ echo "Usage: checkfiles file [files...]" -+ echo "(if \"file\" is a directory, check recursively for all C sources/headers)" -+ exit 1 -+} -+ -+# if test -z "$@" ; then -+# usage -+# fi -+if ! test -f scripts/checkpatch.pl ; then -+ echo "checkfiles: must run from top level source tree" -+ exit 1 -+fi -+ -+# check coding-style compliance of each source file found -+find "$@" -type f -name '*.[hc]' | \ -+while read f ; do -+ diff -u /dev/null $f | perl scripts/checkpatch.pl - -+done ---- /dev/null -+++ b/scripts/checkfilesterse -@@ -0,0 +1,34 @@ -+#!/bin/sh -+# (c) 2007, Erez Zadok (initial version) -+# Licensed under the terms of the GNU GPL License version 2 -+# -+# Check source files for compliance with coding standards, using terse -+# output in the style that g/cc produces. This output can be easily parsed -+# within text editors (e.g., emacs/vim) which can produce a split text -+# screen showing in one screen the error message, and in another screen the -+# corresponding source file, with the cursor placed on the offending line. -+# See for example the documentation for Emacs's "next-error" command, often -+# bound to M-x ` (ESC x back-tick). -+ -+# Usage: checkfiles file [files...] -+# if "file" is a directory, will check all *.[hc] files recursively -+ -+# check usage -+usage() { -+ echo "Usage: checkfiles file [files...]" -+ echo "(if \"file\" is a directory, check recursively for all C sources/headers)" -+ exit 1 -+} -+if test -z "" ; then -+ usage -+fi -+if ! test -f scripts/checkpatch.pl ; then -+ echo "checkfiles: must run from top level source tree" -+ exit 1 -+fi -+ -+# check coding-style compliance of each source file found, using terse output -+find "$@" -type f -name '*.[hc]' | \ -+while read f ; do -+ diff -u /dev/null $f | perl scripts/checkpatch.pl -t - -+done -- cgit v1.2.3