xref: /device/soc/hisilicon/OAT.xml (revision 1bd4fe43)
11bd4fe43Sopenharmony_ci<?xml version="1.0" encoding="UTF-8"?>
21bd4fe43Sopenharmony_ci<!-- Copyright (C) 2021 Huawei Device Co., Ltd.
31bd4fe43Sopenharmony_ci 
41bd4fe43Sopenharmony_ci     Licensed under the Apache License, Version 2.0 (the "License");
51bd4fe43Sopenharmony_ci     you may not use this file except in compliance with the License.
61bd4fe43Sopenharmony_ci     You may obtain a copy of the License at
71bd4fe43Sopenharmony_ci 
81bd4fe43Sopenharmony_ci          http://www.apache.org/licenses/LICENSE-2.0
91bd4fe43Sopenharmony_ci 
101bd4fe43Sopenharmony_ci     Unless required by applicable law or agreed to in writing, software
111bd4fe43Sopenharmony_ci     distributed under the License is distributed on an "AS IS" BASIS,
121bd4fe43Sopenharmony_ci     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
131bd4fe43Sopenharmony_ci     See the License for the specific language governing permissions and
141bd4fe43Sopenharmony_ci     limitations under the License.
151bd4fe43Sopenharmony_ci 
161bd4fe43Sopenharmony_ci	 Notes:
171bd4fe43Sopenharmony_ci	 This is project config file for OpenHarmony OSS Audit Tool, if you have any questions or concerns, please email chenyaxun.
181bd4fe43Sopenharmony_ci-->
191bd4fe43Sopenharmony_ci<!-- OAT(OSS Audit Tool) configuration guide:
201bd4fe43Sopenharmony_cibasedir: Root dir, the basedir + project path is the real source file location.
211bd4fe43Sopenharmony_cilicensefile:
221bd4fe43Sopenharmony_ci1.If the project don't have "LICENSE" in root dir, please define all the license files in this project in , OAT will check license files according to this rule.
231bd4fe43Sopenharmony_ci 
241bd4fe43Sopenharmony_citasklist(only for batch mode):
251bd4fe43Sopenharmony_ci1. task: Define oat check thread, each task will start a new thread.
261bd4fe43Sopenharmony_ci2. task name: Only an name, no practical effect.
271bd4fe43Sopenharmony_ci3. task policy: Default policy for projects under this task, this field is required and the specified policy must defined in policylist.
281bd4fe43Sopenharmony_ci4. task filter: Default filefilter for projects under this task, this field is required and the specified filefilter must defined in filefilterlist.
291bd4fe43Sopenharmony_ci5. task project: Projects to be checked, the path field define the source root dir of the project.
301bd4fe43Sopenharmony_ci 
311bd4fe43Sopenharmony_ci 
321bd4fe43Sopenharmony_cipolicyList:
331bd4fe43Sopenharmony_ci1. policy: All policyitems will be merged to default OAT.xml rules, the name of policy doesn't affect OAT check process.
341bd4fe43Sopenharmony_ci2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is:
351bd4fe43Sopenharmony_ci<policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
361bd4fe43Sopenharmony_ci3. policyitem type:
371bd4fe43Sopenharmony_ci    "compatibility" is used to check license compatibility in the specified path;
381bd4fe43Sopenharmony_ci    "license" is used to check source license header in the specified path;
391bd4fe43Sopenharmony_ci    "copyright" is used to check source copyright header in the specified path;
401bd4fe43Sopenharmony_ci    "import" is used to check source dependency in the specified path, such as import ... ,include ...
411bd4fe43Sopenharmony_ci    "filetype" is used to check file type in the specified path, supported file types: archive, binary
421bd4fe43Sopenharmony_ci    "filename" is used to check whether the specified file exists in the specified path(support projectroot in default OAT.xml), supported file names: LICENSE, README, README.OpenSource
431bd4fe43Sopenharmony_ci 
441bd4fe43Sopenharmony_ci4. policyitem name: This field is used for define the license, copyright, "*" means match all, the "!" prefix means could not match this value. For example, "!GPL" means can not use GPL license.
451bd4fe43Sopenharmony_ci5. policyitem path: This field is used for define the source file scope to apply this policyitem, the "!" prefix means exclude the files. For example, "!.*/lib/.*" means files in lib dir will be exclude while process this policyitem.
461bd4fe43Sopenharmony_ci6. policyitem rule and group: These two fields are used together to merge policy results. "may" policyitems in the same group means any one in this group passed, the result will be passed.
471bd4fe43Sopenharmony_ci7. policyitem filefilter: Used to bind filefilter which define filter rules.
481bd4fe43Sopenharmony_ci8. filefilter: Filter rules, the type filename is used to filter file name, the type filepath is used to filter file path.
491bd4fe43Sopenharmony_ci 
501bd4fe43Sopenharmony_ciNote:If the text contains special characters, please escape them according to the following rules:
511bd4fe43Sopenharmony_ci" == &gt;
521bd4fe43Sopenharmony_ci& == &gt;
531bd4fe43Sopenharmony_ci' == &gt;
541bd4fe43Sopenharmony_ci< == &gt;
551bd4fe43Sopenharmony_ci> == &gt;
561bd4fe43Sopenharmony_ci-->
571bd4fe43Sopenharmony_ci<configuration>
581bd4fe43Sopenharmony_ci    <oatconfig>
591bd4fe43Sopenharmony_ci		<licensefile>hi3518ev300/mpp/lib/LICENSE|common/platform/LICENSE|hi3516dv300/sdk_linux/drv/LICENSE|hi3861v100/sdk_liteos/license/LICENSE</licensefile>
601bd4fe43Sopenharmony_ci        <policylist>
611bd4fe43Sopenharmony_ci            <policy name="projectPolicy" desc="">
621bd4fe43Sopenharmony_ci				<policyitem type="license" name="EndUserLicenseAgreement" path=".*" desc="HiSilicon copyright"/>
631bd4fe43Sopenharmony_ci				<policyitem type="license" name="GPLStyleLicense" path="hi3516dv300/sdk_linux/drv/LICENSE" desc="LICENSE for all files within hi3516dv300/sdk_linux/drv/ which reside in kernel space"/>
641bd4fe43Sopenharmony_ci                <policyitem type="license" name="GPLStyleLicense" path="hi3751v350/.*" desc="LICENSE for all files within hi3751v350 which reside in kernel space"/>
651bd4fe43Sopenharmony_ci				<policyitem type="license" name="GPL-2.0" path=".*" desc="Kernel space code"/>
661bd4fe43Sopenharmony_ci				<policyitem type="license" name="BSD-3-Clause" path=".*" desc="HiSilicon copyright"/>
671bd4fe43Sopenharmony_ci				<policyitem type="copyright" name="Copyright (c) 2020 HiSilicon (Shanghai) Technologies CO., LIMITED." path=".*" desc="HiSilicon copyright"/>
681bd4fe43Sopenharmony_ci				<policyitem type="copyright" name="Copyright (c) 2021 HiSilicon (Shanghai) Technologies CO., LIMITED." path=".*" desc="HiSilicon copyright"/>
691bd4fe43Sopenharmony_ci				<policyitem type="copyright" name="Copyright (C) 2020 Hisilicon (Shanghai) Technologies Co., Ltd. All rights reserved." path=".*" desc="HiSilicon copyright"/>
701bd4fe43Sopenharmony_ci				<policyitem type="copyright" name="HiSilicon (Shanghai) Technologies CO., LIMITED." path=".*" desc="HiSilicon copyright"/>
711bd4fe43Sopenharmony_ci				<policyitem type="copyright" name="Huawei Technologies Co., Ltd. All rights reserved." path=".*" desc="original huawei copyright"/>
721bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (c) 2007 - 2017 Realtek Corporation." path=".*" desc="copyright"/>
731bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2009-2018 Realtek Corporation." path=".*" desc="copyright"/>
741bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2009-2018 Realtek Corporation" path=".*" desc="copyright"/>
751bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2012, 2014-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
761bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
771bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
781bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010, 2013-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
791bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010, 2012-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
801bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2012, 2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
811bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010, 2013, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
821bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010, 2012-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
831bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
841bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2016 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
851bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010, 2013-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
861bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2014, 2016-2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
871bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010, 2013, 2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
881bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2014, 2016-2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
891bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2011, 2013, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
901bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2011, 2013-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
911bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2011, 2013-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
921bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2010-2011 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
931bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2011-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
941bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2011-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
951bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2011-2013, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
961bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2011-2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
971bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2011-2016 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
981bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
991bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012-2016 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1001bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012-2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1011bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1021bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012-2013, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1031bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012, 2014-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1041bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1051bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1061bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2012-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1071bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2013-2014, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1081bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2013-2015, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1091bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2013-2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1101bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2013-2016 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1111bd4fe43Sopenharmony_ci                <policyitem type="copyright" name="Copyright (C) 2013, 2017 ARM Limited. All rights reserved." path=".*" desc="copyright"/>
1121bd4fe43Sopenharmony_ci			</policy>
1131bd4fe43Sopenharmony_ci        </policylist>
1141bd4fe43Sopenharmony_ci		<filefilterlist>
1151bd4fe43Sopenharmony_ci			<filefilter name="defaultFilter" desc="Files not to check">
1161bd4fe43Sopenharmony_ci				<!--filteritem type="filename" name="*.lds|*.pod"/-->
1171bd4fe43Sopenharmony_ci				<!--filteritem type="filepath" name="dir name underproject/.*" desc="Describe the reason for filtering scan results"/-->
1181bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="common/hal/middleware/ffmpeg_adapt/.*" desc="ffmpeg compile scripts"/>
1191bd4fe43Sopenharmony_ci			</filefilter>
1201bd4fe43Sopenharmony_ci			<filefilter name="defaultPolicyFilter" desc="Filters for compatibility,license header policies">
1211bd4fe43Sopenharmony_ci				<filteritem type="filename" name="README.OpenSource"/>
1221bd4fe43Sopenharmony_ci				<filteritem type="filename" name="README"/>
1231bd4fe43Sopenharmony_ci				<filteritem type="filename" name="BUILD.gn" desc="Compilation scripts do not declare license"/>
1241bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/sdk_linux/build.sh" desc="Compilation scripts do not declare license"/>
1251bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/sdk_linux/config.gni" desc="Compilation scripts do not declare license"/>
1261bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/sdk_linux/out/ko/load3516dv300_user" desc="load script"/>
1271bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/platform/os/.*" desc="liteos"/>
1281bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/third_party/.*" desc="Describe the reason for filtering scan results"/>
1291bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/hi3861_adapter/.*" desc="Describe the reason for filtering scan results"/>
1301bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/components/iperf2/include/iperf.h" desc="Describe the reason for filtering scan results"/>
1311bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.mk" desc="Describe the reason for filtering scan results"/>
1321bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.sh" desc="Describe the reason for filtering scan results"/>
1331bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.gni" desc="Describe the reason for filtering scan results"/>
1341bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.xml" desc="Describe the reason for filtering scan results"/>
1351bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.cfg" desc="Describe the reason for filtering scan results"/>
1361bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.csv" desc="Describe the reason for filtering scan results"/>
1371bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.S|*.gn" desc="Describe the reason for filtering scan results"/>
1381bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.txt" desc="Temp files"/>
1391bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/bin/ohos_drv_mgr" desc="Describe the reason for filtering scan results"/>
1401bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/uboot/u-boot-hi3516dv300_emmc.bin" desc="Describe the reason for filtering scan results"/>
1411bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/clean" desc="Describe the reason for filtering scan results"/>
1421bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/ifcfg-wlan0" desc="Describe the reason for filtering scan results"/>
1431bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/runwpa" desc="Describe the reason for filtering scan results"/>
1441bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/msp/drv/gpu/utgard/linux/license/proprietary/mali_kernel_license.h" desc="Describe the reason for filtering scan results"/>
1451bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/wlan0dhcp" desc="Describe the reason for filtering scan results"/>
1461bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/hal/phydm/phydm_regtable.h" desc="Describe the reason for filtering scan results"/>
1471bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/vendor/etc/bluetooth/rtkbt.conf" desc="Describe the reason for filtering scan results"/>
1481bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/msp/drv/gpu/utgard/.version" desc="Describe the reason for filtering scan results"/>
1491bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/msp/drv/gpu/utgard/MALI_CONFIGURATION" desc="Describe the reason for filtering scan results"/>
1501bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/hal/phydm/rtl8723d/version_rtl8723d.h" desc="Describe the reason for filtering scan results"/>
1511bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/include/rtw_version.h" desc="Describe the reason for filtering scan results"/>
1521bd4fe43Sopenharmony_ci				<!--filteritem type="filepath" name="dir name underproject/.*" desc="Describe the reason for filtering scan results"/-->
1531bd4fe43Sopenharmony_ci			</filefilter>
1541bd4fe43Sopenharmony_ci			<filefilter name="copyrightPolicyFilter" desc="Filters for copyright header policies" >
1551bd4fe43Sopenharmony_ci				<filteritem type="filename" name="README.OpenSource"/>
1561bd4fe43Sopenharmony_ci				<filteritem type="filename" name="README"/>
1571bd4fe43Sopenharmony_ci				<filteritem type="filename" name="BUILD.gn" desc="HiSilicon copyright"/>
1581bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/sdk_linux/build.sh" desc="HiSilicon copyright"/>
1591bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/sdk_linux/config.gni" desc="HiSilicon copyright"/>
1601bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/sdk_linux/out/ko/load3516dv300_user" desc="HiSilicon copyright"/>
1611bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/platform/os/.*" desc="liteos"/>
1621bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/third_party/.*" desc="Describe the reason for filtering scan results"/>
1631bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/hi3861_adapter/.*" desc="Describe the reason for filtering scan results"/>
1641bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/components/iperf2/include/iperf.h" desc="Describe the reason for filtering scan results"/>
1651bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.mk" desc="Describe the reason for filtering scan results"/>
1661bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.sh" desc="Describe the reason for filtering scan results"/>
1671bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.gni" desc="Describe the reason for filtering scan results"/>
1681bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.xml" desc="Describe the reason for filtering scan results"/>
1691bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.cfg" desc="Describe the reason for filtering scan results"/>
1701bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.png" desc="Describe the reason for filtering scan results"/>
1711bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.csv" desc="Describe the reason for filtering scan results"/>
1721bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.S|*.gn" desc="Describe the reason for filtering scan results"/>
1731bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.txt" desc="Temp files"/>
1741bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/bin/ohos_drv_mgr" desc="Describe the reason for filtering scan results"/>
1751bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3516dv300/uboot/u-boot-hi3516dv300_emmc.bin" desc="Describe the reason for filtering scan results"/>
1761bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/common/drv/include/osal_ioctl.h" desc="Describe the reason for filtering scan results"/>
1771bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/hal/phydm/rtl8723d/version_rtl8723d.h" desc="Describe the reason for filtering scan results"/>
1781bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/include/rtw_version.h" desc="Describe the reason for filtering scan results"/>
1791bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/clean" desc="Describe the reason for filtering scan results"/>
1801bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/ifcfg-wlan0" desc="Describe the reason for filtering scan results"/>
1811bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/runwpa" desc="Describe the reason for filtering scan results"/>
1821bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/msp/drv/gpu/utgard/linux/license/proprietary/mali_kernel_license.h" desc="Describe the reason for filtering scan results"/>
1831bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/wlan0dhcp" desc="Describe the reason for filtering scan results"/>
1841bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/soc/hisilicon/common/platform/wifi/rtl/rtl/usb_rtl8723du/rtl8723DU_WiFi_linux_v5.6.5.3_35502.20191025_COEX20181130-2e2e/hal/phydm/phydm_regtable.h" desc="Describe the reason for filtering scan results"/>
1851bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/vendor/etc/bluetooth/rtkbt.conf" desc="Describe the reason for filtering scan results"/>
1861bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/msp/drv/gpu/utgard/.version" desc="Describe the reason for filtering scan results"/>
1871bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/msp/drv/gpu/utgard/MALI_CONFIGURATION" desc="Describe the reason for filtering scan results"/>
1881bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/driver/rtk_btcoex.c" desc="Describe the reason for filtering scan results"/>
1891bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/driver/rtk_btcoex.h" desc="Describe the reason for filtering scan results"/>
1901bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/driver/rtk_btusb.c" desc="Describe the reason for filtering scan results"/>
1911bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/driver/rtk_btusb.h" desc="Describe the reason for filtering scan results"/>
1921bd4fe43Sopenharmony_ci			</filefilter>
1931bd4fe43Sopenharmony_ci			<filefilter name="licenseFileNamePolicyFilter" desc="Filters for LICENSE file policies" >
1941bd4fe43Sopenharmony_ci				<!--filteritem type="filepath" name="dir name underproject/.*" desc="Describe the reason for filtering scan results"/-->
1951bd4fe43Sopenharmony_ci			</filefilter>
1961bd4fe43Sopenharmony_ci			<filefilter name="readmeFileNamePolicyFilter" desc="Filters for README file policies" >
1971bd4fe43Sopenharmony_ci				<!--filteritem type="filepath" name="dir name underproject/.*" desc="Describe the reason for filtering scan results"/-->
1981bd4fe43Sopenharmony_ci			</filefilter>
1991bd4fe43Sopenharmony_ci			<filefilter name="readmeOpenSourcefileNamePolicyFilter" desc="Filters for README.OpenSource file policies" >
2001bd4fe43Sopenharmony_ci				<!--filteritem type="filepath" name="dir name underproject/.*" desc="Describe the reason for filtering scan results"/-->
2011bd4fe43Sopenharmony_ci			</filefilter>
2021bd4fe43Sopenharmony_ci			<filefilter name="binaryFileTypePolicyFilter" desc="Filters for binary file policies" >
2031bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.a|*.so|*.png|*.bin" desc="Shared libraries of Hisilicon self-developed multimedia processing platform, those libraries are under End User License Agreement declared in hi3516dv300/sdk_linux/out/lib/LICENSE"/>
2041bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/build/libs/.*.a" desc="Describe the reason for filtering scan results"/>
2051bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/build/libs/.*.o" desc="Describe the reason for filtering scan results"/>
2061bd4fe43Sopenharmony_ci				<filteritem type="filename" name="*.exe|*.bin|*.png|*.pdf" desc="Describe the reason for filtering scan results"/>
2071bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/tools/nvtool/tools/nv/cdbm" desc="Describe the reason for filtering scan results"/>
2081bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/tools/lzma_tool/lzma_tool" desc="Describe the reason for filtering scan results"/>
2091bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/build/scripts/ota_builder" desc="Describe the reason for filtering scan results"/>
2101bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/tools/sign_tool/sign_tool" desc="Describe the reason for filtering scan results"/>
2111bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/tools/nvtool/nv_builder" desc="Describe the reason for filtering scan results"/>
2121bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3861v100/sdk_liteos/third_party/u-boot-v2019.07/u-boot-v2019.07.tar.gz" desc="Describe the reason for filtering scan results"/>
2131bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/bin/ohos_drv_mgr" desc="Describe the reason for filtering scan results"/>
2141bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/Firmware/BT/rtl8723d_fw" desc="Describe the reason for filtering scan results"/>
2151bd4fe43Sopenharmony_ci				<filteritem type="filepath" name="hi3751v350/sdk_linux/source/device/board/hisilicon/hispark_phoenix/peripherals/bluetooth/bluetooth/rtkbt/Firmware/BT/rtl8723d_config" desc="Describe the reason for filtering scan results"/>
2161bd4fe43Sopenharmony_ci                <filteritem type="filename" name="*.jpg|*.gif" desc="demo pictures"/>
2171bd4fe43Sopenharmony_ci			</filefilter>
2181bd4fe43Sopenharmony_ci 
2191bd4fe43Sopenharmony_ci		</filefilterlist>
2201bd4fe43Sopenharmony_ci 
2211bd4fe43Sopenharmony_ci    </oatconfig>
2221bd4fe43Sopenharmony_ci</configuration>
223