From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Chen Date: Thu, 20 Sep 2018 11:15:08 +0800 Subject: [U-Boot] [RESEND PATCH v2 01/15] riscv: kconfig: Normalize architecture name spelling In-Reply-To: <752D002CFF5D0F4FA35C0100F1D73F3FA2F93D39@ATCPCS16.andestech.com> References: <1536641694-4200-1-git-send-email-bmeng.cn@gmail.com> <1536641694-4200-2-git-send-email-bmeng.cn@gmail.com> <752D002CFF5D0F4FA35C0100F1D73F3FA2F93D39@ATCPCS16.andestech.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de > From: Bin Meng [mailto:bmeng.cn at gmail.com] > Sent: Tuesday, September 11, 2018 12:55 PM > To: Rick Jian-Zhi Chen(陳建志); U-Boot Mailing List > Cc: Lukas Auer > Subject: [RESEND PATCH v2 01/15] riscv: kconfig: Normalize architecture name > spelling > > It's RISC-V that is the official name, not RISCV. > > Signed-off-by: Bin Meng > --- > > Changes in v2: None > > arch/Kconfig | 2 +- > arch/riscv/Kconfig | 6 +++--- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/arch/Kconfig b/arch/Kconfig index bf1b4a9..42c23b5 100644 > --- a/arch/Kconfig > +++ b/arch/Kconfig > @@ -60,7 +60,7 @@ config PPC > select SYS_BOOT_GET_KBD > > config RISCV > - bool "riscv architecture" > + bool "RISC-V architecture" > select SUPPORT_OF_CONTROL > > config SANDBOX > diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig index 20a43d8..49f87de > 100644 > --- a/arch/riscv/Kconfig > +++ b/arch/riscv/Kconfig > @@ -1,4 +1,4 @@ > -menu "RISCV architecture" > +menu "RISC-V architecture" > depends on RISCV > > config SYS_ARCH > @@ -20,13 +20,13 @@ choice > default CPU_RISCV_32 > > config CPU_RISCV_32 > - bool "RISCV 32 bit" > + bool "RISC-V 32-bit" > select 32BIT > help > Choose this option to build an U-Boot for RISCV32 architecture. > > config CPU_RISCV_64 > - bool "RISCV 64 bit" > + bool "RISC-V 64-bit" > select 64BIT > help > Choose this option to build an U-Boot for RISCV64 architecture. > -- > 2.7.4 Reviewed-by: Rick Chen