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 66ea2015132889a8acbb52a4bd56da5884e499d6 (commit) from 7bf1468417505e676768f25f3ac41975c26caff0 (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 66ea2015132889a8acbb52a4bd56da5884e499d6 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Feb 5 08:59:08 2022 +0000
checkrootfiles: exclude some rust paks and fix armv6l
some new rust packages contain files with x86_64 or aarch64 on all archictectures. They are now excluded from check. also this fix the check for armv6l.
-----------------------------------------------------------------------
Summary of changes: tools/checkrootfiles | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-)
Difference in files: diff --git a/tools/checkrootfiles b/tools/checkrootfiles index a5288bf86..1a55a4da9 100755 --- a/tools/checkrootfiles +++ b/tools/checkrootfiles @@ -33,23 +33,30 @@ if [ "${?}" == "0" ]; then echo "Comment this and create it at initskript if needed !" fi
-grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude *linux* --exclude-dir oldcore --exclude-dir x86_64 >/dev/null 2>&1 +grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ + --exclude rust-ppv-lite86 --exclude rust-memchr --exclude *linux* \ + --exclude-dir oldcore --exclude-dir x86_64 >/dev/null 2>&1 if [ "${?}" == "0" ]; then echo "Error! '/x86_64' in rootfiles files found!" - grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude *linux* --exclude-dir oldcore --exclude-dir x86_64 + grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ + --exclude rust-ppv-lite86 --exclude rust-memchr --exclude *linux* \ + --exclude-dir oldcore --exclude-dir x86_64 echo "Replace by xxxMACHINExxx !" fi
-grep -r '/armv5tel' ./config/rootfiles/ --exclude gcc --exclude-dir oldcore --exclude-dir armv5tel >/dev/null 2>&1 +grep -r '/armv6l' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ + --exclude-dir oldcore --exclude-dir armv5tel >/dev/null 2>&1 if [ "${?}" == "0" ]; then - echo "Error! '/armv5tel' in rootfiles files found!" - grep -r '/armv5tel' ./config/rootfiles/ --exclude gcc --exclude-dir oldcore --exclude-dir armv5tel + echo "Error! '/armv6l' in rootfiles files found!" + grep -r '/armv6l' ./config/rootfiles/ --exclude gcc \ + --exclude-dir oldcore --exclude-dir armv5tel echo "Replace by xxxMACHINExxx !" fi
-grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude gdb --exclude liburcu --exclude gdb --exclude-dir oldcore --exclude-dir aarch64 >/dev/null 2>&1 +grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --exclude gdb --exclude liburcu --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 + grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ + --exclude-dir oldcore --exclude-dir aarch64 echo "Replace by xxxMACHINExxx !" fi
hooks/post-receive -- IPFire 2.x development tree