* [PATCH] checkrootfiles: exclude update.sh at x86_64 check
@ 2022-07-19 16:52 Arne Fitzenreiter
2022-07-20 15:05 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Arne Fitzenreiter @ 2022-07-19 16:52 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1693 bytes --]
the updatescript also contains this string so the check
produce a false positive.
Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
tools/checkrootfiles | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/checkrootfiles b/tools/checkrootfiles
index 1a55a4da9..33bfb16e0 100755
--- a/tools/checkrootfiles
+++ b/tools/checkrootfiles
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2015 IPFire Team info(a)ipfire.org #
+# Copyright (C) 2007-2022 IPFire Team info(a)ipfire.org #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -35,11 +35,13 @@ fi
grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \
--exclude rust-ppv-lite86 --exclude rust-memchr --exclude *linux* \
+ --exclude update.sh \
--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 \
--exclude rust-ppv-lite86 --exclude rust-memchr --exclude *linux* \
+ --exclude update.sh \
--exclude-dir oldcore --exclude-dir x86_64
echo "Replace by xxxMACHINExxx !"
fi
--
2.36.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] checkrootfiles: exclude update.sh at x86_64 check
2022-07-19 16:52 [PATCH] checkrootfiles: exclude update.sh at x86_64 check Arne Fitzenreiter
@ 2022-07-20 15:05 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2022-07-20 15:05 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1948 bytes --]
Hello,
Is this check the right way to go if the list of exceptions is becoming longer and longer?
-Michael
> On 19 Jul 2022, at 17:52, Arne Fitzenreiter <arne_f(a)ipfire.org> wrote:
>
> the updatescript also contains this string so the check
> produce a false positive.
>
> Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
> ---
> tools/checkrootfiles | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/tools/checkrootfiles b/tools/checkrootfiles
> index 1a55a4da9..33bfb16e0 100755
> --- a/tools/checkrootfiles
> +++ b/tools/checkrootfiles
> @@ -2,7 +2,7 @@
> ###############################################################################
> # #
> # IPFire.org - A linux based firewall #
> -# Copyright (C) 2007-2015 IPFire Team info(a)ipfire.org #
> +# Copyright (C) 2007-2022 IPFire Team info(a)ipfire.org #
> # #
> # This program is free software: you can redistribute it and/or modify #
> # it under the terms of the GNU General Public License as published by #
> @@ -35,11 +35,13 @@ fi
>
> grep -r '/x86_64' ./config/rootfiles/ --exclude gcc --exclude rust-libc \
> --exclude rust-ppv-lite86 --exclude rust-memchr --exclude *linux* \
> + --exclude update.sh \
> --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 \
> --exclude rust-ppv-lite86 --exclude rust-memchr --exclude *linux* \
> + --exclude update.sh \
> --exclude-dir oldcore --exclude-dir x86_64
> echo "Replace by xxxMACHINExxx !"
> fi
> --
> 2.36.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-07-20 15:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-19 16:52 [PATCH] checkrootfiles: exclude update.sh at x86_64 check Arne Fitzenreiter
2022-07-20 15:05 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox