Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 1 | #!/bin/sh |
Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0 |
Nico Schottelius | 3325257 | 2009-05-16 14:00:56 +0200 | [diff] [blame] | 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 |
| 9 | # <nico-linuxsetlocalversion -at- schottelius.org>. |
| 10 | # |
| 11 | # |
Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 12 | |
Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 13 | usage() { |
Will McVicker | f0bec7a | 2020-07-09 15:33:45 -0700 | [diff] [blame] | 14 | echo "Usage: $0 [--save-scmversion] [srctree] [branch] [kmi-generation]" >&2 |
Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 15 | exit 1 |
Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 16 | } |
| 17 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 18 | scm_only=false |
| 19 | srctree=. |
Will McVicker | f0bec7a | 2020-07-09 15:33:45 -0700 | [diff] [blame] | 20 | android_release= |
| 21 | kmi_generation= |
Michal Marek | b003afe | 2010-07-15 10:36:37 +0200 | [diff] [blame] | 22 | if test "$1" = "--save-scmversion"; then |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 23 | scm_only=true |
| 24 | shift |
| 25 | fi |
| 26 | if test $# -gt 0; then |
| 27 | srctree=$1 |
| 28 | shift |
| 29 | fi |
Will McVicker | f0bec7a | 2020-07-09 15:33:45 -0700 | [diff] [blame] | 30 | if test $# -gt 0; then |
| 31 | # Extract the Android release version. If there is no match, then return 255 |
| 32 | # and clear the var $android_release |
| 33 | android_release=`echo "$1" | sed -e '/android[0-9]\{2,\}/!{q255}; \ |
| 34 | s/^\(android[0-9]\{2,\}\)-.*/\1/'` |
| 35 | if test $? -ne 0; then |
| 36 | android_release= |
| 37 | fi |
| 38 | shift |
| 39 | |
| 40 | if test $# -gt 0; then |
| 41 | kmi_generation=$1 |
| 42 | [ $(expr $kmi_generation : '^[0-9]\+$') -eq 0 ] && usage |
| 43 | shift |
Will McVicker | f0bec7a | 2020-07-09 15:33:45 -0700 | [diff] [blame] | 44 | fi |
| 45 | fi |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 46 | if test $# -gt 0 -o ! -d "$srctree"; then |
| 47 | usage |
| 48 | fi |
Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 49 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 50 | scm_version() |
| 51 | { |
Michał Górny | 6dc0c2f | 2010-07-18 10:26:40 +0200 | [diff] [blame] | 52 | local short |
| 53 | short=false |
Nico Schottelius | 3325257 | 2009-05-16 14:00:56 +0200 | [diff] [blame] | 54 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 55 | cd "$srctree" |
| 56 | if test -e .scmversion; then |
Michał Górny | 6dc0c2f | 2010-07-18 10:26:40 +0200 | [diff] [blame] | 57 | cat .scmversion |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 58 | return |
| 59 | fi |
| 60 | if test "$1" = "--short"; then |
| 61 | short=true |
| 62 | fi |
Nico Schottelius | 3325257 | 2009-05-16 14:00:56 +0200 | [diff] [blame] | 63 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 64 | # Check for git and a git repo. |
Will McVicker | 8c7a2fec | 2021-02-11 11:33:42 -0800 | [diff] [blame] | 65 | if head=$(git rev-parse --verify HEAD 2>/dev/null); then |
Nico Schottelius | 3325257 | 2009-05-16 14:00:56 +0200 | [diff] [blame] | 66 | |
Will McVicker | f0bec7a | 2020-07-09 15:33:45 -0700 | [diff] [blame] | 67 | if [ -n "$android_release" ] && [ -n "$kmi_generation" ]; then |
| 68 | printf '%s' "-$android_release-$kmi_generation" |
Alistair Delva | e41b116 | 2021-11-17 09:58:10 -0800 | [diff] [blame] | 69 | elif [ -n "$android_release" ]; then |
| 70 | printf '%s' "-$android_release" |
Will McVicker | f0bec7a | 2020-07-09 15:33:45 -0700 | [diff] [blame] | 71 | fi |
| 72 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 73 | # If we are at a tagged commit (like "v2.6.30-rc6"), we ignore |
| 74 | # it, because this version is defined in the top level Makefile. |
Bhaskar Chowdhury | 3c96bdd | 2019-10-23 07:24:27 +0530 | [diff] [blame] | 75 | if [ -z "$(git describe --exact-match 2>/dev/null)" ]; then |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 76 | |
| 77 | # If only the short version is requested, don't bother |
| 78 | # running further git commands |
| 79 | if $short; then |
| 80 | echo "+" |
| 81 | return |
| 82 | fi |
| 83 | # If we are past a tagged commit (like |
| 84 | # "v2.6.30-rc5-302-g72357d5"), we pretty print it. |
Rasmus Villemoes | 548b8b5 | 2020-09-17 08:56:11 +0200 | [diff] [blame] | 85 | # |
| 86 | # Ensure the abbreviated sha1 has exactly 12 |
| 87 | # hex characters, to make the output |
| 88 | # independent of git version, local |
| 89 | # core.abbrev settings and/or total number of |
| 90 | # objects in the current repository - passing |
| 91 | # --abbrev=12 ensures a minimum of 12, and the |
| 92 | # awk substr() then picks the 'g' and first 12 |
| 93 | # hex chars. |
| 94 | if atag="$(git describe --abbrev=12 2>/dev/null)"; then |
| 95 | echo "$atag" | awk -F- '{printf("-%05d-%s", $(NF-1),substr($(NF),0,13))}' |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 96 | |
Rasmus Villemoes | 548b8b5 | 2020-09-17 08:56:11 +0200 | [diff] [blame] | 97 | # If we don't have a tag at all we print -g{commitish}, |
| 98 | # again using exactly 12 hex chars. |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 99 | else |
Rasmus Villemoes | 548b8b5 | 2020-09-17 08:56:11 +0200 | [diff] [blame] | 100 | head="$(echo $head | cut -c1-12)" |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 101 | printf '%s%s' -g $head |
| 102 | fi |
Nico Schottelius | 3325257 | 2009-05-16 14:00:56 +0200 | [diff] [blame] | 103 | fi |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 104 | |
| 105 | # Is this git on svn? |
| 106 | if git config --get svn-remote.svn.url >/dev/null; then |
Bhaskar Chowdhury | 3c96bdd | 2019-10-23 07:24:27 +0530 | [diff] [blame] | 107 | printf -- '-svn%s' "$(git svn find-rev $head)" |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 108 | fi |
| 109 | |
Brian Norris | ff64dd4 | 2018-11-14 18:11:18 -0800 | [diff] [blame] | 110 | # Check for uncommitted changes. |
| 111 | # First, with git-status, but --no-optional-locks is only |
| 112 | # supported in git >= 2.14, so fall back to git-diff-index if |
| 113 | # it fails. Note that git-diff-index does not refresh the |
| 114 | # index, so it may give misleading results. See |
| 115 | # git-update-index(1), git-diff-index(1), and git-status(1). |
| 116 | if { |
| 117 | git --no-optional-locks status -uno --porcelain 2>/dev/null || |
| 118 | git diff-index --name-only HEAD |
| 119 | } | grep -qvE '^(.. )?scripts/package'; then |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 120 | printf '%s' -dirty |
| 121 | fi |
| 122 | |
| 123 | # All done with git |
| 124 | return |
Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 125 | fi |
Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 126 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 127 | # Check for mercurial and a mercurial repo. |
Will McVicker | 8c7a2fec | 2021-02-11 11:33:42 -0800 | [diff] [blame] | 128 | if hgid=$(hg id 2>/dev/null); then |
Mike Crowe | 38b3439 | 2011-01-12 00:53:52 -0500 | [diff] [blame] | 129 | # Do we have an tagged version? If so, latesttagdistance == 1 |
Bhaskar Chowdhury | 3c96bdd | 2019-10-23 07:24:27 +0530 | [diff] [blame] | 130 | if [ "$(hg log -r . --template '{latesttagdistance}')" = "1" ]; then |
| 131 | id=$(hg log -r . --template '{latesttag}') |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 132 | printf '%s%s' -hg "$id" |
Mike Crowe | 38b3439 | 2011-01-12 00:53:52 -0500 | [diff] [blame] | 133 | else |
Bhaskar Chowdhury | 3c96bdd | 2019-10-23 07:24:27 +0530 | [diff] [blame] | 134 | tag=$(printf '%s' "$hgid" | cut -d' ' -f2) |
Mike Crowe | 38b3439 | 2011-01-12 00:53:52 -0500 | [diff] [blame] | 135 | if [ -z "$tag" -o "$tag" = tip ]; then |
Bhaskar Chowdhury | 3c96bdd | 2019-10-23 07:24:27 +0530 | [diff] [blame] | 136 | id=$(printf '%s' "$hgid" | sed 's/[+ ].*//') |
Mike Crowe | 38b3439 | 2011-01-12 00:53:52 -0500 | [diff] [blame] | 137 | printf '%s%s' -hg "$id" |
| 138 | fi |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 139 | fi |
| 140 | |
| 141 | # Are there uncommitted changes? |
| 142 | # These are represented by + after the changeset id. |
| 143 | case "$hgid" in |
| 144 | *+|*+\ *) printf '%s' -dirty ;; |
| 145 | esac |
| 146 | |
| 147 | # All done with mercurial |
| 148 | return |
Peter Korsgaard | ff80aa9 | 2008-12-02 21:58:06 +0100 | [diff] [blame] | 149 | fi |
| 150 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 151 | # Check for svn and a svn repo. |
Bhaskar Chowdhury | 3c96bdd | 2019-10-23 07:24:27 +0530 | [diff] [blame] | 152 | if rev=$(LANG= LC_ALL= LC_MESSAGES=C svn info 2>/dev/null | grep '^Last Changed Rev'); then |
| 153 | rev=$(echo $rev | awk '{print $NF}') |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 154 | printf -- '-svn%s' "$rev" |
Nico Schottelius | a2bb90a | 2009-06-12 09:59:52 +0200 | [diff] [blame] | 155 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 156 | # All done with svn |
| 157 | return |
Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 158 | fi |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 159 | } |
Aron Griffis | 3dce174 | 2007-11-28 16:55:44 -0500 | [diff] [blame] | 160 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 161 | collect_files() |
| 162 | { |
Masahiro Yamada | 7a82e3f | 2019-10-01 21:17:24 +0900 | [diff] [blame] | 163 | local file res= |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 164 | |
| 165 | for file; do |
| 166 | case "$file" in |
| 167 | *\~*) |
| 168 | continue |
| 169 | ;; |
| 170 | esac |
| 171 | if test -e "$file"; then |
| 172 | res="$res$(cat "$file")" |
| 173 | fi |
| 174 | done |
| 175 | echo "$res" |
| 176 | } |
| 177 | |
| 178 | if $scm_only; then |
Michal Marek | b003afe | 2010-07-15 10:36:37 +0200 | [diff] [blame] | 179 | if test ! -e .scmversion; then |
| 180 | res=$(scm_version) |
| 181 | echo "$res" >.scmversion |
| 182 | fi |
Aron Griffis | 3dce174 | 2007-11-28 16:55:44 -0500 | [diff] [blame] | 183 | exit |
| 184 | fi |
| 185 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 186 | if test -e include/config/auto.conf; then |
Michał Górny | 6dc0c2f | 2010-07-18 10:26:40 +0200 | [diff] [blame] | 187 | . include/config/auto.conf |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 188 | else |
Wolfram Sang | 78283edf | 2016-06-06 21:00:38 +0200 | [diff] [blame] | 189 | echo "Error: kernelrelease not valid - run 'make prepare' to update it" >&2 |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 190 | exit 1 |
| 191 | fi |
Aron Griffis | 3dce174 | 2007-11-28 16:55:44 -0500 | [diff] [blame] | 192 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 193 | # localversion* files in the build and source directory |
| 194 | res="$(collect_files localversion*)" |
| 195 | if test ! "$srctree" -ef .; then |
| 196 | res="$res$(collect_files "$srctree"/localversion*)" |
| 197 | fi |
| 198 | |
| 199 | # CONFIG_LOCALVERSION and LOCALVERSION (if set) |
| 200 | res="${res}${CONFIG_LOCALVERSION}${LOCALVERSION}" |
| 201 | |
| 202 | # scm version string if not at a tagged commit |
| 203 | if test "$CONFIG_LOCALVERSION_AUTO" = "y"; then |
| 204 | # full scm version string |
| 205 | res="$res$(scm_version)" |
| 206 | else |
Michael Prokop | c3e2f19 | 2010-09-06 11:57:19 +0200 | [diff] [blame] | 207 | # append a plus sign if the repository is not in a clean |
| 208 | # annotated or signed tagged state (as git describe only |
| 209 | # looks at signed or annotated tags - git tag -a/-s) and |
| 210 | # LOCALVERSION= is not specified |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 211 | if test "${LOCALVERSION+set}" != "set"; then |
| 212 | scm=$(scm_version --short) |
| 213 | res="$res${scm:++}" |
Aron Griffis | 3dce174 | 2007-11-28 16:55:44 -0500 | [diff] [blame] | 214 | fi |
Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 215 | fi |
Bryan Wu | ba3d05f | 2008-02-03 14:13:26 +0800 | [diff] [blame] | 216 | |
Michal Marek | 0915512 | 2010-06-17 15:14:58 +0200 | [diff] [blame] | 217 | echo "$res" |