This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via e1253a4d348f23d0d368ef69bc213b184acb8b56 (commit) from b689391f272ca09b8724f094ab0700890cba13db (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit e1253a4d348f23d0d368ef69bc213b184acb8b56 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Thu Dec 3 07:50:41 2020 +0100
rootfile-check: exclude gdb
gdb always contain aarch64 in a syscall list.
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
-----------------------------------------------------------------------
Summary of changes: tools/checknewlog.pl | 2 +- tools/checkrootfiles | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
Difference in files: diff --git a/tools/checknewlog.pl b/tools/checknewlog.pl index 0df390b5c..c1d80eaeb 100755 --- a/tools/checknewlog.pl +++ b/tools/checknewlog.pl @@ -28,7 +28,7 @@ foreach(@FILES) { # print $_."\n"; my $Found = 0;
- if ( $_ =~ /$.log/ || $_ =~ /^.+/ || $_=~ /-install/ || $_=~ /-tools/ || $_=~ /-config/ || $_=~ /-kmod-/|| $_=~ /u-boot-.*-1/|| $_=~ /coreutils/ || $_=~ /cmake/ || $_=~ /libsigc/ || $_ eq 'FILES' ){ + if ( $_ =~ /$.log/ || $_ =~ /^.+/ || $_=~ /-install/ || $_=~ /-tools/ || $_=~ /-config/ || $_=~ /-kmod-/|| $_=~ /u-boot-.*-1/|| $_=~ /coreutils/ || $_=~ /cmake/ || $_=~ /gdb/ || $_=~ /libsigc/ || $_ eq 'FILES' ){ next; } elsif ( $_=~ /missing_rootfile/ ){ print "Rootfile for $_ missing!\n"; diff --git a/tools/checkrootfiles b/tools/checkrootfiles index d11ab8d5e..5e465700d 100755 --- a/tools/checkrootfiles +++ b/tools/checkrootfiles @@ -54,7 +54,7 @@ if [ "${?}" == "0" ]; then echo "Replace by xxxMACHINExxx !" fi
-grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude-dir oldcore --exclude-dir aarch64 >/dev/null 2>&1 +grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude gdb --exclude-dir oldcore --exclude-dir aarch64 >/dev/null 2>&1 if [ "${?}" == "0" ]; then echo "Error! '/aarch64' in rootfiles files found!" grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude-dir oldcore --exclude-dir aarch64
hooks/post-receive -- IPFire 2.x development tree