From 0578f0f88d31790489fc408364d3be88a59d8d72 Mon Sep 17 00:00:00 2001 From: grasci <86058054+grasci-arm@users.noreply.github.com> Date: Thu, 4 Apr 2024 08:46:37 +0100 Subject: [PATCH] [projmgr] list category doc files from components in *.cbuild.yml --- tools/projmgr/src/ProjMgrWorker.cpp | 2 +- .../ref/empty/project.Debug+TEST_TARGET.cbuild.yml | 4 ++++ .../ref/empty/project.Release+TEST_TARGET.cbuild.yml | 4 ++++ .../ref/multiple-components.Debug+CM0.cbuild.yml | 4 ++++ .../ref/test-gpdsc-layer.Debug+CM0.cbuild.yml | 4 ++++ .../test-gpdsc-multiple-generators.Debug+CM0.cbuild.yml | 4 ++++ .../ref/test-gpdsc-project-files.Debug+CM0.cbuild.yml | 4 ++++ .../data/TestGenerator/ref/test-gpdsc.Debug+CM0.cbuild.yml | 4 ++++ .../ref/branch-protection.Debug+bti-signret.cbuild.yml | 7 +++++++ .../ref/branch-protection.Debug+bti.cbuild.yml | 7 +++++++ .../ref/branch-protection.Debug+no-bp.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/dsp.Debug+dsp.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/dsp.Debug+no-dsp.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/endian.Debug+big.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/endian.Debug+little.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/fpu.Debug+fpu-dp.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/fpu.Debug+fpu-sp.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/fpu.Debug+no-fpu.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/mve.Debug+mve-fp.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/mve.Debug+mve-int.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/mve.Debug+no-mve.cbuild.yml | 7 +++++++ .../ref/trustzone.Debug+non-secure.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/trustzone.Debug+secure.cbuild.yml | 7 +++++++ .../ref/trustzone.Debug+tz-disabled.cbuild.yml | 7 +++++++ .../DeviceAttributes/ref/trustzone.Fail+secure.cbuild.yml | 7 +++++++ .../ref/linker.AutoGen+RteTest_ARMCM3.cbuild.yml | 3 +++ .../ref/linker.FromComponent+RteTest_ARMCM3.cbuild.yml | 3 +++ .../ref/linker.PriorityDefines+RteTest_ARMCM3.cbuild.yml | 7 +++++++ .../ref/linker.PriorityRegions+RteTest_ARMCM3.cbuild.yml | 7 +++++++ .../ref/metadata.Debug+RteTest_ARMCM3.cbuild.yml | 7 +++++++ .../ref/library.Debug+RteTest_ARMCM3.cbuild.yml | 7 +++++++ .../TestBaseUpdate/ref/project.Debug+CM0.cbuild.yml | 7 +++++++ .../test_board_and_device+TEST_TARGET.cbuild.yml | 7 +++++++ .../ref/TestProject3_1.Debug+TypeA.cbuild-gen.yml | 7 +++++++ .../TestSolution/ref/cbuild/test1.Debug+CM0.cbuild.yml | 7 +++++++ .../TestSolution/ref/cbuild/test1.Release+CM0.cbuild.yml | 7 +++++++ .../TestSolution/ref/cbuild/test2.Debug+CM0.cbuild.yml | 7 +++++++ .../TestSolution/ref/cbuild/test2.Debug+CM3.cbuild.yml | 7 +++++++ .../TestSolution/ref/outputFiles.Debug+Target.cbuild.yml | 7 +++++++ .../TestSolution/ref/outputFiles.Library+Target.cbuild.yml | 7 +++++++ .../test/data/TestSolution/ref/pre-include+CM0.cbuild.yml | 7 +++++++ .../test/data/TestSolution/ref/rtedir.Debug+CM0.cbuild.yml | 3 +++ .../data/TestSolution/ref/rtedir.Release+CM0.cbuild.yml | 3 +++ 43 files changed, 258 insertions(+), 1 deletion(-) diff --git a/tools/projmgr/src/ProjMgrWorker.cpp b/tools/projmgr/src/ProjMgrWorker.cpp index 5b9c87b67..a4d020673 100644 --- a/tools/projmgr/src/ProjMgrWorker.cpp +++ b/tools/projmgr/src/ProjMgrWorker.cpp @@ -2042,7 +2042,7 @@ bool ProjMgrWorker::ProcessComponentFiles(ContextItem& context) { const auto& language = componentFile->GetAttribute("language"); const auto& select = componentFile->GetAttribute("select"); const auto& version = componentFile->GetVersionString(); - if ((scope == "hidden") || (attr == "template") || (category == "header" && (!select.empty())) || + if ((scope == "hidden") || (attr == "template") || (category == "doc") || (category == "header" && (!select.empty())) || ((((category == "preIncludeGlobal") || (category == "preIncludeLocal")) && attr.empty()) && (IsPreIncludeByTarget(context.rteActiveTarget, name)))){ context.componentFiles[componentId].push_back({ name, attr, category, language, scope, version, select }); } diff --git a/tools/projmgr/test/data/TestDefault/ref/empty/project.Debug+TEST_TARGET.cbuild.yml b/tools/projmgr/test/data/TestDefault/ref/empty/project.Debug+TEST_TARGET.cbuild.yml index 0904b7edf..a0e51f065 100644 --- a/tools/projmgr/test/data/TestDefault/ref/empty/project.Debug+TEST_TARGET.cbuild.yml +++ b/tools/projmgr/test/data/TestDefault/ref/empty/project.Debug+TEST_TARGET.cbuild.yml @@ -33,6 +33,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.1.1 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.1.1/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../../data/TestDefault/RTE/Device/RteTest_ARMCM0/gcc_linker_script.ld.src regions: ../../data/TestDefault/RTE/Device/RteTest_ARMCM0/regions_RteTest_ARMCM0.h diff --git a/tools/projmgr/test/data/TestDefault/ref/empty/project.Release+TEST_TARGET.cbuild.yml b/tools/projmgr/test/data/TestDefault/ref/empty/project.Release+TEST_TARGET.cbuild.yml index ddbe1fe7d..e52afd120 100644 --- a/tools/projmgr/test/data/TestDefault/ref/empty/project.Release+TEST_TARGET.cbuild.yml +++ b/tools/projmgr/test/data/TestDefault/ref/empty/project.Release+TEST_TARGET.cbuild.yml @@ -33,6 +33,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.1.1 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.1.1/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../../data/TestDefault/RTE/Device/RteTest_ARMCM0/gcc_linker_script.ld.src regions: ../../data/TestDefault/RTE/Device/RteTest_ARMCM0/regions_RteTest_ARMCM0.h diff --git a/tools/projmgr/test/data/TestGenerator/ref/multiple-components.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestGenerator/ref/multiple-components.Debug+CM0.cbuild.yml index 17a737fdc..e5ebb6826 100644 --- a/tools/projmgr/test/data/TestGenerator/ref/multiple-components.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestGenerator/ref/multiple-components.Debug+CM0.cbuild.yml @@ -48,6 +48,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 generators: - generator: RteTestGeneratorIdentifier from-pack: ARM::RteTestGenerator@0.1.0 diff --git a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-layer.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-layer.Debug+CM0.cbuild.yml index c7dc6d296..47237f5e7 100644 --- a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-layer.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-layer.Debug+CM0.cbuild.yml @@ -39,6 +39,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 generators: - generator: RteTestGeneratorIdentifier from-pack: ARM::RteTestGenerator@0.1.0 diff --git a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-multiple-generators.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-multiple-generators.Debug+CM0.cbuild.yml index 309b71f17..e3e158f3d 100644 --- a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-multiple-generators.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-multiple-generators.Debug+CM0.cbuild.yml @@ -46,6 +46,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 generators: - generator: RteTestGeneratorIdentifier from-pack: ARM::RteTestGenerator@0.1.0 diff --git a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-project-files.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-project-files.Debug+CM0.cbuild.yml index 348b67d9c..d9b13938d 100644 --- a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-project-files.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc-project-files.Debug+CM0.cbuild.yml @@ -36,6 +36,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 generators: - generator: RteTestGeneratorIdentifier from-pack: ARM::RteTestGenerator@0.1.0 diff --git a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc.Debug+CM0.cbuild.yml index dcdae4145..c27c85e2b 100644 --- a/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestGenerator/ref/test-gpdsc.Debug+CM0.cbuild.yml @@ -39,6 +39,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 generators: - generator: RteTestGeneratorIdentifier from-pack: ARM::RteTestGenerator@0.1.0 diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti-signret.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti-signret.cbuild.yml index a1971cb34..41374eaac 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti-signret.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti-signret.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/branch-protection/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/branch-protection/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti.cbuild.yml index a1a3b81ae..f81be95c5 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+bti.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/branch-protection/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/branch-protection/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+no-bp.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+no-bp.cbuild.yml index 1f2f25610..d79b426a2 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+no-bp.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/branch-protection.Debug+no-bp.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/branch-protection/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/branch-protection/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+dsp.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+dsp.cbuild.yml index 2d98f338c..50c4baf5a 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+dsp.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+dsp.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/dsp/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/dsp/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+no-dsp.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+no-dsp.cbuild.yml index f2b8a3b61..011d887b6 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+no-dsp.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/dsp.Debug+no-dsp.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/dsp/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/dsp/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+big.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+big.cbuild.yml index bbbcc0b00..916a2c044 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+big.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+big.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/endian/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/endian/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+little.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+little.cbuild.yml index 07cb17846..38574d7f9 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+little.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/endian.Debug+little.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/endian/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/endian/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-dp.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-dp.cbuild.yml index 9128a8acf..c4a4c6402 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-dp.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-dp.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/fpu/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -47,6 +50,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/fpu/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-sp.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-sp.cbuild.yml index 8de6519a1..a2eabf227 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-sp.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+fpu-sp.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/fpu/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -47,6 +50,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/fpu/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+no-fpu.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+no-fpu.cbuild.yml index 95b85554b..5b5dd4dfb 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+no-fpu.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/fpu.Debug+no-fpu.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/fpu/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -47,6 +50,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/fpu/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-fp.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-fp.cbuild.yml index 2cd96137f..16fcabf8f 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-fp.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-fp.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/mve/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/mve/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-int.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-int.cbuild.yml index 8064dd584..49720cc0b 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-int.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+mve-int.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/mve/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/mve/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+no-mve.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+no-mve.cbuild.yml index 5fc389893..5eaa7bce5 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+no-mve.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/mve.Debug+no-mve.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/mve/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/mve/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+non-secure.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+non-secure.cbuild.yml index d29b9a6b3..664adcacc 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+non-secure.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+non-secure.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+secure.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+secure.cbuild.yml index 913ffc511..b8df1994d 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+secure.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+secure.cbuild.yml @@ -34,6 +34,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -50,6 +53,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+tz-disabled.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+tz-disabled.cbuild.yml index c030d9fd1..37b849d08 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+tz-disabled.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Debug+tz-disabled.cbuild.yml @@ -32,6 +32,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -48,6 +51,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Fail+secure.cbuild.yml b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Fail+secure.cbuild.yml index c271543ee..72a088cc7 100644 --- a/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Fail+secure.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/DeviceAttributes/ref/trustzone.Fail+secure.cbuild.yml @@ -34,6 +34,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -50,6 +53,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/DeviceAttributes/trustzone/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.AutoGen+RteTest_ARMCM3.cbuild.yml b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.AutoGen+RteTest_ARMCM3.cbuild.yml index cf0b5909c..b5fa2a8fd 100644 --- a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.AutoGen+RteTest_ARMCM3.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.AutoGen+RteTest_ARMCM3.cbuild.yml @@ -36,6 +36,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Device:Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/LinkerOptions/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config diff --git a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.FromComponent+RteTest_ARMCM3.cbuild.yml b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.FromComponent+RteTest_ARMCM3.cbuild.yml index 6aa2cce90..8bbb9b06c 100644 --- a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.FromComponent+RteTest_ARMCM3.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.FromComponent+RteTest_ARMCM3.cbuild.yml @@ -36,6 +36,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Device:Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/LinkerOptions/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config diff --git a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityDefines+RteTest_ARMCM3.cbuild.yml b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityDefines+RteTest_ARMCM3.cbuild.yml index 58cfc1673..a5fd97dd8 100644 --- a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityDefines+RteTest_ARMCM3.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityDefines+RteTest_ARMCM3.cbuild.yml @@ -36,6 +36,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Device:Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/LinkerOptions/layer/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config @@ -52,6 +55,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/LinkerOptions/layer/RTE/Device/RteTest_ARMCM3/ac6_linker_script.sct.src regions: ../data/TestSolution/LinkerOptions/layer/RTE/Device/RteTest_ARMCM3/regions_RteTest_ARMCM3.h diff --git a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityRegions+RteTest_ARMCM3.cbuild.yml b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityRegions+RteTest_ARMCM3.cbuild.yml index e66b317f3..2d362beb4 100644 --- a/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityRegions+RteTest_ARMCM3.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/LinkerOptions/ref/linker.PriorityRegions+RteTest_ARMCM3.cbuild.yml @@ -36,6 +36,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Device:Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/LinkerOptions/layer/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config @@ -52,6 +55,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/LinkerOptions/layer/RTE/Device/RteTest_ARMCM3/ac6_linker_script.sct.src regions: ../data/TestSolution/LinkerOptions/layer/RTE/Device/RteTest_ARMCM3/regions_RteTest_ARMCM3.h diff --git a/tools/projmgr/test/data/TestSolution/PackMetadata/ref/metadata.Debug+RteTest_ARMCM3.cbuild.yml b/tools/projmgr/test/data/TestSolution/PackMetadata/ref/metadata.Debug+RteTest_ARMCM3.cbuild.yml index fce7d24cd..181acf48e 100644 --- a/tools/projmgr/test/data/TestSolution/PackMetadata/ref/metadata.Debug+RteTest_ARMCM3.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/PackMetadata/ref/metadata.Debug+RteTest_ARMCM3.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.1.1 selected-by: Device:Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.1.1/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/PackMetadata/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config @@ -47,6 +50,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.1.1 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.1.1/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/PackMetadata/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/StandardLibrary/ref/library.Debug+RteTest_ARMCM3.cbuild.yml b/tools/projmgr/test/data/TestSolution/StandardLibrary/ref/library.Debug+RteTest_ARMCM3.cbuild.yml index 6ead9b804..9d6913791 100644 --- a/tools/projmgr/test/data/TestSolution/StandardLibrary/ref/library.Debug+RteTest_ARMCM3.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/StandardLibrary/ref/library.Debug+RteTest_ARMCM3.cbuild.yml @@ -39,6 +39,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Device:Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/StandardLibrary/RTE/Device/RteTest_ARMCM3/gcc_arm.ld category: linkerScript attr: config @@ -55,6 +58,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/StandardLibrary/RTE/Device/RteTest_ARMCM3/gcc_arm.ld constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/TestBaseUpdate/ref/project.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestSolution/TestBaseUpdate/ref/project.Debug+CM0.cbuild.yml index 1664558ed..43a49a9c4 100644 --- a/tools/projmgr/test/data/TestSolution/TestBaseUpdate/ref/project.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/TestBaseUpdate/ref/project.Debug+CM0.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/TestBaseUpdate/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -49,6 +52,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/TestBaseUpdate/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct groups: diff --git a/tools/projmgr/test/data/TestSolution/TestProject4/test_board_and_device+TEST_TARGET.cbuild.yml b/tools/projmgr/test/data/TestSolution/TestProject4/test_board_and_device+TEST_TARGET.cbuild.yml index 9231a8983..1823e2a1e 100644 --- a/tools/projmgr/test/data/TestSolution/TestProject4/test_board_and_device+TEST_TARGET.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/TestProject4/test_board_and_device+TEST_TARGET.cbuild.yml @@ -34,6 +34,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/TestProject4/RTE/Device/RteTest_ARMCM0_Dual_cm0_core1/ARMCM0_ac6.sct category: linkerScript attr: config @@ -50,6 +53,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/TestProject4/RTE/Device/RteTest_ARMCM0_Dual_cm0_core1/ARMCM0_ac6.sct groups: diff --git a/tools/projmgr/test/data/TestSolution/ref/TestProject3_1.Debug+TypeA.cbuild-gen.yml b/tools/projmgr/test/data/TestSolution/ref/TestProject3_1.Debug+TypeA.cbuild-gen.yml index fa94e3e2c..75673b8d2 100644 --- a/tools/projmgr/test/data/TestSolution/ref/TestProject3_1.Debug+TypeA.cbuild-gen.yml +++ b/tools/projmgr/test/data/TestSolution/ref/TestProject3_1.Debug+TypeA.cbuild-gen.yml @@ -55,6 +55,9 @@ build-gen: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${DEVTOOLS(packs)}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ${DEVTOOLS(data)}/TestSolution/TestProject3_1/RTE/Device/RteTestGen_ARMCM0/gcc_arm.ld category: linkerScript attr: config @@ -71,6 +74,10 @@ build-gen: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${DEVTOOLS(packs)}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 generators: - generator: RteTestGeneratorIdentifier from-pack: ARM::RteTestGenerator@0.1.0 diff --git a/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Debug+CM0.cbuild.yml index 120a5b7c1..fb77ead3e 100644 --- a/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Debug+CM0.cbuild.yml @@ -58,6 +58,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/TestProject1/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -82,6 +85,10 @@ build: - ../data/TestSolution/TestProject1/path/1/component del-path: - ../data/TestSolution/TestProject1/path/2/component + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/TestProject1/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct groups: diff --git a/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Release+CM0.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Release+CM0.cbuild.yml index bbfa68b4f..85bf47c11 100644 --- a/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Release+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/cbuild/test1.Release+CM0.cbuild.yml @@ -41,6 +41,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/TestProject1/RTE/Device/RteTest_ARMCM0/gcc_arm.ld category: linkerScript attr: config @@ -65,6 +68,10 @@ build: - ../data/TestSolution/TestProject1/path/1/component del-path: - ../data/TestSolution/TestProject1/path/2/component + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/TestProject1/RTE/Device/RteTest_ARMCM0/gcc_arm.ld groups: diff --git a/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM0.cbuild.yml index 8a51df91a..e956ffc9a 100644 --- a/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM0.cbuild.yml @@ -65,6 +65,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/TestProject2/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -81,6 +84,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE@0.1.1 + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/TestProject2/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct groups: diff --git a/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM3.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM3.cbuild.yml index 45de93da7..f03ee3f89 100644 --- a/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM3.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/cbuild/test2.Debug+CM3.cbuild.yml @@ -62,6 +62,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/TestProject2/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config @@ -78,6 +81,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: RteTest:CORE@0.1.1 + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/TestProject2/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct groups: diff --git a/tools/projmgr/test/data/TestSolution/ref/outputFiles.Debug+Target.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/outputFiles.Debug+Target.cbuild.yml index 6556b3a9b..44c988d85 100644 --- a/tools/projmgr/test/data/TestSolution/ref/outputFiles.Debug+Target.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/outputFiles.Debug+Target.cbuild.yml @@ -35,6 +35,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config @@ -51,6 +54,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/ref/outputFiles.Library+Target.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/outputFiles.Library+Target.cbuild.yml index fc887d27a..fc5803ee0 100644 --- a/tools/projmgr/test/data/TestSolution/ref/outputFiles.Library+Target.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/outputFiles.Library+Target.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct category: linkerScript attr: config @@ -47,6 +50,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 linker: script: ../data/TestSolution/RTE/Device/RteTest_ARMCM3/ARMCM3_ac6.sct constructed-files: diff --git a/tools/projmgr/test/data/TestSolution/ref/pre-include+CM0.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/pre-include+CM0.cbuild.yml index 436feca6e..045c349c4 100644 --- a/tools/projmgr/test/data/TestSolution/ref/pre-include+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/pre-include+CM0.cbuild.yml @@ -37,6 +37,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/RTE/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config @@ -53,6 +56,10 @@ build: condition: Cortex-M Device from-pack: ARM::RteTest_DFP@0.2.0 selected-by: CORE + files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/Doc/html/index.html + category: doc + version: 0.1.1 - component: ARM::RteTest:ComponentLevel@0.0.1 from-pack: ARM::RteTest@0.1.0 selected-by: RteTest:ComponentLevel diff --git a/tools/projmgr/test/data/TestSolution/ref/rtedir.Debug+CM0.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/rtedir.Debug+CM0.cbuild.yml index 09c59b74e..c13a875f8 100644 --- a/tools/projmgr/test/data/TestSolution/ref/rtedir.Debug+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/rtedir.Debug+CM0.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/AC6/Device/RteTest_ARMCM0/ARMCM0_ac6.sct category: linkerScript attr: config diff --git a/tools/projmgr/test/data/TestSolution/ref/rtedir.Release+CM0.cbuild.yml b/tools/projmgr/test/data/TestSolution/ref/rtedir.Release+CM0.cbuild.yml index ce69c878e..cb460551c 100644 --- a/tools/projmgr/test/data/TestSolution/ref/rtedir.Release+CM0.cbuild.yml +++ b/tools/projmgr/test/data/TestSolution/ref/rtedir.Release+CM0.cbuild.yml @@ -31,6 +31,9 @@ build: from-pack: ARM::RteTest_DFP@0.2.0 selected-by: Startup files: + - file: ${CMSIS_PACK_ROOT}/ARM/RteTest_DFP/0.2.0/https:/arm-software.github.io/CMSIS_5/Core_A/html/startup_c_pg.html + category: doc + version: 2.0.3 - file: ../data/TestSolution/GCC/Device/RteTest_ARMCM0/gcc_arm.ld category: linkerScript attr: config