From 7d476866ad00a43efeba49aac30077bdaeb8f94c Mon Sep 17 00:00:00 2001 From: Srikanth Patchava Date: Fri, 24 Apr 2026 19:11:27 -0700 Subject: [PATCH] feat: add Zephyr RTOS .gitignore template Add gitignore template for Zephyr RTOS projects covering: - Build artifacts and twister output - Generated config/devicetree files - West workspace metadata - Python virtual environments --- community/Embedded/ZephyrRTOS.gitignore | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 community/Embedded/ZephyrRTOS.gitignore diff --git a/community/Embedded/ZephyrRTOS.gitignore b/community/Embedded/ZephyrRTOS.gitignore new file mode 100644 index 00000000..3b4b1f2d --- /dev/null +++ b/community/Embedded/ZephyrRTOS.gitignore @@ -0,0 +1,27 @@ +# Zephyr RTOS build artifacts +/build/ +/twister-out*/ + +# Generated configuration files +*.config +*.config.old +/zephyr/.config + +# Device tree generated files +*.dts.pre.tmp +*.dts_compiled + +# Kconfig generated +autoconf.h + +# West workspace +/.west/ + +# Python virtual environment +/.venv/ +/venv/ + +# IDE +.vscode/launch.json +.vscode/tasks.json +*.jlink