diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-04-30 17:42:38 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-05-05 15:24:45 +0000 |
commit | f7c64f942864334c0f7e96161f2642b6b06f1034 (patch) | |
tree | a76bbd21ae7b7ba1e32592ef3166b26ca7c1b443 | |
parent | b2252ce37cf074b34858d7399ad95c422073b403 (diff) | |
download | coreboot-f7c64f942864334c0f7e96161f2642b6b06f1034.tar.xz |
util/release/genrelnotes: Add "sifive" search pattern
Make sure that SiFive-related code is counted under RISC-V in the
release notes.
Change-Id: I3a74bb25ea66c98bc194adafd8267afeb42d7993
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/25987
Reviewed-by: Idwer Vollering <vidwer@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rwxr-xr-x | util/release/genrelnotes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/release/genrelnotes b/util/release/genrelnotes index 9db86317dc..dfdf21ee7f 100755 --- a/util/release/genrelnotes +++ b/util/release/genrelnotes @@ -349,7 +349,7 @@ get_log_dedupe "ARM" \ get_log_dedupe "RISC-V" \ "$(for codedir in $(grep -rl "_RISCV" --include=Kconfig | grep -v 'payloads/\|drivers/\|vendorcode/\|console' ); do dirname "$codedir"; done | grep -v '^src$')" \ - "riscv\|risc-v\|lowrisc" + "riscv\|risc-v\|lowrisc\|sifive" get_log_dedupe "MIPS" \ "$(for codedir in $(grep -rl "_MIPS" --include=Kconfig | \ |