Kconfig.zephyr: help text fixes

The text "need by some platforms" in various CONFIG_BUILD_OUTPUT_FOO
help is grammatically incorrect. Fix this by rewording.

Move 'config BUILD_NO_GAP_FILL' to before the list of 'config
BUILD_OUTPUT_FOO' definitions instead of sandwiching it inside.

Fix the extension of the stripped binary.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2020-08-06 14:57:17 -07:00 committed by Anas Nashif
parent 5423b80163
commit f39fdc410d

View file

@ -289,39 +289,40 @@ config OUTPUT_PRINT_MEMORY_USAGE
ram_report and ram_report and
https://sourceware.org/binutils/docs/ld/MEMORY.html https://sourceware.org/binutils/docs/ld/MEMORY.html
config BUILD_NO_GAP_FILL
bool "Don't fill gaps in generated hex/bin/s19 files."
config BUILD_OUTPUT_HEX config BUILD_OUTPUT_HEX
bool "Build a binary in HEX format" bool "Build a binary in HEX format"
help help
Build a binary in HEX format. This will build a zephyr.hex file need Build an Intel HEX binary zephyr/zephyr.hex in the build directory.
by some platforms. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
config BUILD_OUTPUT_BIN config BUILD_OUTPUT_BIN
bool "Build a binary in BIN format" bool "Build a binary in BIN format"
default y default y
help help
Build a binary in BIN format. This will build a zephyr.bin file need Build a "raw" binary zephyr/zephyr.bin in the build directory.
by some platforms. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
config BUILD_OUTPUT_EXE config BUILD_OUTPUT_EXE
bool "Build a binary in ELF format with .exe extension" bool "Build a binary in ELF format with .exe extension"
help help
Build a binary in ELF format that can run in the host system. This Build an ELF binary that can run in the host system at
will build a zephyr.exe file. zephyr/zephyr.exe in the build directory.
The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
config BUILD_OUTPUT_S19 config BUILD_OUTPUT_S19
bool "Build a binary in S19 format" bool "Build a binary in S19 format"
help help
Build a binary in S19 format. This will build a zephyr.s19 file need Build an S19 binary zephyr/zephyr.s19 in the build directory.
by some platforms. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
config BUILD_NO_GAP_FILL
bool "Don't fill gaps in generated hex/bin/s19 files."
config BUILD_OUTPUT_STRIPPED config BUILD_OUTPUT_STRIPPED
bool "Build a stripped binary" bool "Build a stripped binary"
help help
Build a stripped binary. This will build a zephyr.stripped file need Build a stripped binary zephyr/zephyr.strip in the build directory.
by some platforms. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
config APPLICATION_DEFINED_SYSCALL config APPLICATION_DEFINED_SYSCALL
bool "Scan application folder for any syscall definition" bool "Scan application folder for any syscall definition"