Message ID | 120e7e4579b931c08d28d0a96848af1df7a07f7d.1718378539.git.nicola.vetrini@bugseng.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | address violations of MISRA C Rule 20.7 | expand |
On Mon, 17 Jun 2024, Nicola Vetrini wrote: > Remove from the ECLAIR integration scripts an unused option, which > was already ignored, and make the help texts consistent > with the rest of the scripts. > > No functional change. > > Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> Acked-by: Stefano Stabellini <sstabellini@kernel.org> > --- > automation/eclair_analysis/ECLAIR/analyze.sh | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/automation/eclair_analysis/ECLAIR/analyze.sh b/automation/eclair_analysis/ECLAIR/analyze.sh > index 0ea5520c93a6..e96456c3c18d 100755 > --- a/automation/eclair_analysis/ECLAIR/analyze.sh > +++ b/automation/eclair_analysis/ECLAIR/analyze.sh > @@ -11,7 +11,7 @@ fatal() { > } > > usage() { > - fatal "Usage: ${script_name} <ARM64|X86_64> <Set0|Set1|Set2|Set3>" > + fatal "Usage: ${script_name} <ARM64|X86_64> <accepted|monitored>" > } > > if [[ $# -ne 2 ]]; then > @@ -40,7 +40,6 @@ ECLAIR_REPORT_LOG=${ECLAIR_OUTPUT_DIR}/REPORT.log > if [[ "$1" = "X86_64" ]]; then > export CROSS_COMPILE= > export XEN_TARGET_ARCH=x86_64 > - EXTRA_ECLAIR_ENV_OPTIONS=-disable=MC3R1.R20.7 > elif [[ "$1" = "ARM64" ]]; then > export CROSS_COMPILE=aarch64-linux-gnu- > export XEN_TARGET_ARCH=arm64 > -- > 2.34.1 >
On Mon, 17 Jun 2024, Nicola Vetrini wrote: > Remove from the ECLAIR integration scripts an unused option, which > was already ignored, and make the help texts consistent > with the rest of the scripts. > > No functional change. > > Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> > --- > automation/eclair_analysis/ECLAIR/analyze.sh | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/automation/eclair_analysis/ECLAIR/analyze.sh b/automation/eclair_analysis/ECLAIR/analyze.sh > index 0ea5520c93a6..e96456c3c18d 100755 > --- a/automation/eclair_analysis/ECLAIR/analyze.sh > +++ b/automation/eclair_analysis/ECLAIR/analyze.sh > @@ -11,7 +11,7 @@ fatal() { > } > > usage() { > - fatal "Usage: ${script_name} <ARM64|X86_64> <Set0|Set1|Set2|Set3>" > + fatal "Usage: ${script_name} <ARM64|X86_64> <accepted|monitored>" > } > > if [[ $# -ne 2 ]]; then > @@ -40,7 +40,6 @@ ECLAIR_REPORT_LOG=${ECLAIR_OUTPUT_DIR}/REPORT.log > if [[ "$1" = "X86_64" ]]; then > export CROSS_COMPILE= > export XEN_TARGET_ARCH=x86_64 > - EXTRA_ECLAIR_ENV_OPTIONS=-disable=MC3R1.R20.7 > elif [[ "$1" = "ARM64" ]]; then > export CROSS_COMPILE=aarch64-linux-gnu- > export XEN_TARGET_ARCH=arm64 > -- > 2.34.1 >
diff --git a/automation/eclair_analysis/ECLAIR/analyze.sh b/automation/eclair_analysis/ECLAIR/analyze.sh index 0ea5520c93a6..e96456c3c18d 100755 --- a/automation/eclair_analysis/ECLAIR/analyze.sh +++ b/automation/eclair_analysis/ECLAIR/analyze.sh @@ -11,7 +11,7 @@ fatal() { } usage() { - fatal "Usage: ${script_name} <ARM64|X86_64> <Set0|Set1|Set2|Set3>" + fatal "Usage: ${script_name} <ARM64|X86_64> <accepted|monitored>" } if [[ $# -ne 2 ]]; then @@ -40,7 +40,6 @@ ECLAIR_REPORT_LOG=${ECLAIR_OUTPUT_DIR}/REPORT.log if [[ "$1" = "X86_64" ]]; then export CROSS_COMPILE= export XEN_TARGET_ARCH=x86_64 - EXTRA_ECLAIR_ENV_OPTIONS=-disable=MC3R1.R20.7 elif [[ "$1" = "ARM64" ]]; then export CROSS_COMPILE=aarch64-linux-gnu- export XEN_TARGET_ARCH=arm64
Remove from the ECLAIR integration scripts an unused option, which was already ignored, and make the help texts consistent with the rest of the scripts. No functional change. Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> --- automation/eclair_analysis/ECLAIR/analyze.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)