mbed-os/.gitignore

107 lines
1.0 KiB
Plaintext
Raw Permalink Normal View History

2013-02-18 15:23:12 +00:00
*.py[cod]
2013-10-21 10:54:28 +00:00
# Distribution dir
dist
2013-10-22 11:13:04 +00:00
# MANIFEST file
MANIFEST
doxygen_objdb_*
2013-10-22 11:13:04 +00:00
# Private settings
mbed_settings.py
2013-08-15 15:09:12 +00:00
# Default Build Directory
2016-05-25 13:18:38 +00:00
.build/
BUILD/
.mbed
2016-01-10 20:26:32 +00:00
venv/
2013-08-15 15:09:12 +00:00
2018-02-09 10:57:31 +00:00
# Mbedls
.mbedls-mock.lock
2013-08-15 15:09:12 +00:00
# Eclipse Project Files
.cproject
.project
.pydevproject
2013-02-18 15:23:12 +00:00
# C extensions
*.so
# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
nosetests.xml
2018-02-09 10:57:31 +00:00
.cache
.hypothesis
2013-02-18 15:23:12 +00:00
# Translations
*.mo
# Mr Developer
.mr.developer.cfg
output.txt
uVision Project/
# Sublime Text Project Files
*.sublime*
*.bak
debug.log
# Ignore OS X Desktop Services Store files
2013-10-21 10:54:28 +00:00
.DS_Store
# Orig diff files
*.orig
# PyCharm
*.idea
2014-12-06 04:27:58 +00:00
# Cscope
cscope.*
2018-02-09 10:57:31 +00:00
# Ctags
tags
2014-12-06 04:27:58 +00:00
# vim swap files
*.swp
*~
2014-12-06 04:27:58 +00:00
2017-01-11 18:48:05 +00:00
# Visual Studio Code
.vscode/
features/FEATURE_BLE/targets/TARGET_CORDIO/stack_backup/
2018-01-23 10:26:14 +00:00
.pytest_cache
2018-08-20 06:50:55 +00:00
log
# Icetea related file
test_suite.json
# default delivery dir
DELIVERY/
psa: Replace Mbed PSA with TF-M Add TF-M to Mbed OS, replacing the previous PSA implementation for TF-M-capable targets. This commit adds files imported from TF-M, without modification. The version of TF-M imported can be found in `features/FEATURE_PSA/TARGET_TFM/VERSION.txt`. These changes switch to TF-M as the sole PSA implementation for v8-M and dual core targets, with TF-M running on the secure side and Mbed OS running on the non-secure side. Single core v7-M targets will continue to have PSA implemented via PSA emulation, implemented by Mbed OS. Move or remove many PSA-implementing files, as PSA will be provided by TF-M on non-single-v7-M targets. Delete any files that are not relevant for PSA emulation mode. - Remove imported TF-M SPM - Remove Mbed SPM and tests - Remove Mbed-implemented PSA services and tests - Remove PSA_SRV_IMPL, PSA_SRV_IPC, PSA_SRV_EMUL and NSPE. - Replace PSA_SRV_EMUL and PSA_SRV_IMPL with MBED_PSA_SRV - Remove any files autogenerated by "tools/psa/generate_partition_code.py", which no longer exists. Add new feature `PSA` to support PSA in Mbed OS. Move the Mbed OS implementation of PSA services for v7-M targets (which employ PSA emulation, and don't yet use TF-M) to features/FEATURE_PSA/TARGET_MBED_PSA_SRV. Update the `requires` attribute in TESTS/configs/baremetal.json to avoid breaking baremetal testing builds. Update .astyleignore to match new directory structure Update Mbed TLS importer to place files into FEATURE_PSA Create the following generic PSA targets: * `PSA_Target` (Root level PSA generic target) * `PSA_V7_M` (Single v7-M PSA generic target) * `PSA_DUAL_CORE` (Dual-core PSA generic target) * `PSA_V8_M` (v8-M PSA generic target) Flatten MUSCA_NS and private MUSCA targets into public MUSCA targets. Move mcuboot.bin to flat location (removing prebuilt folder) Signed-off-by: Devaraj Ranganna <devaraj.ranganna@arm.com> Signed-off-by: Jaeden Amero <jaeden.amero@arm.com>
2019-10-01 12:50:43 +00:00
# CMake
CMakeCache.txt
cmake_install.cmake
CMakeFiles/
cmake_build/
Testing/