From ea7bbd60b4a9d380efcc32444a75fc6d82dedb01 Mon Sep 17 00:00:00 2001 From: Arnaud Pouliquen Date: Fri, 13 Oct 2023 18:22:16 +0200 Subject: [PATCH] Remove vim editor configuration in files Remove all remaining instances of "# vim: ..." in files Signed-off-by: Arnaud Pouliquen --- CMakeLists.txt | 1 - cmake/collect.cmake | 1 - cmake/depends.cmake | 1 - cmake/options.cmake | 1 - cmake/platforms/cross-freertos-gcc.cmake | 1 - cmake/platforms/cross-generic-gcc.cmake | 1 - cmake/platforms/cross-generic-iar.cmake | 1 - cmake/platforms/cross-linux-gcc.cmake | 1 - cmake/platforms/template-freertos.cmake | 1 - cmake/platforms/template-generic.cmake | 1 - cmake/platforms/zynq7-freertos.cmake | 1 - cmake/platforms/zynq7-generic-iar.cmake | 1 - cmake/platforms/zynq7-generic.cmake | 1 - cmake/platforms/zynq7-linux.cmake | 1 - cmake/platforms/zynqmp-a53-freertos.cmake | 1 - cmake/platforms/zynqmp-a53-generic.cmake | 1 - cmake/platforms/zynqmp-linux.cmake | 1 - cmake/platforms/zynqmp-r5-freertos.cmake | 1 - cmake/platforms/zynqmp-r5-generic.cmake | 1 - doc/CMakeLists.txt | 1 - examples/CMakeLists.txt | 1 - .../system/freertos/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt | 1 - .../system/generic/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt | 1 - examples/system/linux/zynqmp/zynqmp_amp_demo/CMakeLists.txt | 2 -- lib/CMakeLists.txt | 1 - lib/compiler/CMakeLists.txt | 1 - lib/compiler/armcc/CMakeLists.txt | 1 - lib/compiler/gcc/CMakeLists.txt | 1 - lib/compiler/iar/CMakeLists.txt | 1 - lib/processor/CMakeLists.txt | 1 - lib/processor/aarch64/CMakeLists.txt | 1 - lib/processor/arm/CMakeLists.txt | 1 - lib/processor/ceva/CMakeLists.txt | 1 - lib/processor/csky/CMakeLists.txt | 1 - lib/processor/microblaze/CMakeLists.txt | 1 - lib/processor/riscv/CMakeLists.txt | 1 - lib/processor/x86/CMakeLists.txt | 1 - lib/processor/x86_64/CMakeLists.txt | 1 - lib/system/CMakeLists.txt | 2 -- lib/system/freertos/CMakeLists.txt | 1 - lib/system/freertos/template/CMakeLists.txt | 1 - lib/system/freertos/xlnx_common/CMakeLists.txt | 1 - lib/system/freertos/zynq7/CMakeLists.txt | 1 - lib/system/freertos/zynqmp_a53/CMakeLists.txt | 1 - lib/system/freertos/zynqmp_r5/CMakeLists.txt | 1 - lib/system/generic/CMakeLists.txt | 1 - lib/system/generic/microblaze_generic/CMakeLists.txt | 1 - lib/system/generic/template/CMakeLists.txt | 2 -- lib/system/generic/xlnx_common/CMakeLists.txt | 2 -- lib/system/generic/zynq7/CMakeLists.txt | 1 - lib/system/generic/zynqmp_r5/CMakeLists.txt | 1 - lib/system/linux/CMakeLists.txt | 1 - lib/system/nuttx/CMakeLists.txt | 1 - lib/system/zephyr/CMakeLists.txt | 2 -- test/CMakeLists.txt | 1 - test/system/CMakeLists.txt | 1 - test/system/freertos/CMakeLists.txt | 1 - test/system/freertos/zynq7/CMakeLists.txt | 1 - test/system/freertos/zynqmp_a53/CMakeLists.txt | 1 - test/system/freertos/zynqmp_r5/CMakeLists.txt | 1 - test/system/generic/CMakeLists.txt | 1 - test/system/generic/microblaze_generic/CMakeLists.txt | 1 - test/system/generic/zynq7/CMakeLists.txt | 1 - test/system/generic/zynqmp_a53/CMakeLists.txt | 1 - test/system/generic/zynqmp_r5/CMakeLists.txt | 1 - test/system/linux/CMakeLists.txt | 1 - test/system/linux/zynq/CMakeLists.txt | 1 - test/system/zephyr/CMakeLists.txt | 1 - 68 files changed, 73 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ea8f7bc..3fe79282 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,4 +43,3 @@ if (WITH_EXAMPLES) add_subdirectory (examples) endif (WITH_EXAMPLES) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/collect.cmake b/cmake/collect.cmake index 3a1c5803..6161c7dd 100644 --- a/cmake/collect.cmake +++ b/cmake/collect.cmake @@ -33,4 +33,3 @@ collector_create (PROJECT_LIB_DIRS "") collector_create (PROJECT_LIB_DEPS "") collector_create (PROJECT_HDR_TESTS "") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/depends.cmake b/cmake/depends.cmake index 1a9ed462..60b97398 100644 --- a/cmake/depends.cmake +++ b/cmake/depends.cmake @@ -35,4 +35,3 @@ else ("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") endif ("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/options.cmake b/cmake/options.cmake index a7b4ef8b..1643d71e 100644 --- a/cmake/options.cmake +++ b/cmake/options.cmake @@ -73,4 +73,3 @@ option (WITH_DEFAULT_LOGGER "Build with default logger" ON) option (WITH_DOC "Build with documentation" ON) set_property (GLOBAL PROPERTY "PROJECT_EC_FLAGS" -Wall -Werror -Wextra) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/cross-freertos-gcc.cmake b/cmake/platforms/cross-freertos-gcc.cmake index f12fdc78..106688a7 100644 --- a/cmake/platforms/cross-freertos-gcc.cmake +++ b/cmake/platforms/cross-freertos-gcc.cmake @@ -3,4 +3,3 @@ include (cross-generic-gcc) string (TOLOWER "FreeRTOS" PROJECT_SYSTEM) string (TOUPPER "FreeRTOS" PROJECT_SYSTEM_UPPER) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/cross-generic-gcc.cmake b/cmake/platforms/cross-generic-gcc.cmake index 9495ca16..577078ef 100644 --- a/cmake/platforms/cross-generic-gcc.cmake +++ b/cmake/platforms/cross-generic-gcc.cmake @@ -9,4 +9,3 @@ set (CMAKE_CXX_COMPILER "${CROSS_PREFIX}g++") # causes errors in try_compile on ARM generic. set (CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/cross-generic-iar.cmake b/cmake/platforms/cross-generic-iar.cmake index f31a14be..86b5d7ff 100644 --- a/cmake/platforms/cross-generic-iar.cmake +++ b/cmake/platforms/cross-generic-iar.cmake @@ -7,4 +7,3 @@ include (CMakeForceCompiler) CMAKE_FORCE_C_COMPILER ("icc${CROSS_SUFFIX}" IAR) CMAKE_FORCE_CXX_COMPILER ("icc${CROSS_SUFFIX} --eec++" IAR) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/cross-linux-gcc.cmake b/cmake/platforms/cross-linux-gcc.cmake index 28c228b1..1caf5ae4 100644 --- a/cmake/platforms/cross-linux-gcc.cmake +++ b/cmake/platforms/cross-linux-gcc.cmake @@ -5,4 +5,3 @@ set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER CACHE STRING "") set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY NEVER CACHE STRING "") set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE NEVER CACHE STRING "") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/template-freertos.cmake b/cmake/platforms/template-freertos.cmake index f8ea7d09..7a5238b4 100644 --- a/cmake/platforms/template-freertos.cmake +++ b/cmake/platforms/template-freertos.cmake @@ -9,4 +9,3 @@ set (CMAKE_C_FLAGS "" CACHE STRING "") include (cross-freertos-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/template-generic.cmake b/cmake/platforms/template-generic.cmake index acb1011c..2badd0f4 100644 --- a/cmake/platforms/template-generic.cmake +++ b/cmake/platforms/template-generic.cmake @@ -9,4 +9,3 @@ set (CMAKE_C_FLAGS "" CACHE STRING "") include (cross-generic-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynq7-freertos.cmake b/cmake/platforms/zynq7-freertos.cmake index 6ba5f867..3bf116e9 100644 --- a/cmake/platforms/zynq7-freertos.cmake +++ b/cmake/platforms/zynq7-freertos.cmake @@ -6,4 +6,3 @@ set (CMAKE_C_FLAGS "-mcpu=cortex-a9 -mfpu=vfpv3 -mfloat-abi=hard" CACHE include (cross-freertos-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynq7-generic-iar.cmake b/cmake/platforms/zynq7-generic-iar.cmake index 942abc7c..e5be53c0 100644 --- a/cmake/platforms/zynq7-generic-iar.cmake +++ b/cmake/platforms/zynq7-generic-iar.cmake @@ -2,4 +2,3 @@ set (CMAKE_SYSTEM_PROCESSOR "arm" CACHE STRING "") set (CROSS_SUFFIX "arm" CACHE STRING "") include (cross-generic-iar) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynq7-generic.cmake b/cmake/platforms/zynq7-generic.cmake index 7881f67e..bf13f1ae 100644 --- a/cmake/platforms/zynq7-generic.cmake +++ b/cmake/platforms/zynq7-generic.cmake @@ -6,4 +6,3 @@ set (CMAKE_C_FLAGS "-mcpu=cortex-a9 -mfpu=vfpv3 -mfloat-abi=hard" CACHE include (cross-generic-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynq7-linux.cmake b/cmake/platforms/zynq7-linux.cmake index 6143d90c..85944370 100644 --- a/cmake/platforms/zynq7-linux.cmake +++ b/cmake/platforms/zynq7-linux.cmake @@ -2,4 +2,3 @@ set (CMAKE_SYSTEM_PROCESSOR "arm" CACHE STRING "") set (CROSS_PREFIX "arm-xilinx-linux-gnueabi-" CACHE STRING "") include (cross-linux-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynqmp-a53-freertos.cmake b/cmake/platforms/zynqmp-a53-freertos.cmake index baa3bfaf..ee515afb 100644 --- a/cmake/platforms/zynqmp-a53-freertos.cmake +++ b/cmake/platforms/zynqmp-a53-freertos.cmake @@ -5,4 +5,3 @@ set (CMAKE_C_FLAGS "" CACHE STRING "") include (cross-freertos-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynqmp-a53-generic.cmake b/cmake/platforms/zynqmp-a53-generic.cmake index be4204f4..624b93be 100644 --- a/cmake/platforms/zynqmp-a53-generic.cmake +++ b/cmake/platforms/zynqmp-a53-generic.cmake @@ -5,4 +5,3 @@ set (CMAKE_C_FLAGS "" CACHE STRING "") include (cross-generic-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynqmp-linux.cmake b/cmake/platforms/zynqmp-linux.cmake index 241407fa..e9ed4d9c 100644 --- a/cmake/platforms/zynqmp-linux.cmake +++ b/cmake/platforms/zynqmp-linux.cmake @@ -2,4 +2,3 @@ set (CMAKE_SYSTEM_PROCESSOR "aarch64" CACHE STRING "") set (CROSS_PREFIX "aarch64-linux-gnu-" CACHE STRING "") include (cross-linux-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynqmp-r5-freertos.cmake b/cmake/platforms/zynqmp-r5-freertos.cmake index a756248f..afeadc4b 100644 --- a/cmake/platforms/zynqmp-r5-freertos.cmake +++ b/cmake/platforms/zynqmp-r5-freertos.cmake @@ -5,4 +5,3 @@ set (CMAKE_C_FLAGS "-mfloat-abi=soft -mcpu=cortex-r5" CACHE STRING "") include (cross-freertos-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/cmake/platforms/zynqmp-r5-generic.cmake b/cmake/platforms/zynqmp-r5-generic.cmake index 8a3b0f40..012a2124 100644 --- a/cmake/platforms/zynqmp-r5-generic.cmake +++ b/cmake/platforms/zynqmp-r5-generic.cmake @@ -7,4 +7,3 @@ set (CMAKE_C_FLAGS "-mfloat-abi=hard -mfpu=vfpv3-d16 -mcpu=cortex-r5" C include (cross-generic-gcc) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 667b76ad..094339e1 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -28,4 +28,3 @@ install (FILES ${PROJECT_SOURCE_DIR}/LICENSE.md endif (DOXYGEN_FOUND) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 6b6d3c1c..d45a92ba 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -2,4 +2,3 @@ collect(PROJECT_LIB_DEPS metal) add_subdirectory (system) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt b/examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt index c0576733..2389c7ea 100644 --- a/examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt +++ b/examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt @@ -26,4 +26,3 @@ target_compile_options (${_app0}.elf PUBLIC ${_ec_flgs}) target_link_libraries(${_app0}.elf -Wl,-Map=${_app0}.map -Wl,--gc-sections -T\"${_linker_script}\" -Wl,--start-group ${_deps} -Wl,--end-group) install (TARGETS ${_app0}.elf RUNTIME DESTINATION bin) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/examples/system/generic/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt b/examples/system/generic/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt index c0576733..2389c7ea 100644 --- a/examples/system/generic/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt +++ b/examples/system/generic/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt @@ -26,4 +26,3 @@ target_compile_options (${_app0}.elf PUBLIC ${_ec_flgs}) target_link_libraries(${_app0}.elf -Wl,-Map=${_app0}.map -Wl,--gc-sections -T\"${_linker_script}\" -Wl,--start-group ${_deps} -Wl,--end-group) install (TARGETS ${_app0}.elf RUNTIME DESTINATION bin) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/examples/system/linux/zynqmp/zynqmp_amp_demo/CMakeLists.txt b/examples/system/linux/zynqmp/zynqmp_amp_demo/CMakeLists.txt index 1bdb59b8..ce258747 100644 --- a/examples/system/linux/zynqmp/zynqmp_amp_demo/CMakeLists.txt +++ b/examples/system/linux/zynqmp/zynqmp_amp_demo/CMakeLists.txt @@ -35,5 +35,3 @@ foreach (_app libmetal_amp_demo libmetal_amp_demod) endif (WITH_STATIC_LIB) endforeach (_app) -# vim: expandtab:ts=2:sw=2:smartindent - diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index e9d52767..76113836 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -99,4 +99,3 @@ else (WITH_ZEPHYR) endif (WITH_STATIC_LIB) endif (WITH_ZEPHYR) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/compiler/CMakeLists.txt b/lib/compiler/CMakeLists.txt index 885b88cf..a7a3c40f 100644 --- a/lib/compiler/CMakeLists.txt +++ b/lib/compiler/CMakeLists.txt @@ -2,4 +2,3 @@ add_subdirectory (armcc) add_subdirectory (gcc) add_subdirectory (iar) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/compiler/armcc/CMakeLists.txt b/lib/compiler/armcc/CMakeLists.txt index 9c93d81f..3a6f2d1c 100644 --- a/lib/compiler/armcc/CMakeLists.txt +++ b/lib/compiler/armcc/CMakeLists.txt @@ -1,3 +1,2 @@ collect (PROJECT_LIB_HEADERS errno.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/compiler/gcc/CMakeLists.txt b/lib/compiler/gcc/CMakeLists.txt index 06852b04..7835f4f1 100644 --- a/lib/compiler/gcc/CMakeLists.txt +++ b/lib/compiler/gcc/CMakeLists.txt @@ -1,4 +1,3 @@ collect (PROJECT_LIB_HEADERS atomic.h) collect (PROJECT_LIB_HEADERS compiler.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/compiler/iar/CMakeLists.txt b/lib/compiler/iar/CMakeLists.txt index 3dbec5ce..d8b3ec32 100644 --- a/lib/compiler/iar/CMakeLists.txt +++ b/lib/compiler/iar/CMakeLists.txt @@ -1,4 +1,3 @@ collect (PROJECT_LIB_HEADERS compiler.h) collect (PROJECT_LIB_HEADERS errno.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/CMakeLists.txt b/lib/processor/CMakeLists.txt index eea25097..d542b56a 100644 --- a/lib/processor/CMakeLists.txt +++ b/lib/processor/CMakeLists.txt @@ -1,3 +1,2 @@ add_subdirectory (${PROJECT_PROCESSOR}) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/aarch64/CMakeLists.txt b/lib/processor/aarch64/CMakeLists.txt index 9e9c101f..a20967bf 100644 --- a/lib/processor/aarch64/CMakeLists.txt +++ b/lib/processor/aarch64/CMakeLists.txt @@ -1,4 +1,3 @@ collect (PROJECT_LIB_HEADERS atomic.h) collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/arm/CMakeLists.txt b/lib/processor/arm/CMakeLists.txt index 9e9c101f..a20967bf 100644 --- a/lib/processor/arm/CMakeLists.txt +++ b/lib/processor/arm/CMakeLists.txt @@ -1,4 +1,3 @@ collect (PROJECT_LIB_HEADERS atomic.h) collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/ceva/CMakeLists.txt b/lib/processor/ceva/CMakeLists.txt index c06e9517..11b0f7d5 100644 --- a/lib/processor/ceva/CMakeLists.txt +++ b/lib/processor/ceva/CMakeLists.txt @@ -1,3 +1,2 @@ collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/csky/CMakeLists.txt b/lib/processor/csky/CMakeLists.txt index c06e9517..11b0f7d5 100644 --- a/lib/processor/csky/CMakeLists.txt +++ b/lib/processor/csky/CMakeLists.txt @@ -1,3 +1,2 @@ collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/microblaze/CMakeLists.txt b/lib/processor/microblaze/CMakeLists.txt index 9e9c101f..a20967bf 100644 --- a/lib/processor/microblaze/CMakeLists.txt +++ b/lib/processor/microblaze/CMakeLists.txt @@ -1,4 +1,3 @@ collect (PROJECT_LIB_HEADERS atomic.h) collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/riscv/CMakeLists.txt b/lib/processor/riscv/CMakeLists.txt index c06e9517..11b0f7d5 100644 --- a/lib/processor/riscv/CMakeLists.txt +++ b/lib/processor/riscv/CMakeLists.txt @@ -1,3 +1,2 @@ collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/x86/CMakeLists.txt b/lib/processor/x86/CMakeLists.txt index 9e9c101f..a20967bf 100644 --- a/lib/processor/x86/CMakeLists.txt +++ b/lib/processor/x86/CMakeLists.txt @@ -1,4 +1,3 @@ collect (PROJECT_LIB_HEADERS atomic.h) collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/processor/x86_64/CMakeLists.txt b/lib/processor/x86_64/CMakeLists.txt index 9e9c101f..a20967bf 100644 --- a/lib/processor/x86_64/CMakeLists.txt +++ b/lib/processor/x86_64/CMakeLists.txt @@ -1,4 +1,3 @@ collect (PROJECT_LIB_HEADERS atomic.h) collect (PROJECT_LIB_HEADERS cpu.h) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/CMakeLists.txt b/lib/system/CMakeLists.txt index a932d957..c760dca3 100644 --- a/lib/system/CMakeLists.txt +++ b/lib/system/CMakeLists.txt @@ -1,3 +1 @@ add_subdirectory (${PROJECT_SYSTEM}) - -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/freertos/CMakeLists.txt b/lib/system/freertos/CMakeLists.txt index 98ca318c..1105e8fb 100644 --- a/lib/system/freertos/CMakeLists.txt +++ b/lib/system/freertos/CMakeLists.txt @@ -21,4 +21,3 @@ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) add_subdirectory(${PROJECT_MACHINE}) endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/freertos/template/CMakeLists.txt b/lib/system/freertos/template/CMakeLists.txt index 7d824ce1..6da170df 100644 --- a/lib/system/freertos/template/CMakeLists.txt +++ b/lib/system/freertos/template/CMakeLists.txt @@ -2,4 +2,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES sys.c) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/freertos/xlnx_common/CMakeLists.txt b/lib/system/freertos/xlnx_common/CMakeLists.txt index c443fb20..874901e9 100644 --- a/lib/system/freertos/xlnx_common/CMakeLists.txt +++ b/lib/system/freertos/xlnx_common/CMakeLists.txt @@ -2,4 +2,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES irq.c) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/freertos/zynq7/CMakeLists.txt b/lib/system/freertos/zynq7/CMakeLists.txt index cf12dfe0..097ecd8b 100644 --- a/lib/system/freertos/zynq7/CMakeLists.txt +++ b/lib/system/freertos/zynq7/CMakeLists.txt @@ -3,4 +3,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES sys.c) add_subdirectory(../xlnx_common ${CMAKE_CURRENT_BINARY_DIR}/../xlnx_common) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/freertos/zynqmp_a53/CMakeLists.txt b/lib/system/freertos/zynqmp_a53/CMakeLists.txt index cf12dfe0..097ecd8b 100644 --- a/lib/system/freertos/zynqmp_a53/CMakeLists.txt +++ b/lib/system/freertos/zynqmp_a53/CMakeLists.txt @@ -3,4 +3,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES sys.c) add_subdirectory(../xlnx_common ${CMAKE_CURRENT_BINARY_DIR}/../xlnx_common) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/freertos/zynqmp_r5/CMakeLists.txt b/lib/system/freertos/zynqmp_r5/CMakeLists.txt index cf12dfe0..097ecd8b 100644 --- a/lib/system/freertos/zynqmp_r5/CMakeLists.txt +++ b/lib/system/freertos/zynqmp_r5/CMakeLists.txt @@ -3,4 +3,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES sys.c) add_subdirectory(../xlnx_common ${CMAKE_CURRENT_BINARY_DIR}/../xlnx_common) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/generic/CMakeLists.txt b/lib/system/generic/CMakeLists.txt index 98ca318c..1105e8fb 100644 --- a/lib/system/generic/CMakeLists.txt +++ b/lib/system/generic/CMakeLists.txt @@ -21,4 +21,3 @@ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) add_subdirectory(${PROJECT_MACHINE}) endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/generic/microblaze_generic/CMakeLists.txt b/lib/system/generic/microblaze_generic/CMakeLists.txt index 632af9c8..5556b3dd 100644 --- a/lib/system/generic/microblaze_generic/CMakeLists.txt +++ b/lib/system/generic/microblaze_generic/CMakeLists.txt @@ -8,4 +8,3 @@ if (HAS_XINTC) endif(HAS_XINTC) add_subdirectory(../xlnx_common ${CMAKE_CURRENT_BINARY_DIR}/../xlnx_common) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/generic/template/CMakeLists.txt b/lib/system/generic/template/CMakeLists.txt index 7d824ce1..f52db5e1 100644 --- a/lib/system/generic/template/CMakeLists.txt +++ b/lib/system/generic/template/CMakeLists.txt @@ -1,5 +1,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES sys.c) - -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/generic/xlnx_common/CMakeLists.txt b/lib/system/generic/xlnx_common/CMakeLists.txt index 3dfb1d01..eeec01c8 100644 --- a/lib/system/generic/xlnx_common/CMakeLists.txt +++ b/lib/system/generic/xlnx_common/CMakeLists.txt @@ -5,5 +5,3 @@ collect (PROJECT_LIB_SOURCES irq.c) if ("${PROJECT_MACHINE}" STREQUAL "zynqmp_a53" OR "${PROJECT_MACHINE}" STREQUAL "zynqmp_a72") add_subdirectory(zynqmp_aarch64) endif ("${PROJECT_MACHINE}" STREQUAL "zynqmp_a53" OR "${PROJECT_MACHINE}" STREQUAL "zynqmp_a72") - -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/generic/zynq7/CMakeLists.txt b/lib/system/generic/zynq7/CMakeLists.txt index cf12dfe0..097ecd8b 100644 --- a/lib/system/generic/zynq7/CMakeLists.txt +++ b/lib/system/generic/zynq7/CMakeLists.txt @@ -3,4 +3,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES sys.c) add_subdirectory(../xlnx_common ${CMAKE_CURRENT_BINARY_DIR}/../xlnx_common) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/generic/zynqmp_r5/CMakeLists.txt b/lib/system/generic/zynqmp_r5/CMakeLists.txt index cf12dfe0..097ecd8b 100644 --- a/lib/system/generic/zynqmp_r5/CMakeLists.txt +++ b/lib/system/generic/zynqmp_r5/CMakeLists.txt @@ -3,4 +3,3 @@ collect (PROJECT_LIB_HEADERS sys.h) collect (PROJECT_LIB_SOURCES sys.c) add_subdirectory(../xlnx_common ${CMAKE_CURRENT_BINARY_DIR}/../xlnx_common) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/linux/CMakeLists.txt b/lib/system/linux/CMakeLists.txt index 19e7078e..c34e7a3c 100644 --- a/lib/system/linux/CMakeLists.txt +++ b/lib/system/linux/CMakeLists.txt @@ -17,4 +17,3 @@ collect (PROJECT_LIB_SOURCES shmem.c) collect (PROJECT_LIB_SOURCES time.c) collect (PROJECT_LIB_SOURCES utilities.c) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/nuttx/CMakeLists.txt b/lib/system/nuttx/CMakeLists.txt index 001e428f..3c29a432 100644 --- a/lib/system/nuttx/CMakeLists.txt +++ b/lib/system/nuttx/CMakeLists.txt @@ -17,4 +17,3 @@ collect (PROJECT_LIB_SOURCES irq.c) collect (PROJECT_LIB_SOURCES shmem.c) collect (PROJECT_LIB_SOURCES time.c) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/lib/system/zephyr/CMakeLists.txt b/lib/system/zephyr/CMakeLists.txt index 43cd1b60..cc1fd534 100644 --- a/lib/system/zephyr/CMakeLists.txt +++ b/lib/system/zephyr/CMakeLists.txt @@ -19,5 +19,3 @@ collect (PROJECT_LIB_SOURCES shmem.c) collect (PROJECT_LIB_SOURCES time.c) collect (PROJECT_LIB_SOURCES sys.c) - -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 47846ae3..127df2ca 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -69,4 +69,3 @@ else (WITH_ZEPHYR) add_library (metal-headers STATIC ${_flist}) endif (WITH_ZEPHYR) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/CMakeLists.txt b/test/system/CMakeLists.txt index a932d957..007f42e1 100644 --- a/test/system/CMakeLists.txt +++ b/test/system/CMakeLists.txt @@ -1,3 +1,2 @@ add_subdirectory (${PROJECT_SYSTEM}) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/freertos/CMakeLists.txt b/test/system/freertos/CMakeLists.txt index 3d6c551f..76390485 100644 --- a/test/system/freertos/CMakeLists.txt +++ b/test/system/freertos/CMakeLists.txt @@ -10,4 +10,3 @@ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) add_subdirectory(${PROJECT_MACHINE}) endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/freertos/zynq7/CMakeLists.txt b/test/system/freertos/zynq7/CMakeLists.txt index 6b86f7ff..c33b126e 100644 --- a/test/system/freertos/zynq7/CMakeLists.txt +++ b/test/system/freertos/zynq7/CMakeLists.txt @@ -15,4 +15,3 @@ collect (PROJECT_LIB_DIRS ${_ext_lib_path}) set_property (GLOBAL PROPERTY TEST_LINKER_OPTIONS "-Wl,--gc-sections -Wl,-build-id=none -specs=${CMAKE_CURRENT_SOURCE_DIR}/Xilinx.spec -T\"${CMAKE_CURRENT_SOURCE_DIR}/lscript.ld\" -Wl,--start-group,-lxil,-lfreertos,-lgcc,-lc,--end-group") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/freertos/zynqmp_a53/CMakeLists.txt b/test/system/freertos/zynqmp_a53/CMakeLists.txt index 32a727a4..add87bf2 100644 --- a/test/system/freertos/zynqmp_a53/CMakeLists.txt +++ b/test/system/freertos/zynqmp_a53/CMakeLists.txt @@ -16,4 +16,3 @@ collect (PROJECT_LIB_DIRS ${_ext_lib_path}) set_property (GLOBAL PROPERTY TEST_LINKER_OPTIONS "-Wl,--gc-sections -T\"${CMAKE_CURRENT_SOURCE_DIR}/lscript.ld\" -Wl,--start-group,-lxil,-lfreertos,-lgcc,-lc,--end-group") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/freertos/zynqmp_r5/CMakeLists.txt b/test/system/freertos/zynqmp_r5/CMakeLists.txt index ab52c2f7..fb8358c8 100644 --- a/test/system/freertos/zynqmp_r5/CMakeLists.txt +++ b/test/system/freertos/zynqmp_r5/CMakeLists.txt @@ -15,4 +15,3 @@ collect (PROJECT_LIB_DIRS ${_ext_lib_path}) set_property (GLOBAL PROPERTY TEST_LINKER_OPTIONS "-Wl,--gc-sections -T\"${CMAKE_CURRENT_SOURCE_DIR}/lscript.ld\" -Wl,--start-group,-lxil,-lfreertos,-lgcc,-lc,--end-group") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/generic/CMakeLists.txt b/test/system/generic/CMakeLists.txt index 9a947369..996dafe9 100644 --- a/test/system/generic/CMakeLists.txt +++ b/test/system/generic/CMakeLists.txt @@ -8,4 +8,3 @@ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) add_subdirectory(${PROJECT_MACHINE}) endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/generic/microblaze_generic/CMakeLists.txt b/test/system/generic/microblaze_generic/CMakeLists.txt index 46e0c709..fd0018c6 100644 --- a/test/system/generic/microblaze_generic/CMakeLists.txt +++ b/test/system/generic/microblaze_generic/CMakeLists.txt @@ -18,4 +18,3 @@ collect (PROJECT_LIB_DIRS ${_ext_lib_path}) set_property (GLOBAL PROPERTY TEST_LINKER_OPTIONS "-Wl,--gc-sections -T\"${CMAKE_CURRENT_SOURCE_DIR}/lscript.ld\"") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/generic/zynq7/CMakeLists.txt b/test/system/generic/zynq7/CMakeLists.txt index 8a3035ef..38f56a7f 100644 --- a/test/system/generic/zynq7/CMakeLists.txt +++ b/test/system/generic/zynq7/CMakeLists.txt @@ -17,4 +17,3 @@ collect (PROJECT_LIB_DIRS ${_ext_lib_path}) set_property (GLOBAL PROPERTY TEST_LINKER_OPTIONS "-Wl,--gc-sections -Wl,-build-id=none -specs=${CMAKE_CURRENT_SOURCE_DIR}/Xilinx.spec -T\"${CMAKE_CURRENT_SOURCE_DIR}/lscript.ld\"") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/generic/zynqmp_a53/CMakeLists.txt b/test/system/generic/zynqmp_a53/CMakeLists.txt index bd9f7145..42a926b4 100644 --- a/test/system/generic/zynqmp_a53/CMakeLists.txt +++ b/test/system/generic/zynqmp_a53/CMakeLists.txt @@ -17,4 +17,3 @@ collect (PROJECT_LIB_DIRS ${_ext_lib_path}) set_property (GLOBAL PROPERTY TEST_LINKER_OPTIONS "-Wl,--gc-sections -T\"${CMAKE_CURRENT_SOURCE_DIR}/lscript.ld\"") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/generic/zynqmp_r5/CMakeLists.txt b/test/system/generic/zynqmp_r5/CMakeLists.txt index 4c307591..179e4b7e 100644 --- a/test/system/generic/zynqmp_r5/CMakeLists.txt +++ b/test/system/generic/zynqmp_r5/CMakeLists.txt @@ -22,4 +22,3 @@ collect (PROJECT_LIB_DIRS ${_ext_lib_path}) set_property (GLOBAL PROPERTY TEST_LINKER_OPTIONS "-Wl,--gc-sections -T\"${CMAKE_CURRENT_SOURCE_DIR}/lscript.ld\"") -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/linux/CMakeLists.txt b/test/system/linux/CMakeLists.txt index 4564fd77..1e259d8b 100644 --- a/test/system/linux/CMakeLists.txt +++ b/test/system/linux/CMakeLists.txt @@ -12,4 +12,3 @@ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) add_subdirectory(${PROJECT_MACHINE}) endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/linux/zynq/CMakeLists.txt b/test/system/linux/zynq/CMakeLists.txt index b21863f5..ec7b3bfb 100644 --- a/test/system/linux/zynq/CMakeLists.txt +++ b/test/system/linux/zynq/CMakeLists.txt @@ -1,3 +1,2 @@ collect (PROJECT_LIB_TESTS device.c) -# vim: expandtab:ts=2:sw=2:smartindent diff --git a/test/system/zephyr/CMakeLists.txt b/test/system/zephyr/CMakeLists.txt index 14b792c8..43f19557 100644 --- a/test/system/zephyr/CMakeLists.txt +++ b/test/system/zephyr/CMakeLists.txt @@ -7,4 +7,3 @@ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) add_subdirectory(${PROJECT_MACHINE}) endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE}) -# vim: expandtab:ts=2:sw=2:smartindent