public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
From: Arne Fitzenreiter <git@ipfire.org>
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	[thread overview]
Message-ID: <4TRwYM4kc3z2y2b@people01.haj.ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 4410 bytes --]

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 <arne_f(a)ipfire.org>
Date:   Sat Feb 3 14:47:41 2024 +0000

    checkrootfiles: fix search for wrong rootfiles
    
    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 [ "${?}" == "0" ]; then
 	echo "Comment this and create it at initskript if needed !"
 fi
 
-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 [ "${?}" == "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
 
-grep -r '/aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --exclude gdb --exclude liburcu --exclude gdb --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --exclude-dir x86_64  >/dev/null 2>&1
+grep -r 'aarch64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --exclude gdb --exclude liburcu --exclude gdb \
+     --exclude qemu --exclude liburcu --exclude abseil-cpp \
+     --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --exclude-dir x86_64 >/dev/null 2>&1
 if [ "${?}" == "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 --exclude gdb \
+    --exclude qemu --exclude liburcu --exclude abseil-cpp \
     --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --exclude-dir x86_64
 	echo "Replace by xxxMACHINExxx !"
 fi
 
-grep -r '/riscv64' ./config/rootfiles/ --exclude gcc --exclude rust-libc --exclude 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 --exclude gdb --exclude liburcu --exclude go --exclude qemu \
+     --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --exclude-dir x86_64  >/dev/null 2>&1
 if [ "${?}" == "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 --exclude go --exclude qemu \
     --exclude-dir oldcore --exclude-dir aarch64 --exclude-dir riscv64 --exclude-dir x86_64
 	echo "Replace by xxxMACHINExxx !"
 fi


hooks/post-receive
--
IPFire 2.x development tree

                 reply	other threads:[~2024-02-03 14:50 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4TRwYM4kc3z2y2b@people01.haj.ipfire.org \
    --to=git@ipfire.org \
    --cc=ipfire-scm@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox