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. 66ea2015132889a8acbb52a4bd56da5884e499d6
Date: Sat, 05 Feb 2022 09:01:41 +0000	[thread overview]
Message-ID: <4JrRGs6QDgz2xm6@people01.haj.ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 3645 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  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(a)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

                 reply	other threads:[~2022-02-05  9:01 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=4JrRGs6QDgz2xm6@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