blob: d0f1a7ac1c517d9ecd3bfc5a108ccf7c1a479170 [file] [log] [blame]
Yegor Timoshenkoc2e49412018-10-07 01:58:27 +00001#!/usr/bin/env bash
Martin Rothbec11082015-11-03 21:01:53 -07002#
3# This file is part of the coreboot project.
4#
Martin Rothfb190ed2016-10-01 20:13:43 -06005# Copyright 2015-2016 Google Inc.
Martin Rothbec11082015-11-03 21:01:53 -07006#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; version 2 of the License.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15
Martin Rothbec11082015-11-03 21:01:53 -070016
Martin Rothfb190ed2016-10-01 20:13:43 -060017# This script creates a list of commits between two releases, broken out into
18# fairly inexact categories, based on the directories that files are in. If
19# a commit touched anything in the path that is checked earlier, it's counted
20# as being in that category.
21#
22# Don't run this in your current working tree, it checks out different versions
23# and can lose things.
Martin Rothbec11082015-11-03 21:01:53 -070024
Martin Rothfb190ed2016-10-01 20:13:43 -060025# set -x # uncomment for debug
26
27# Check for tools
28
Patrick Georgifa13a642018-12-20 17:17:03 +010029if ! ( git --version && cloc --version && rename --version ) > /dev/null 2>&1
Martin Rothfb190ed2016-10-01 20:13:43 -060030then
Martin Rothbec11082015-11-03 21:01:53 -070031 echo "ERROR: cloc or git is not installed. Exiting"
32 exit 1
33fi
34
Alex Thiessenda384dd2018-01-13 16:31:28 +000035if ! { cdup="$(git rev-parse --show-cdup 2>/dev/null)" && [ -z "${cdup}" ]; }
36then
Martin Rothfb190ed2016-10-01 20:13:43 -060037 echo "ERROR: This is not the top directory of a git repo. Exiting."
38 exit 1
39fi
40
41# Try to verify that the repo is clean before losing state.
Patrick Georgi35c8dcf2018-12-20 17:17:55 +010042if ! git diff-index --quiet --cached HEAD 2>/dev/null; then
Martin Rothbec11082015-11-03 21:01:53 -070043 echo "ERROR: repo is not clean. Exiting."
44 exit 1
45fi
46
Martin Rothfb190ed2016-10-01 20:13:43 -060047# Verify the command line arguments
48if [ "$1" == "--help" ] || [ -z "$1" ] || [ -z "$2" ]; then
49 echo
50 echo "Usage: $0 <old_version> <new_version> [release notes file]"
51 echo "Old version should be a tag (4.1), a branch (origin/4.1), or a commit id"
52 echo "New version can be 'HEAD' a branch (origin/master) a tag (4.2), or a commit id"
53 echo "Logfile can be a new file or an existing file to update"
54 echo "Example: \"$0 origin/4.1 4.2 rnotes.txt\""
55 echo
56 echo "Note that the script starts at the commit AFTER the old version."
57 echo
58 exit 1
59else
60 OLD_GIT_VERSION="$1"
61 NEW_GIT_VERSION="$2"
62 TOTAL_COMMITS=$(git log --pretty=oneline \
63 "${OLD_GIT_VERSION}..${NEW_GIT_VERSION}" 2>/dev/null | wc -l)
64fi
65
66TOP=$(pwd)
67
68if [ -n "$3" ]; then
69 MAIN_LOGFILE="${TOP}/$3"
70else
71 MAIN_LOGFILE="${TOP}/relnotes.txt"
72fi
73
74# Figure out which logfile we're writing to. If the specified logfile exists,
75# we need to write to a temporary logfile, then append changes to the main
76# logfile.
Martin Rothbec11082015-11-03 21:01:53 -070077if [ -f "$MAIN_LOGFILE" ]; then
78 LOGFILE="$(mktemp "LOGFILE.XXXX")"
79 LOGFILE="${TOP}/$LOGFILE"
80 UPDATE_MAIN_LOGFILE=1
81else
82 LOGFILE="$MAIN_LOGFILE"
83fi
84
Martin Rothfb190ed2016-10-01 20:13:43 -060085get_author_commit_count() {
86 git log "${NEW_GIT_VERSION}" 2>/dev/null | grep -c "^Author: $1"
87}
88
89# Print and log the versions
Martin Rothbec11082015-11-03 21:01:53 -070090log_versions() {
91 echo "Log of commit $1 to commit $2"
92 echo "Log of commit $1 to commit $2" >> "$LOGFILE"
Martin Rothfb190ed2016-10-01 20:13:43 -060093 echo "Total commits: ${TOTAL_COMMITS}"
94 echo "Total commits: ${TOTAL_COMMITS}" >> "$LOGFILE"
Martin Rothbec11082015-11-03 21:01:53 -070095 echo
96}
97
Martin Rothfb190ed2016-10-01 20:13:43 -060098# Get the first commit id in the current tree
Martin Rothbec11082015-11-03 21:01:53 -070099get_latest_commit_id() {
Martin Roth3ce67832017-11-04 18:36:19 -0600100(
101 cd "$1"
Martin Rothfb190ed2016-10-01 20:13:43 -0600102 git log 2>/dev/null | grep '^commit ' | head -1 | sed 's/commit //'
Martin Roth3ce67832017-11-04 18:36:19 -0600103)
Martin Rothbec11082015-11-03 21:01:53 -0700104}
105
Martin Rothfb190ed2016-10-01 20:13:43 -0600106# Main get log function
Martin Rothbec11082015-11-03 21:01:53 -0700107_get_log() {
108 local oldver="$1"
109 local newver="$2"
110 local title="$3"
111 local paths="$4"
Martin Roth3ce67832017-11-04 18:36:19 -0600112 local keywords="$5"
Martin Rothbec11082015-11-03 21:01:53 -0700113
Martin Roth3ce67832017-11-04 18:36:19 -0600114 # Leave ${paths} unquoted in the git commands
Martin Rothfb190ed2016-10-01 20:13:43 -0600115 # shellcheck disable=SC2086
Martin Roth3ce67832017-11-04 18:36:19 -0600116 { \
117 if [ -n "$paths" ]; then \
118 git log --abbrev-commit --pretty=oneline \
119 "${oldver}..${newver}" -- ${paths} \
120 2>/dev/null; \
121 fi; \
122 if [ -n "$keywords" ]; then \
123 git log --abbrev-commit --pretty=oneline \
124 "${oldver}..${newver}" 2>/dev/null \
125 | grep -i "$keywords"; \
126 fi \
127 } | sort -t ' ' -k 2 | uniq
Martin Rothbec11082015-11-03 21:01:53 -0700128}
129
Martin Rothfb190ed2016-10-01 20:13:43 -0600130# Output to a new log, then compare to the first logfile, and only output
131# non duplicated lines to the final file.
Martin Rothbec11082015-11-03 21:01:53 -0700132get_log_dedupe() {
133 local title="$1"
134 local paths="$2"
Martin Roth3ce67832017-11-04 18:36:19 -0600135 local keywords="$3"
Martin Rothfb190ed2016-10-01 20:13:43 -0600136 local log
137 local commits
138
Martin Rothbec11082015-11-03 21:01:53 -0700139 dedupe_tmpfile="$(mktemp "LOGFILE.XXXX")"
140
Martin Rothfb190ed2016-10-01 20:13:43 -0600141 log=$(_get_log "$OLD_GIT_VERSION" "$NEW_GIT_VERSION" \
Martin Roth3ce67832017-11-04 18:36:19 -0600142 "$title" "$paths" "$keywords")
Martin Rothbec11082015-11-03 21:01:53 -0700143
144 echo "$log" > "$dedupe_tmpfile"
145
146 log=$(grep -Fxv -f "$LOGFILE" "$dedupe_tmpfile")
Martin Rothfb190ed2016-10-01 20:13:43 -0600147 commits=$(echo "$log" | wc -l)
Martin Rothbec11082015-11-03 21:01:53 -0700148
Martin Roth3ce67832017-11-04 18:36:19 -0600149 #echo "$title: $paths $keywords" >> "$LOGFILE"
150 printf "%s\n%s\n\n" "##### $title ($commits commits) #####" \
151 "$log" >> "$LOGFILE"
Martin Rothbec11082015-11-03 21:01:53 -0700152
153 rm "$dedupe_tmpfile"
154}
155
156# get logs for the submodules
157get_log_submodule() {
158 local old_version="$1"
159 local new_version="$2"
160 local submodule_dir="$3"
Martin Rothfb190ed2016-10-01 20:13:43 -0600161 local log
162 local commits
Martin Rothbec11082015-11-03 21:01:53 -0700163
164 printf "Submodule %s\n" "$submodule_dir"
165 printf "commit %s to commit %s\n\n" "$old_version" "$new_version"
166
Martin Roth3ce67832017-11-04 18:36:19 -0600167 (
168 cd "${TOP}/$submodule_dir"
169 log="$(_get_log "$old_version" "$new_version" "$submodule_dir" "." "")"
Martin Rothfb190ed2016-10-01 20:13:43 -0600170 commits=$(echo "$log" | wc -l)
Martin Rothbec11082015-11-03 21:01:53 -0700171
172 if [ -n "$log" ]; then
Martin Roth3ce67832017-11-04 18:36:19 -0600173 printf "%s\n" "$submodule_dir ($commits commits)" >> "$LOGFILE"
174 printf "\n" >> "$LOGFILE"
Martin Rothbec11082015-11-03 21:01:53 -0700175 fi
Martin Roth3ce67832017-11-04 18:36:19 -0600176 )
Martin Rothbec11082015-11-03 21:01:53 -0700177}
178
Martin Rothfb190ed2016-10-01 20:13:43 -0600179find_areas() {
Martin Roth3ce67832017-11-04 18:36:19 -0600180 local directory="$1"
181 local filename="$2"
182 local skip="$3"
183 find "$directory" -name "$filename" | sed "s|/$filename||" | sed "s|/$directory||" | grep -v "$skip" | sort
Martin Rothfb190ed2016-10-01 20:13:43 -0600184}
185
186# Make sure things get cleaned up if ctl-c is pressed while the old version
187# is checked out and files are renamed. This can be a real mess to clean
188# up manually.
Martin Rothbec11082015-11-03 21:01:53 -0700189version_ctrl_c() {
Martin Rothfb190ed2016-10-01 20:13:43 -0600190 printf "\n** Trapped CTRL-C\n Cleaning up and exiting.\n"
191 find 'src' -name 'gnumakefile' \
192 -exec rename 's/gnumakefile/Makefile\.inc/' {} \;
193 git checkout origin/master > /dev/null 2>&1
Martin Rothbec11082015-11-03 21:01:53 -0700194 git submodule update --init --checkout > /dev/null 2>&1
Martin Rothbec11082015-11-03 21:01:53 -0700195 rm "$LOGFILE"
196 exit 1;
197}
198
Martin Rothfb190ed2016-10-01 20:13:43 -0600199# Calculate areas that have been added or removed based on file lists
200show_diff () {
201 local new
202 local old
Martin Rothbec11082015-11-03 21:01:53 -0700203
Patrick Georgi1916d682019-11-20 16:05:21 +0100204 new="$(comm -13 <(echo "$2") <(echo "$3"))"
205 old="$(comm -23 <(echo "$2") <(echo "$3"))"
206
207 # Allow running a postprocessor, given as 4th argument over the
208 # resulting diff, provide context if it's old or new data
209 if [ -n "$4" ]; then
210 new=$(echo "$new" | $4 new | sort)
211 old=$(echo "$old" | $4 old | sort)
212 fi
213 new="$(printf "$new" | sed 's/^/* /')"
214 old="$(printf "$old" | sed 's/^/* /')"
215
Martin Rothfb190ed2016-10-01 20:13:43 -0600216 if [ -n "$new" ]; then
217 printf "Added %s $1:\n-------------------\n%s\n\n" \
218 "$(echo "$new" | wc -l)" "$new" >> "$LOGFILE"
219 fi
Martin Rothfb190ed2016-10-01 20:13:43 -0600220 if [ -n "$old" ]; then
221 printf "Removed %s $1:\n-------------------\n%s\n\n" \
222 "$(echo "$old" | wc -l)" "$old" >> "$LOGFILE"
223 fi
224}
225
Martin Roth3ce67832017-11-04 18:36:19 -0600226get_sloc () {
227 # Because cloc works on extensions, and .inc identifies as pascal,
Patrick Georgi436296b2019-11-20 17:15:13 +0100228 # while we use it both for Makefile.inc and some files that are
229 # really C, do three passes: everything but .inc files, all .inc files
230 # that aren't Makefiles, all Makefile.inc, then combine them.
Martin Roth3ce67832017-11-04 18:36:19 -0600231
Patrick Georgi436296b2019-11-20 17:15:13 +0100232 local base=`mktemp`
233 find src -name Makefile.inc > ${base}.mak
Martin Roth3ce67832017-11-04 18:36:19 -0600234
Patrick Georgi436296b2019-11-20 17:15:13 +0100235 cloc --progress-rate=0 --quiet \
236 --script-lang="Bourne Shell",bash --exclude-ext=inc \
237 --exclude-dir=vendorcode --out=${base} src
238 cloc --progress-rate=0 --quiet \
239 --exclude-list-file=${base}.mak --force-lang=c,inc \
240 --exclude-dir=vendorcode --out=${base}.c src
241 cloc --progress-rate=0 --quiet \
242 --list-file=${base}.mak --force-lang=make,inc \
243 --exclude-dir=vendorcode --out=${base}.m src
244 cloc --progress-rate=0 --quiet --sum-reports \
245 ${base} ${base}.c ${base}.m --out ${base}.result
246
247 echo
248 cat ${base}.result.lang
249
250 rm -f ${base}*
Martin Roth3ce67832017-11-04 18:36:19 -0600251}
252
Martin Rothfb190ed2016-10-01 20:13:43 -0600253# Start collecting data from the old and new revisions.
254# This is relatively disruptive to the tree, so trap on ctl-c so that
255# things can be put back to normal
256trap version_ctrl_c SIGINT
Martin Rothbec11082015-11-03 21:01:53 -0700257
258#check out old version and get information
259printf -- "Finding old submodule versions...\n"
Martin Rothfb190ed2016-10-01 20:13:43 -0600260git checkout "$OLD_GIT_VERSION" > /dev/null 2>&1
Martin Rothbec11082015-11-03 21:01:53 -0700261git submodule update --init --checkout > /dev/null 2>&1
Martin Roth3ce67832017-11-04 18:36:19 -0600262for module in $(git submodule --quiet foreach pwd); do
263 name="$(basename "$module" | sed 's/-/_/g')"
264 version="${name^^}_OLD_VERSION"
265 declare "$version"=$(get_latest_commit_id "$module")
266done
Martin Rothfb190ed2016-10-01 20:13:43 -0600267
Martin Roth3ce67832017-11-04 18:36:19 -0600268printf "Logging directories in the old tree\n"
269mainboard_list_old=$(grep -h "^[[:space:]]*config\>[[:space:]]*\<BOARD_" src/mainboard/*/*/Kconfig.name 2>/dev/null | sed "s,^.*\<BOARD_\([A-Z0-9_]*\)\>.*$,\1," | sort)
270cpu_list_old=$(find_areas "src/cpu" "Kconfig" "intel/common")
271soc_list_old=$(find_areas "src/soc" "Makefile.inc" "intel/common\|amd/common\|romstage")
272northbridge_list_old=$(find_areas "src/northbridge" "Kconfig" "")
273sio_list_old=$(find_areas "src/superio" "Makefile.inc" "")
274southbridge_list_old=$(find_areas "src/southbridge" "Kconfig" "")
Martin Rothfb190ed2016-10-01 20:13:43 -0600275
Martin Rothbec11082015-11-03 21:01:53 -0700276printf "Calculating old SLOC\n"
Martin Roth3ce67832017-11-04 18:36:19 -0600277OLD_SLOC=$(get_sloc)
Martin Rothbec11082015-11-03 21:01:53 -0700278
279#check out new version and get information
280printf -- "\nFinding new submodule versions...\n"
Martin Rothfb190ed2016-10-01 20:13:43 -0600281git checkout "$NEW_GIT_VERSION" > /dev/null 2>&1
Martin Rothbec11082015-11-03 21:01:53 -0700282git submodule update --init --checkout > /dev/null 2>&1
Martin Rothbec11082015-11-03 21:01:53 -0700283
Martin Roth3ce67832017-11-04 18:36:19 -0600284for module in $(git submodule --quiet foreach pwd); do
285 name="$(basename "$module" | sed 's/-/_/g')"
286 version="${name^^}_NEW_VERSION"
287 declare "$version"=$(get_latest_commit_id "$module")
288done
Martin Rothfb190ed2016-10-01 20:13:43 -0600289
Martin Roth3ce67832017-11-04 18:36:19 -0600290printf "Logging directories in the new tree\n"
291mainboard_list_new=$(grep -h "^[[:space:]]*config\>[[:space:]]*\<BOARD_" src/mainboard/*/*/Kconfig.name 2>/dev/null | sed "s,^.*\<BOARD_\([A-Z0-9_]*\)\>.*$,\1," | sort)
292cpu_list_new=$(find_areas "src/cpu" "Kconfig" "intel/common")
293soc_list_new=$(find_areas "src/soc" "Makefile.inc" "intel/common\|amd/common\|romstage")
294northbridge_list_new=$(find_areas "src/northbridge" "Kconfig" "")
295sio_list_new=$(find_areas "src/superio" "Makefile.inc" "")
296southbridge_list_new=$(find_areas "src/southbridge" "Kconfig" "")
297
Martin Rothfb190ed2016-10-01 20:13:43 -0600298printf "Calculating new SLOC\n"
Martin Roth3ce67832017-11-04 18:36:19 -0600299NEW_SLOC=$(get_sloc)
Martin Rothbec11082015-11-03 21:01:53 -0700300
301git checkout origin/master > /dev/null 2>&1
302git submodule update --init --checkout > /dev/null 2>&1
Martin Rothbec11082015-11-03 21:01:53 -0700303trap "" SIGINT
Martin Rothfb190ed2016-10-01 20:13:43 -0600304# Done collecting data from the old and new versions
Martin Rothbec11082015-11-03 21:01:53 -0700305
Martin Rothfb190ed2016-10-01 20:13:43 -0600306# Start outputting to logfile
307echo "Generating release notes from version ${OLD_GIT_VERSION} to ${NEW_GIT_VERSION}"
308echo; echo "Main repo"
309echo "Main repo" >> "$LOGFILE"
Martin Rothbec11082015-11-03 21:01:53 -0700310echo "------------------" >> "$LOGFILE"
Martin Rothfb190ed2016-10-01 20:13:43 -0600311log_versions "$(git log --pretty=%H \
312 "${OLD_GIT_VERSION}..${NEW_GIT_VERSION}" 2>/dev/null | tail -1)" \
313 "$(git log --pretty=%H \
314 "${OLD_GIT_VERSION}..${NEW_GIT_VERSION}" 2>/dev/null | head -1 )"
315echo "" >> "$LOGFILE"
Martin Rothbec11082015-11-03 21:01:53 -0700316
Martin Roth3ce67832017-11-04 18:36:19 -0600317### SPECIFIC AREAS FOR RELEASE ###
Patrick Georgi3b34ef22019-06-30 11:41:51 +0200318get_log_dedupe "cleanup" "" "spelling\|Use tabs\|transition away from device_t\|space [around\|before]\|code formatting\|commented code\|code cleanup\|capitalize\|unnecessary whitespace\|checkpatch\|remove unused\|remove.*not used"
Martin Rothbec11082015-11-03 21:01:53 -0700319
Martin Roth3ce67832017-11-04 18:36:19 -0600320get_log_dedupe "Google Kahlee / AMD Gardenia" "src/mainboard/google/kahlee src/mainboard/amd/gardenia" "kahlee\|gardenia"
321get_log_dedupe "AMD Stoney Ridge" "src/soc/amd/stoneyridge" "stoney"
Martin Rothbec11082015-11-03 21:01:53 -0700322
Martin Roth3ce67832017-11-04 18:36:19 -0600323get_log_dedupe "Google Eve / Poppy / Fizz / Soraka / Nautilus / Intel KblRvp" "src/mainboard/google/eve src/mainboard/google/poppy src/mainboard/google/fizz src/mainboard/intel/kblrvp" "eve[ :]\|poppy\|fizz\|soraka\|nautilus\|kblrvp"
324#get_log_dedupe "Intel Kunimitsu / Google Chell / Lars / Glados" "src/mainboard/google/lars src/mainboard/google/chell src/mainboard/google/glados src/mainboard/intel/kunimitsu" "chell\|lars\|kunimitsu"
325get_log_dedupe "Purism SKL" "src/mainboard/purism/librem_skl" "librem13v2\|librem_skl"
326get_log_dedupe "Intel Skylake / Kabylake" "src/soc/intel/skylake" "skylake\|sky.lake\|kabylake\|kaby.lake"
Martin Rothbec11082015-11-03 21:01:53 -0700327
Martin Roth3ce67832017-11-04 18:36:19 -0600328get_log_dedupe "Google Cyan / Intel Strago" "src/mainboard/google/cyan src/mainboard/intel/strago" "cyan\|strago"
329get_log_dedupe "Intel Braswell" "src/soc/intel/braswell" "braswell"
Martin Rothbec11082015-11-03 21:01:53 -0700330
Martin Roth3ce67832017-11-04 18:36:19 -0600331get_log_dedupe "Google Kevin / Gru / Bob / Scarlet / Nefario" "src/mainboard/google/gru" "kevin\|gru[^b]"
332get_log_dedupe "Rockchip rk3399" "src/soc/rockchip/rk3399" "rk3399"
Martin Rothbec11082015-11-03 21:01:53 -0700333
Martin Roth3ce67832017-11-04 18:36:19 -0600334get_log_dedupe "Google Reef / Pyro / Sand / Snappy / Nasher" "src/mainboard/google/reef" "reef\|pyro\|sand[ :]\|snappy\|nasher"
335#get_log_dedupe "Intel apollolake_rvp leafhill minnow3" "src/mainboard/intel/apollolake_rvp src/mainboard/intel/leafhill src/mainboard/intel/minnow3" "apollolake_rvp\|leafhill\|minnow3"
336get_log_dedupe "Siemens mc_apl1" "src/mainboard/siemens/mc_apl1" "mc_apl1"
337get_log_dedupe "Intel Apollolake" "src/soc/intel/apollolake" "apollolake\|apollo.lake"
Martin Rothbec11082015-11-03 21:01:53 -0700338
Martin Roth3ce67832017-11-04 18:36:19 -0600339get_log_dedupe "Intel CannonLake" "src/soc/intel/cannonlake src/mainboard/intel/cannonlake_rvp" "cannonlake"
Martin Rothfb190ed2016-10-01 20:13:43 -0600340
Martin Roth3ce67832017-11-04 18:36:19 -0600341get_log_dedupe "Intel Galileo" "src/mainboard/intel/galileo" "galileo"
342get_log_dedupe "Intel Quark" "src/soc/intel/quark" "quark"
Martin Rothfb190ed2016-10-01 20:13:43 -0600343
Martin Roth3ce67832017-11-04 18:36:19 -0600344get_log_dedupe "Intel Baytrail" "src/soc/intel/baytrail" "baytrail"
345#get_log_dedupe "Google Gale / Qualcomm QX ipq40xx" "src/mainboard/google/gale src/soc/qualcomm/ipq40xx" "gale\|ipq40"
346#et_log_dedupe "Google Rotor / Marvell Mvmap2315" "src/soc/marvell/mvmap2315 src/mainboard/google/rotor" "marvell\|mvmap\|rotor"
Martin Rothfb190ed2016-10-01 20:13:43 -0600347
Martin Roth3ce67832017-11-04 18:36:19 -0600348get_log_dedupe "Gigabyte ga-g41m-es2l" "src/mainboard/gigabyte/ga-g41m-es2l" "es2l"
349get_log_dedupe "Intel x4x northbridge / LGA775" "src/northbridge/intel/x4x src/cpu/intel/socket_LGA775" "x4x\|lga775"
Martin Rothfb190ed2016-10-01 20:13:43 -0600350
Martin Roth3ce67832017-11-04 18:36:19 -0600351get_log_dedupe "Intel Sandybridge / Ivybridge" "src/southbridge/intel/bd82x6x src/southbridge/intel/fsp_bd82x6x src/northbridge/intel/sandybridge src/northbridge/intel/fsp_sandybridge src/cpu/intel/fsp_model_206ax src/cpu/intel/model_206ax" "sandybridge\|ivybridge\|bd82x6x"
Martin Rothfb190ed2016-10-01 20:13:43 -0600352
Martin Roth3ce67832017-11-04 18:36:19 -0600353get_log_dedupe "Intel Common" "src/soc/intel/common src/southbridge/intel/common src/northbridge/intel/common" ""
354get_log_dedupe "Amd Common" "src/soc/amd/common src/southbridge/amd/common" ""
355
Patrick Georgi3b34ef22019-06-30 11:41:51 +0200356get_log_dedupe "Nvidia" "src/southbridge/nvidia" ""
357get_log_dedupe "Via" "src/northbridge/via src/southbridge/via" ""
358get_log_dedupe "Broadcom" "src/southbridge/broadcom" ""
359get_log_dedupe "Qualcomm" "src/soc/qualcomm" ""
360
Martin Roth3ce67832017-11-04 18:36:19 -0600361get_log_dedupe "Intel vendorcode / FSP" "src/drivers/intel/fsp* src/vendorcode/intel" ""
362get_log_dedupe "AMD vendorcode / AGESA / PI" "src/vendorcode/amd" ""
363get_log_dedupe "Google vendorcode" "src/vendorcode/google"
364
Patrick Georgi3b34ef22019-06-30 11:41:51 +0200365get_log_dedupe "TPM" "src/drivers/i2c/tpm src/security/tpm" "tpm"
Martin Roth3ce67832017-11-04 18:36:19 -0600366get_log_dedupe "Vboot" "src/vboot" "vboot"
367
368
369### GENERAL AREAS FOR RELEASE ###
370# shellcheck disable=SC2013
371{
372get_log_dedupe "ARM" \
373 "$(for codedir in $(grep -rl "_ARM" --include=Kconfig | \
374 grep -v 'src/mainboard\|payloads/\|drivers/\|vendorcode/\|console' ); \
375 do dirname "$codedir"; done | grep -v '^src$')"
376
377get_log_dedupe "RISC-V" \
378 "$(for codedir in $(grep -rl "_RISCV" --include=Kconfig | grep -v 'payloads/\|drivers/\|vendorcode/\|console' ); do dirname "$codedir"; done | grep -v '^src$')" \
Jonathan Neuschäferce8763f2018-09-20 23:52:43 +0200379 "riscv\|risc-v\|sifive"
Martin Roth3ce67832017-11-04 18:36:19 -0600380}
381
382get_log_dedupe "X86 intel" \
383 "src/cpu/intel src/soc/intel src/northbridge/intel \
384 src/southbridge/intel src/include/intel src/drivers/intel"
385
386get_log_dedupe "X86 amd" \
387 "src/cpu/amd src/northbridge/amd src/southbridge/amd src/include/amd src/soc/amd" \
388 "agesa\|binarypi\|binary.pi"
389
390get_log_dedupe "X86 common" \
391 "src/arch/x86 src/cpu/x86 src/include/x86 src/include/pc80"
392
393get_log_dedupe "Mainboards" "src/mainboard/"
394
395# Next, print all the rest of the specific areas
396get_log_dedupe "ACPI" "src/acpi/"
397get_log_dedupe "Console" "src/console src/include/console"
398get_log_dedupe "SuperIO" "src/superio src/include/superio"
399get_log_dedupe "EC" "src/ec"
400get_log_dedupe "Drivers" "src/drivers"
401get_log_dedupe "Devices" "src/device src/include/device"
402
403# 5th, print the generic areas - This goes late so that the specific
404# area changes will catch any commits in these areas first.
405get_log_dedupe "Toolchain" "util/crossgcc"
406get_log_dedupe "cbfstool" "util/cbfstool"
407get_log_dedupe "Lint tools" "util/lint"
408get_log_dedupe "Lib" "src/lib"
409get_log_dedupe "Commonlib" "src/commonlib"
410get_log_dedupe "Include" "src/include"
411get_log_dedupe "Utilities" "util"
412get_log_dedupe "Payloads" "payloads"
413get_log_dedupe "Vendorcode" "src/vendorcode"
414get_log_dedupe "Documentation" "Documentation README"
415
416# Then look at areas that are usually outside the mainboards and architectures
417get_log_dedupe "Build system" \
418 "Makefile Makefile.inc toolchain.inc src/Kconfig src/cpu/Makefile.inc"
419
420get_log_dedupe "Submodules" "3rdparty util/nvidia/cbootimage"
Patrick Georgi3b34ef22019-06-30 11:41:51 +0200421
422get_log_dedupe "Maintainers" "MAINTAINERS" ""
423
Martin Roth3ce67832017-11-04 18:36:19 -0600424# Finally, get anything that was missed above
425get_log_dedupe "MISC" "."
426
Patrick Georgi1916d682019-11-20 16:05:21 +0100427# Replace VENDOR_DEVICE from stdin with their nice names on stdout
428real_mainboard_names() {
429 local tree_version=$1 # "old" or "new"
430 local git_version_var=${tree_version^^}_GIT_VERSION
431 local git_version=${!git_version_var}
432 local line
433
434 while read line; do
435 local file="$(git grep -l "^[[:space:]]*config\>[[:space:]]*\<BOARD_${line}\$" ${git_version} -- src/mainboard/\*/\*/Kconfig.name | sed "s,^${git_version}:,,")"
436 if [ -z "$file" ]; then
437 echo "This shouldn't happen: couldn't find Kconfig for $line"
438 exit 1
439 fi
440 local vendor="$(git grep \" ${git_version} -- $(echo ${file} | cut -d/ -f1-3,5) | cut -d\" -f2)"
441 git grep -h -A1 "^[[:space:]]*config\>[[:space:]]*\<BOARD_${line}\$" ${git_version} -- ${file} | grep \" |cut -d\" -f2 |sed "s,^,${vendor} ,"
442 done
443}
444
Martin Roth3ce67832017-11-04 18:36:19 -0600445# Show areas that have been added or removed
Patrick Georgi1916d682019-11-20 16:05:21 +0100446show_diff "mainboards" "$mainboard_list_old" "$mainboard_list_new" real_mainboard_names
Martin Roth3ce67832017-11-04 18:36:19 -0600447show_diff "processors" "$cpu_list_old" "$cpu_list_new"
448show_diff "socs" "$soc_list_old" "$soc_list_new"
449show_diff "northbridges" "$northbridge_list_old" "$northbridge_list_new"
450show_diff "southbridges" "$southbridge_list_old" "$southbridge_list_new"
451show_diff "sios" "$sio_list_old" "$sio_list_new"
452
453# Log submodules
454printf "Submodules\n----------\n" >> "$LOGFILE"
455for module in $(git submodule --quiet foreach pwd); do
456 name=$(basename "$module")
457 # shellcheck disable=SC2001
Patrick Georgi250f01e2018-12-20 17:25:50 +0100458 path=${module#$PWD}
Martin Roth3ce67832017-11-04 18:36:19 -0600459 old_version=$(echo "${name^^}_OLD_VERSION" | sed 's/-/_/g')
460 new_version=$(echo "${name^^}_NEW_VERSION" | sed 's/-/_/g')
461 get_log_submodule "${!old_version}" "${!new_version}" "$path"
462done
Martin Rothbec11082015-11-03 21:01:53 -0700463
Martin Rothfb190ed2016-10-01 20:13:43 -0600464printf "\nrepo statistics\n-------------------\n" >> "$LOGFILE"
465before_names="$(mktemp "OLDNAMES.XXXX")"
466after_names="$(mktemp "NEWNAMES.XXXX")"
467NEW_AUTHORS=$(git log --pretty=%an "${OLD_GIT_VERSION}" 2>/dev/null | sort | \
468 uniq > "$before_names" && \
469 git log --pretty=%an "${NEW_GIT_VERSION}" 2>/dev/null | \
470 sort | uniq > "$after_names" && \
471 grep -Fxv -c -f "$before_names" "$after_names")
Patrick Georgid653e492019-11-20 16:49:41 +0100472NEW_AUTHOR_LIST=$( grep -Fxv -f "$before_names" "$after_names")
473rm -f "$before_names" "$after_names"
Martin Rothfb190ed2016-10-01 20:13:43 -0600474{
475 printf -- "- Total commits: %s\n" "$TOTAL_COMMITS"
476 printf -- "- Total authors: %s\n" \
477 "$(git log "${OLD_GIT_VERSION}..${NEW_GIT_VERSION}" 2>/dev/null | \
478 grep -e '^Author:' | sed 's/.*Author: //' | sed 's/ <.*.>//' | \
479 sort | uniq | wc -l)"
480 printf -- "- New authors: %s\n\nNew Authors:\n%s\n" "$NEW_AUTHORS" \
481 "$NEW_AUTHOR_LIST"
482} >> "$LOGFILE"
Martin Rothbec11082015-11-03 21:01:53 -0700483
Martin Rothfb190ed2016-10-01 20:13:43 -0600484printf "Getting developer list\n"
485printf "\n%-40s: %5s\n" "Developer" "Commits" >> "$LOGFILE"
486git log "${OLD_GIT_VERSION}..${NEW_GIT_VERSION}" 2>/dev/null | grep '^Author: ' | \
487 sed 's|Author: ||' | sed 's|\s<.*||' | sort | uniq | \
488 while read -r line; do
489 printf "%-40s: %5s %5s\n" "$line" \
490 "$(git log "${OLD_GIT_VERSION}" 2>/dev/null | \
491 grep -c "^Author: ${line} <")" \
492 "$(git log "${NEW_GIT_VERSION}" 2>/dev/null | \
493 grep -c "^Author: ${line} <")" >> "$LOGFILE";
494 done
Martin Rothbec11082015-11-03 21:01:53 -0700495
496printf "\nOld SLOC (%s)\n%s" "$NOW" "$OLD_SLOC" >> "$LOGFILE"
497printf "\nNew SLOC (%s)\n%s" "$NOW" "$NEW_SLOC" >> "$LOGFILE"
498
499# Add the collected data to the top of the existing logfile for parsing
500if [ -n "$UPDATE_MAIN_LOGFILE" ]; then
501 tmpfile="$(mktemp "LOGFILE.XXXX")"
502 grep -Fxv -f "$MAIN_LOGFILE" "$LOGFILE" > "$tmpfile"
503 printf "\n\n" >> "$tmpfile"
504 cat "$MAIN_LOGFILE" >> "$tmpfile"
505 mv "$tmpfile" "$MAIN_LOGFILE"
506 rm -f "$LOGFILE"
507fi
Martin Rothfb190ed2016-10-01 20:13:43 -0600508
509printf "Done.\n"