From 343c185b7d7383b1f5b5144e837045af28afc42b Mon Sep 17 00:00:00 2001 From: kaloz Date: Tue, 23 Jun 2009 21:04:37 +0000 Subject: use broken-out patches for the coldfire to make it easier to follow differences against the bsp git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16547 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches/001-mcfv4e_checkfiles_script.patch | 94 ++++++++++++++++++++++ 1 file changed, 94 insertions(+) create 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 new file mode 100644 index 000000000..16b85368a --- /dev/null +++ b/target/linux/coldfire/patches/001-mcfv4e_checkfiles_script.patch @@ -0,0 +1,94 @@ +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