Delete trailing whitespace, extra newlines, to quiet git hooks and add an extra = so that it does not appear to git as a merge conflict marker.

This commit is contained in:
mcsauder 2019-04-02 11:26:57 -06:00 committed by Daniel Agar
parent 1250fb1b48
commit e6f1a2db12
5 changed files with 7 additions and 8 deletions

View File

@ -15,7 +15,7 @@ CONFIG:
short: px4_sitl (Address Sanitizer)
buildType: AddressSanitizer
settings:
CONFIG: px4_sitl_default
CONFIG: px4_sitl_default
px4_fmu-v2_default:
short: px4_fmu-v2
buildType: MinSizeRel

View File

@ -28,4 +28,3 @@ if ! param compare SDLOG_MODE -1
then
logger start -b ${LOGGER_BUF} -t ${LOGGER_ARGS}
fi

View File

@ -59,7 +59,7 @@ OUTPUT_ARCH(arm)
ENTRY(__start) /* treat __start as the anchor for dead code stripping */
EXTERN(_vectors) /* force the vectors to be included in the output */
/*
/*
* Ensure that abort() is present in the final object. The exception handling
* code pulled in by libgcc.a requires it (and that code cannot be easily avoided).
*/

View File

@ -50,7 +50,7 @@ OUTPUT_ARCH(arm)
ENTRY(__start) /* treat __start as the anchor for dead code stripping */
EXTERN(_vectors) /* force the vectors to be included in the output */
/*
/*
* Ensure that abort() is present in the final object. The exception handling
* code pulled in by libgcc.a requires it (and that code cannot be easily avoided).
*/
@ -61,10 +61,10 @@ SECTIONS
.text : {
_stext = ABSOLUTE(.);
*(.vectors)
*(.text .text.*)
*(.text .text.*)
*(.fixup)
*(.gnu.warning)
*(.rodata .rodata.*)
*(.rodata .rodata.*)
*(.gnu.linkonce.t.*)
*(.glue_7)
*(.glue_7t)
@ -72,7 +72,7 @@ SECTIONS
*(.gcc_except_table)
*(.gnu.linkonce.r.*)
_etext = ABSOLUTE(.);
/*
/*
* This is a hack to make the newlib libm __errno() call
* use the NuttX get_errno_ptr() function.
*/

View File

@ -43,7 +43,7 @@ A few different modes are available:
Running
=======
========
menuconfig.py can be run either as a standalone executable or by calling the
menuconfig() function with an existing Kconfig instance. The second option is a