Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / kernel_patches / scripts / patchdesc
1 #!/bin/sh
2
3 . patchfns >/dev/null || . /usr/lib/patch-scripts/patchfns >/dev/null || { \
4         echo "Impossible to find my library 'patchfns'."
5         echo "Check your install, or go to the right directory"
6         exit 1
7 }
8
9 desc1()
10 {
11         PATCH=$(stripit $1)
12         TXT=$P/txt/$PATCH.txt
13         echo $PATCH.patch
14         desc < $TXT
15         echo
16 }
17
18 for i in $*
19 do
20         desc1 $i
21 done