Change space to tab and help to ---help--- in Kconfig files.
This commit is contained in:
parent
6a0545ec6b
commit
3bc62f1ccc
32 changed files with 254 additions and 254 deletions
12
arch/Kconfig
12
arch/Kconfig
|
@ -941,7 +941,7 @@ menu "Boot Memory Configuration"
|
||||||
config RAM_START
|
config RAM_START
|
||||||
hex "Primary RAM start address (physical)"
|
hex "Primary RAM start address (physical)"
|
||||||
default 0x0
|
default 0x0
|
||||||
help
|
---help---
|
||||||
The physical start address of primary installed RAM. "Primary" RAM
|
The physical start address of primary installed RAM. "Primary" RAM
|
||||||
refers to the RAM that you link program code into. If program code
|
refers to the RAM that you link program code into. If program code
|
||||||
does not execute out of RAM but from FLASH, then you may designate
|
does not execute out of RAM but from FLASH, then you may designate
|
||||||
|
@ -951,7 +951,7 @@ config RAM_VSTART
|
||||||
hex "Primary RAM start address (virtual)"
|
hex "Primary RAM start address (virtual)"
|
||||||
default 0x0
|
default 0x0
|
||||||
depends on ARCH_USE_MMU
|
depends on ARCH_USE_MMU
|
||||||
help
|
---help---
|
||||||
The virtual start address of installed primary RAM. "Primary" RAM
|
The virtual start address of installed primary RAM. "Primary" RAM
|
||||||
refers to the RAM that you link program code into. If program code
|
refers to the RAM that you link program code into. If program code
|
||||||
does not execute out of RAM but from FLASH, then you may designate
|
does not execute out of RAM but from FLASH, then you may designate
|
||||||
|
@ -960,7 +960,7 @@ config RAM_VSTART
|
||||||
config RAM_SIZE
|
config RAM_SIZE
|
||||||
int "Primary RAM size"
|
int "Primary RAM size"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
The size in bytes of the installed primary RAM. "Primary" RAM
|
The size in bytes of the installed primary RAM. "Primary" RAM
|
||||||
refers to the RAM that you link program code into. If program code
|
refers to the RAM that you link program code into. If program code
|
||||||
does not execute out of RAM but from FLASH, then you may designate
|
does not execute out of RAM but from FLASH, then you may designate
|
||||||
|
@ -971,21 +971,21 @@ if BOOT_RUNFROMFLASH && ARCH_USE_MMU
|
||||||
config FLASH_START
|
config FLASH_START
|
||||||
hex "Boot FLASH start address (physical)"
|
hex "Boot FLASH start address (physical)"
|
||||||
default 0x0
|
default 0x0
|
||||||
help
|
---help---
|
||||||
The physical start address of installed boot FLASH. "Boot" FLASH
|
The physical start address of installed boot FLASH. "Boot" FLASH
|
||||||
refers to the FLASH that you link program code into.
|
refers to the FLASH that you link program code into.
|
||||||
|
|
||||||
config FLASH_VSTART
|
config FLASH_VSTART
|
||||||
hex "Boot FLASH start address (virtual)"
|
hex "Boot FLASH start address (virtual)"
|
||||||
default 0x0
|
default 0x0
|
||||||
help
|
---help---
|
||||||
The virtual start address of installed boot FLASH. "Boot" FLASH
|
The virtual start address of installed boot FLASH. "Boot" FLASH
|
||||||
refers to the FLASH that you link program code into.
|
refers to the FLASH that you link program code into.
|
||||||
|
|
||||||
config FLASH_SIZE
|
config FLASH_SIZE
|
||||||
int "Boot FLASH size"
|
int "Boot FLASH size"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
The size in bytes of the installed boot FLASH. "Boot" FLASH
|
The size in bytes of the installed boot FLASH. "Boot" FLASH
|
||||||
refers to the FLASH that you link program code into.
|
refers to the FLASH that you link program code into.
|
||||||
|
|
||||||
|
|
|
@ -269,39 +269,39 @@ menu "UART0 Configuration"
|
||||||
config Z180_UART0_RXBUFSIZE
|
config Z180_UART0_RXBUFSIZE
|
||||||
int "Receive Buffer Size"
|
int "Receive Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered as they are received. This specifies
|
Characters are buffered as they are received. This specifies
|
||||||
the size of the receive buffer.
|
the size of the receive buffer.
|
||||||
|
|
||||||
config Z180_UART0_TXBUFSIZE
|
config Z180_UART0_TXBUFSIZE
|
||||||
int "Transmit Buffer Size"
|
int "Transmit Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered before being sent. This specifies
|
Characters are buffered before being sent. This specifies
|
||||||
the size of the transmit buffer.
|
the size of the transmit buffer.
|
||||||
|
|
||||||
config Z180_UART0_BAUD
|
config Z180_UART0_BAUD
|
||||||
int "Baud Rate"
|
int "Baud Rate"
|
||||||
default 9600
|
default 9600
|
||||||
help
|
---help---
|
||||||
The configured BAUD of the SCC.
|
The configured BAUD of the SCC.
|
||||||
|
|
||||||
config Z180_UART0_BITS
|
config Z180_UART0_BITS
|
||||||
int "Character Size"
|
int "Character Size"
|
||||||
default 8
|
default 8
|
||||||
help
|
---help---
|
||||||
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
||||||
|
|
||||||
config Z180_UART0_PARITY
|
config Z180_UART0_PARITY
|
||||||
int "Parity Setting"
|
int "Parity Setting"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
0=no parity, 1=odd parity, 2=even parity
|
0=no parity, 1=odd parity, 2=even parity
|
||||||
|
|
||||||
config Z180_UART0_2STOP
|
config Z180_UART0_2STOP
|
||||||
int "use 2 stop bits"
|
int "use 2 stop bits"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
1=Two stop bits
|
1=Two stop bits
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -312,39 +312,39 @@ menu "UART1 Configuration"
|
||||||
config Z180_UART1_RXBUFSIZE
|
config Z180_UART1_RXBUFSIZE
|
||||||
int "Receive Buffer Size"
|
int "Receive Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered as they are received. This specifies
|
Characters are buffered as they are received. This specifies
|
||||||
the size of the receive buffer.
|
the size of the receive buffer.
|
||||||
|
|
||||||
config Z180_UART1_TXBUFSIZE
|
config Z180_UART1_TXBUFSIZE
|
||||||
int "Transmit Buffer Size"
|
int "Transmit Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered before being sent. This specifies
|
Characters are buffered before being sent. This specifies
|
||||||
the size of the transmit buffer.
|
the size of the transmit buffer.
|
||||||
|
|
||||||
config Z180_UART1_BAUD
|
config Z180_UART1_BAUD
|
||||||
int "Baud Rate"
|
int "Baud Rate"
|
||||||
default 9600
|
default 9600
|
||||||
help
|
---help---
|
||||||
The configured BAUD of the SCC.
|
The configured BAUD of the SCC.
|
||||||
|
|
||||||
config Z180_UART1_BITS
|
config Z180_UART1_BITS
|
||||||
int "Character Size"
|
int "Character Size"
|
||||||
default 8
|
default 8
|
||||||
help
|
---help---
|
||||||
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
||||||
|
|
||||||
config Z180_UART1_PARITY
|
config Z180_UART1_PARITY
|
||||||
int "Parity Setting"
|
int "Parity Setting"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
0=no parity, 1=odd parity, 2=even parity
|
0=no parity, 1=odd parity, 2=even parity
|
||||||
|
|
||||||
config Z180_UART1_2STOP
|
config Z180_UART1_2STOP
|
||||||
int "use 2 stop bits"
|
int "use 2 stop bits"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
1=Two stop bits
|
1=Two stop bits
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -355,39 +355,39 @@ menu "SCC Configuration"
|
||||||
config Z180_SCC_RXBUFSIZE
|
config Z180_SCC_RXBUFSIZE
|
||||||
int "Receive Buffer Size"
|
int "Receive Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered as they are received. This specifies
|
Characters are buffered as they are received. This specifies
|
||||||
the size of the receive buffer.
|
the size of the receive buffer.
|
||||||
|
|
||||||
config Z180_SCC_TXBUFSIZE
|
config Z180_SCC_TXBUFSIZE
|
||||||
int "Transmit Buffer Size"
|
int "Transmit Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered before being sent. This specifies
|
Characters are buffered before being sent. This specifies
|
||||||
the size of the transmit buffer.
|
the size of the transmit buffer.
|
||||||
|
|
||||||
config Z180_SCC_BAUD
|
config Z180_SCC_BAUD
|
||||||
int "Baud Rate"
|
int "Baud Rate"
|
||||||
default 9600
|
default 9600
|
||||||
help
|
---help---
|
||||||
The configured BAUD of the SCC.
|
The configured BAUD of the SCC.
|
||||||
|
|
||||||
config Z180_SCC_BITS
|
config Z180_SCC_BITS
|
||||||
int "Character Size"
|
int "Character Size"
|
||||||
default 8
|
default 8
|
||||||
help
|
---help---
|
||||||
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
||||||
|
|
||||||
config Z180_SCC_PARITY
|
config Z180_SCC_PARITY
|
||||||
int "Parity Setting"
|
int "Parity Setting"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
0=no parity, 1=odd parity, 2=even parity
|
0=no parity, 1=odd parity, 2=even parity
|
||||||
|
|
||||||
config Z180_SCC_2STOP
|
config Z180_SCC_2STOP
|
||||||
int "use 2 stop bits"
|
int "use 2 stop bits"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
1=Two stop bits
|
1=Two stop bits
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -398,39 +398,39 @@ menu "ESCC Channel A Configuration"
|
||||||
config Z180_ESCCA_RXBUFSIZE
|
config Z180_ESCCA_RXBUFSIZE
|
||||||
int "Receive Buffer Size"
|
int "Receive Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered as they are received. This specifies
|
Characters are buffered as they are received. This specifies
|
||||||
the size of the receive buffer.
|
the size of the receive buffer.
|
||||||
|
|
||||||
config Z180_ESCCA_TXBUFSIZE
|
config Z180_ESCCA_TXBUFSIZE
|
||||||
int "Transmit Buffer Size"
|
int "Transmit Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered before being sent. This specifies
|
Characters are buffered before being sent. This specifies
|
||||||
the size of the transmit buffer.
|
the size of the transmit buffer.
|
||||||
|
|
||||||
config Z180_ESCCA_BAUD
|
config Z180_ESCCA_BAUD
|
||||||
int "Baud Rate"
|
int "Baud Rate"
|
||||||
default 9600
|
default 9600
|
||||||
help
|
---help---
|
||||||
The configured BAUD of the SCC.
|
The configured BAUD of the SCC.
|
||||||
|
|
||||||
config Z180_ESCCA_BITS
|
config Z180_ESCCA_BITS
|
||||||
int "Character Size"
|
int "Character Size"
|
||||||
default 8
|
default 8
|
||||||
help
|
---help---
|
||||||
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
||||||
|
|
||||||
config Z180_ESCCA_PARITY
|
config Z180_ESCCA_PARITY
|
||||||
int "Parity Setting"
|
int "Parity Setting"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
0=no parity, 1=odd parity, 2=even parity
|
0=no parity, 1=odd parity, 2=even parity
|
||||||
|
|
||||||
config Z180_ESCCA_2STOP
|
config Z180_ESCCA_2STOP
|
||||||
int "use 2 stop bits"
|
int "use 2 stop bits"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
1=Two stop bits
|
1=Two stop bits
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -441,39 +441,39 @@ menu "ESCC Channel B Configuration"
|
||||||
config Z180_ESCCB_RXBUFSIZE
|
config Z180_ESCCB_RXBUFSIZE
|
||||||
int "Receive Buffer Size"
|
int "Receive Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered as they are received. This specifies
|
Characters are buffered as they are received. This specifies
|
||||||
the size of the receive buffer.
|
the size of the receive buffer.
|
||||||
|
|
||||||
config Z180_ESCCB_TXBUFSIZE
|
config Z180_ESCCB_TXBUFSIZE
|
||||||
int "Transmit Buffer Size"
|
int "Transmit Buffer Size"
|
||||||
default 64
|
default 64
|
||||||
help
|
---help---
|
||||||
Characters are buffered before being sent. This specifies
|
Characters are buffered before being sent. This specifies
|
||||||
the size of the transmit buffer.
|
the size of the transmit buffer.
|
||||||
|
|
||||||
config Z180_ESCCB_BAUD
|
config Z180_ESCCB_BAUD
|
||||||
int "Baud Rate"
|
int "Baud Rate"
|
||||||
default 9600
|
default 9600
|
||||||
help
|
---help---
|
||||||
The configured BAUD of the SCC.
|
The configured BAUD of the SCC.
|
||||||
|
|
||||||
config Z180_ESCCB_BITS
|
config Z180_ESCCB_BITS
|
||||||
int "Character Size"
|
int "Character Size"
|
||||||
default 8
|
default 8
|
||||||
help
|
---help---
|
||||||
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
The number of bits in one character. Must be either 5, 6, 7, or 8.
|
||||||
|
|
||||||
config Z180_ESCCB_PARITY
|
config Z180_ESCCB_PARITY
|
||||||
int "Parity Setting"
|
int "Parity Setting"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
0=no parity, 1=odd parity, 2=even parity
|
0=no parity, 1=odd parity, 2=even parity
|
||||||
|
|
||||||
config Z180_ESCCB_2STOP
|
config Z180_ESCCB_2STOP
|
||||||
int "use 2 stop bits"
|
int "use 2 stop bits"
|
||||||
default 0
|
default 0
|
||||||
help
|
---help---
|
||||||
1=Two stop bits
|
1=Two stop bits
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
Loading…
Reference in a new issue