3 ############################################################################
5 # Script for converting the SCST source tree as it exists in the Subversion
6 # repository to a Linux kernel patch.
8 # Copyright (C) 2008 Bart Van Assche <bart.vanassche@gmail.com>
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation, version 2
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 ############################################################################
22 ########################
23 # Function definitions #
24 ########################
27 echo "Usage: $0 [-h] [-m] [-p <dir>] [-q] <kernel version>, where: "
28 echo " -h - show this text"
29 echo " -m - add mpt target driver"
30 echo " -p - generate multiple patches instead of one big patch into"\
31 "the specified directory."
32 echo " -q - add qla2x00t driver"
35 # Convert an existing patch.
36 # $1: path of patch to be added.
37 # $2: path in kernel tree of file to be patched.
39 if [ ! -e "$1" ]; then
40 echo "Error: could not find $1." >&2
44 sed -e "s:^--- [^ ]*:--- orig/linux-${kernel_version}/$2:" \
45 -e "s:^+++ [^ ]*:+++ linux-${kernel_version}/$2:" \
49 # Generate a patch for a file to be added to the kernel source tree, and strip
50 # trailing whitespace from C source files while converting the file to patch
52 # $1: path of file to be added.
53 # $2: path in kernel tree where file should be added.
57 if [ ! -e "$1" ]; then
58 echo "Error: could not find $1." >&2
62 # Only include files that were not generated by the build process
64 if [ "$1" = "${1%.mod.c}" -a "$1" ]; then
66 diff -uprN orig/linux-${kernel_version}/$2 linux-${kernel_version}/$2
67 --- orig/linux-${kernel_version}/$2
68 +++ linux-${kernel_version}/$2
69 @@ -0,0 +1,$(wc -l "$1" | { read a b; echo $a; }) @@
71 if [ "${2%.[ch]}" != "$2" ]; then
72 sed -e 's/sBUG(/BUG(/g' -e 's/sBUG_ON(/BUG_ON(/g' -e 's/^/+/' \
73 -e 's/^ \([^ ]*:\)$/\1/' < "$1"
75 sed -e 's/sBUG(/BUG(/g' -e 's/sBUG_ON(/BUG_ON(/g' -e 's/^/+/' < "$1"
80 function add_empty_file {
84 diff -uprN orig/linux-${kernel_version}/$1 linux-${kernel_version}/$1
85 --- orig/linux-${kernel_version}/$1
86 +++ linux-${kernel_version}/$1
92 # Read a patch from stdin, specialize it for kernel version ${kernel_version}
93 # and write the output either to stdout or to the file $1 (if not empty),
94 # depending on the value of the variable ${multiple_patches}.
95 function process_patch {
96 if [ "${multiple_patches}" = "true" ]; then
97 if [ "$1" != "" ]; then
98 if [ -e "${patchdir}/$1" ]; then
99 echo "Warning: overwriting ${patchdir}/$1"
102 echo "Signed-off-by: ${SIGNED_OFF_BY}"
104 "$(dirname $0)/specialize-patch" -v kernel_version="${kernel_version}"
107 echo "Discarded $(wc -l) lines."
110 "$(dirname $0)/specialize-patch" -v kernel_version="${kernel_version}"
114 #########################
115 # Argument verification #
116 #########################
121 multiple_patches="false"
124 if [ ! -e scst -o ! -e iscsi-scst -o ! -e srpt -o ! -e scst_local ]; then
125 echo "Please run this script from inside the SCST subversion source tree."
129 set -- $(/usr/bin/getopt hlmp:q "$@")
130 while [ "$1" != "${1#-}" ]
133 '-h') usage; exit 1;;
135 '-m') mpt_scst="true"; shift;;
136 '-p') multiple_patches="true"; patchdir="$2"; shift; shift;;
137 '-q') qla2x00t="true"; shift;;
148 if [ "${multiple_patches}" = "" ]; then
149 if [ -e "${patchdir}" ]; then
150 echo "Patch output directory ${patchdir} already exists."
152 if [ ! -d "${patchdir}" ]; then
153 echo "Error: ${patchdir} is not a directory."
162 # Strip patch level from the kernel version number.
163 if [ "${1#[0-9]*.[0-9]*.[0-9]*.[0-9]*}" != "$1" ]; then
164 kernel_version="${1%.[0-9]*}"
169 if [ "${multiple_patches}" = "false" ]; then
170 echo "Signed-off-by: ${SIGNED_OFF_BY}"
175 # General kernel patches.
177 process_patch < "scst/kernel/scst_exec_req_fifo-${kernel_version}.patch" \
178 "scst_exec_req_fifo.diff"
179 process_patch < "scst/kernel/export_alloc_io_context-${kernel_version}.patch" \
180 "export_alloc_io_context.diff"
181 process_patch < "iscsi-scst/kernel/patches/put_page_callback-${kernel_version}.patch" \
182 "put_page_callback.diff"
185 # Directory include/scst/
187 for f in $(ls scst/include/*h)
189 add_file "${f}" "include/scst/${f#scst/include/}"
191 | process_patch "scst_public_headers.diff"
197 add_patch "scst/kernel/in-tree/Kconfig.drivers.Linux-${kernel_version}.patch" \
200 add_patch "scst/kernel/in-tree/Makefile.drivers.Linux-${kernel_version}.patch"\
203 | process_patch "misc.diff"
206 # Directory drivers/scst/
209 add_file "scst/kernel/in-tree/Kconfig.scst" "drivers/scst/Kconfig"
211 add_file "scst/kernel/in-tree/Makefile.scst" "drivers/scst/Makefile"
213 for f in $(ls scst/src/*.[ch])
215 add_file "${f}" "drivers/scst/${f#scst/src/}"
218 | process_patch "scst_core.diff"
220 add_file "scst/README_in-tree" "Documentation/scst/README.scst" \
221 | process_patch "scst_core_doc.diff"
225 # Directory drivers/scst/dev_handlers/
228 add_file "scst/kernel/in-tree/Makefile.dev_handlers" \
229 "drivers/scst/dev_handlers/Makefile" \
230 | process_patch "dev_handlers_makefile.diff"
232 for f in $(ls scst/src/dev_handlers/*.[ch])
234 add_file "${f}" "drivers/scst/dev_handlers/${f#scst/src/dev_handlers/}"
237 | process_patch "scst_dev_handlers.diff"
240 # Directory drivers/scst/iscsi-scst/
242 # Make sure the file iscsi-scst/iscsi_scst_itf_ver.h is up to date.
243 make -s -C iscsi-scst include/iscsi_scst_itf_ver.h
246 for f in $(ls iscsi-scst/include/*h)
248 add_file "${f}" "include/scst/${f#iscsi-scst/include/}"
251 add_file "iscsi-scst/kernel/Makefile.in-kernel" \
252 "drivers/scst/iscsi-scst/Makefile"
254 add_file "iscsi-scst/kernel/Kconfig" "drivers/scst/iscsi-scst/Kconfig"
256 for f in $(ls iscsi-scst/kernel/*.[ch])
258 add_file "${f}" "drivers/scst/iscsi-scst/${f#iscsi-scst/kernel/}"
261 | process_patch "iscsi-scst.diff"
263 add_file "iscsi-scst/README_in-tree" "Documentation/scst/README.iscsi" \
264 | process_patch "iscsi-scst-doc.diff"
267 # Directory drivers/scst/qla2x00-target/
269 if [ "${qla2x00t}" = "true" ]; then
271 add_file "qla2x00t/qla2x00-target/Makefile_in-tree" \
272 "drivers/scst/qla2xxx-target/Makefile"
274 add_file "qla2x00t/qla2x00-target/Kconfig" \
275 "drivers/scst/qla2xxx-target/Kconfig"
277 # add_file "qla2x00t/qla2x_tgt_def.h" \
278 # "drivers/scst/qla2x00-target/qla2x_tgt_def.h"
280 add_file "qla2x00t/qla2x00-target/README" \
281 "Documentation/scst/README.qla2x00t"
283 for f in $(ls qla2x00t/qla2x00-target/*.[ch])
285 add_file "${f}" "drivers/scst/qla2xxx-target/${f#qla2x00t/qla2x00-target/}"
290 add_empty_file "drivers/scst/qla2xxx-target/Makefile"
292 add_empty_file "drivers/scst/qla2xxx-target/Kconfig"
295 | process_patch "qla2x00t.diff"
298 # Directory drivers/scst/srpt
300 if [ "$srpt" = "true" ]; then
302 add_file "srpt/src/Kconfig" "drivers/scst/srpt/Kconfig"
304 add_file "srpt/src/Makefile.in_kernel" "drivers/scst/srpt/Makefile"
306 for f in $(ls srpt/src/*.[ch])
308 add_file "${f}" "drivers/scst/srpt/${f#srpt/src/}"
313 add_empty_file "drivers/scst/srpt/Kconfig"
315 add_empty_file "drivers/scst/srpt/Makefile"
318 | process_patch "srpt.diff"
320 add_file "srpt/README" "Documentation/scst/README.srpt" \
321 | process_patch "srpt-doc.diff"
324 # Directory drivers/message/fusion/mpt_scst
326 if [ "$mpt_scst" = "true" ]; then
329 add_patch "mpt/in-tree/Kconfig-2.6.24.diff" "drivers/message/fusion/Kconfig"
331 add_patch "mpt/in-tree/Makefile.diff" "drivers/message/fusion/Makefile"
333 add_file "mpt/in-tree/Makefile" "drivers/message/fusion/mpt_scst/Makefile"
335 add_file "mpt/in-tree/Kconfig" "drivers/message/fusion/mpt_scst/Kconfig"
337 for f in $(ls mpt/*.[ch])
339 add_file "${f}" "drivers/message/fusion/mpt_scst/${f#mpt/}"
342 | process_patch "mpt_scst.diff"
347 add_empty_file "drivers/message/fusion/Kconfig"
349 add_empty_file "drivers/message/fusion/Makefile"
356 # Directory drivers/scst/scst_local
359 add_file "scst_local/in-tree/Kconfig" "drivers/scst/scst_local/Kconfig"
361 add_file "scst_local/in-tree/Makefile" "drivers/scst/scst_local/Makefile"
363 add_file "scst_local/scst_local.c" "drivers/scst/scst_local/scst_local.c"
365 | process_patch "scst_local.diff"
367 add_file "scst_local/README" "Documentation/scst/README.scst_local" \
368 | process_patch "scst_local-doc.diff"