setlocalversion (597473720f4dc69749542bfcfed4a927a43d935e) setlocalversion (7a82e3fa28f174ba23c9faca544c65986e3025f1)
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3#
4# This scripts adds local version information from the version
5# control systems git, mercurial (hg) and subversion (svn).
6#
7# If something goes wrong, send a mail the kernel build mailinglist
8# (see MAINTAINERS) and CC Nico Schottelius

--- 112 unchanged lines hidden (view full) ---

121
122 # All done with svn
123 return
124 fi
125}
126
127collect_files()
128{
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3#
4# This scripts adds local version information from the version
5# control systems git, mercurial (hg) and subversion (svn).
6#
7# If something goes wrong, send a mail the kernel build mailinglist
8# (see MAINTAINERS) and CC Nico Schottelius

--- 112 unchanged lines hidden (view full) ---

121
122 # All done with svn
123 return
124 fi
125}
126
127collect_files()
128{
129 local file res
129 local file res=
130
131 for file; do
132 case "$file" in
133 *\~*)
134 continue
135 ;;
136 esac
137 if test -e "$file"; then

--- 46 unchanged lines hidden ---
130
131 for file; do
132 case "$file" in
133 *\~*)
134 continue
135 ;;
136 esac
137 if test -e "$file"; then

--- 46 unchanged lines hidden ---