From 844a31b24caed2c78f0bf1bafbc048596b3eef2e Mon Sep 17 00:00:00 2001 From: chenrun1 Date: Tue, 29 Aug 2023 12:19:23 +0800 Subject: [PATCH] memtester:update format Signed-off-by: chenrun1 --- testing/memtester/.gitignore | 2 +- testing/memtester/Kconfig | 15 ++------------- testing/memtester/Make.defs | 26 +++++++++++++++----------- testing/memtester/Makefile | 24 ++++++++++++++---------- 4 files changed, 32 insertions(+), 35 deletions(-) diff --git a/testing/memtester/.gitignore b/testing/memtester/.gitignore index 29f852f86..12d194f47 100644 --- a/testing/memtester/.gitignore +++ b/testing/memtester/.gitignore @@ -1 +1 @@ -/memtester \ No newline at end of file +/memtester diff --git a/testing/memtester/Kconfig b/testing/memtester/Kconfig index 9a4c17653..44f89962d 100644 --- a/testing/memtester/Kconfig +++ b/testing/memtester/Kconfig @@ -1,17 +1,6 @@ # -# Copyright (C) 2020 Xiaomi Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. # config UTILS_MEMTESTER diff --git a/testing/memtester/Make.defs b/testing/memtester/Make.defs index 9b1f65acd..f697e2aed 100644 --- a/testing/memtester/Make.defs +++ b/testing/memtester/Make.defs @@ -1,19 +1,23 @@ +############################################################################ +# apps/testing/memtester/Make.defs # -# Copyright (C) 2020 Xiaomi Corporation +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. # +############################################################################ ifneq ($(CONFIG_UTILS_MEMTESTER),) CONFIGURED_APPS += $(APPDIR)/testing/memtester -endif \ No newline at end of file +endif diff --git a/testing/memtester/Makefile b/testing/memtester/Makefile index 97cef3bf6..98a926862 100644 --- a/testing/memtester/Makefile +++ b/testing/memtester/Makefile @@ -1,18 +1,22 @@ +############################################################################ +# apps/testing/memtester/Makefile # -# Copyright (C) 2020 Xiaomi Corporation +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. # +############################################################################ include $(APPDIR)/Make.defs