From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. cd5d0b7658f67a5db50332434b93f579bda24e74 Date: Sat, 03 Feb 2024 14:50:31 +0000 Message-ID: <4TRwYM4kc3z2y2b@people01.haj.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2485514056395420054==" List-Id: --===============2485514056395420054== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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 cd5d0b7658f67a5db50332434b93f579bda24e74 (commit) from d145574673a2822fc219cda4d1e19184b94c1078 (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 cd5d0b7658f67a5db50332434b93f579bda24e74 Author: Arne Fitzenreiter Date: Sat Feb 3 14:47:41 2024 +0000 checkrootfiles: fix search for wrong rootfiles =20 Im not sure when the grep syntax has changed but grep -r not like/ignore the leading "/" anymore. ----------------------------------------------------------------------- Summary of changes: tools/checkrootfiles | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) Difference in files: diff --git a/tools/checkrootfiles b/tools/checkrootfiles index 05b16f368..5036ce2d0 100755 --- a/tools/checkrootfiles +++ b/tools/checkrootfiles @@ -33,31 +33,35 @@ if [ "${?}" =3D=3D "0" ]; then echo "Comment this and create it at initskript if needed !" fi =20 -grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ +grep -r 'x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ --exclude rust-ppv-lite86 --exclude rust-memchr --exclude-dir aarch64 --= exclude-dir riscv64 --exclude-dir x86_64 \ - --exclude update.sh \ + --exclude update.sh --exclude qemu --exclude cmake --exclude xfsprogs \ --exclude-dir oldcore --exclude-dir x86_64 >/dev/null 2>&1 if [ "${?}" =3D=3D "0" ]; then echo "Error! '/x86_64' in rootfiles files found!" - grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ + grep -r 'x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ --exclude rust-ppv-lite86 --exclude rust-memchr --exclude-dir aarch64 --= exclude-dir riscv64 --exclude-dir x86_64 \ - --exclude update.sh \ + --exclude update.sh --exclude qemu --exclude cmake --exclude xfsprogs \ --exclude-dir oldcore --exclude-dir x86_64 echo "Replace by xxxMACHINExxx !" fi =20 -grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --e= xclude gdb --exclude liburcu --exclude gdb --exclude-dir oldcore --exclude-di= r aarch64 --exclude-dir riscv64 --exclude-dir x86_64 >/dev/null 2>&1 +grep -r 'aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --ex= clude gdb --exclude liburcu --exclude gdb \ + --exclude qemu --exclude liburcu --exclude abseil-cpp \ + --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --exc= lude-dir x86_64 >/dev/null 2>&1 if [ "${?}" =3D=3D "0" ]; then - echo "Error! '/aarch64' in rootfiles files found!" - grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \ + echo "Error! 'aarch64' in rootfiles files found!" + grep -r 'aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --e= xclude gdb \ + --exclude qemu --exclude liburcu --exclude abseil-cpp \ --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --excl= ude-dir x86_64 echo "Replace by xxxMACHINExxx !" fi =20 -grep -r '/riscv64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --e= xclude gdb --exclude liburcu --exclude go --exclude-dir oldcore --exclude-dir= aarch64 --exclude-dir riscv64 --exclude-dir x86_64 >/dev/null 2>&1 +grep -r 'riscv64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --ex= clude gdb --exclude liburcu --exclude go --exclude qemu \ + --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --exc= lude-dir x86_64 >/dev/null 2>&1 if [ "${?}" =3D=3D "0" ]; then - echo "Error! '/riscv64' in rootfiles files found!" - grep -r '/riscv64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --= exclude go \ + echo "Error! 'riscv64' in rootfiles files found!" + grep -r 'riscv64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --e= xclude go --exclude qemu \ --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --excl= ude-dir x86_64 echo "Replace by xxxMACHINExxx !" fi hooks/post-receive -- IPFire 2.x development tree --===============2485514056395420054==--