Change boards/renesas/m32262f8 to boards/hc/m16c

to fix the follow error:
Refresh skp16c26/ostest
LN: include/arch/board to /workspace/mirtos/nuttx/boards/renesas/m32262f8/skp16c26/include
LN: include/arch/chip to arch/renesas/include/m32262f8
This commit is contained in:
Xiang Xiao 2020-01-23 04:34:28 +08:00 committed by Gregory Nutt
parent 3db775f0d0
commit 9a8ff07716
20 changed files with 18 additions and 19 deletions

View File

@ -6746,7 +6746,7 @@ BFD_ASSERT (*plt_offset != (bfd_vma) -1);
</pre></ul> </pre></ul>
<p> <p>
No workaround is known at this time. This is a show stopper for M16C. No workaround is known at this time. This is a show stopper for M16C.
Refer to the NuttX board <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/renesas/m32262f8/skp16c26/README.txt" target="_blank">README</a> file for further information. Refer to the NuttX board <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/renesas/m16c/skp16c26/README.txt" target="_blank">README</a> file for further information.
</p> </p>
</ul> </ul>
</td> </td>

View File

@ -440,9 +440,9 @@ nuttx/
| | `- or1k/ | | `- or1k/
| | `- <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/or1k/mor1kx/or1k/README.txt" target="_blank"><b><i>README.txt</i></b></a> | | `- <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/or1k/mor1kx/or1k/README.txt" target="_blank"><b><i>README.txt</i></b></a>
| |- renesas/ | |- renesas/
| | |- m32262f8/ | | |- m16c/
| | | `- skp16c26/ | | | `- skp16c26/
| | | `- <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/renesas/m32262f8/skp16c26/README.txt" target="_blank"><b><i>README.txt</i></b></a> | | | `- <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/renesas/m16c/skp16c26/README.txt" target="_blank"><b><i>README.txt</i></b></a>
| | `-sh7032/ | | `-sh7032/
| | `- us7032evb1/ | | `- us7032evb1/
| | `- <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/renesas/sh7032/us7032evb1/README.txt" target="_blank"><b><i>README.txt</i></b></a> | | `- <a href="https://bitbucket.org/nuttx/nuttx/src/master/boards/renesas/sh7032/us7032evb1/README.txt" target="_blank"><b><i>README.txt</i></b></a>

View File

@ -2152,7 +2152,7 @@ nuttx/
| | `- or1k/ | | `- or1k/
| | `- README.txt | | `- README.txt
| |- renesas/ | |- renesas/
| | |- m32262f8/ | | |- m16c/
| | | `- skp16c26/ | | | `- skp16c26/
| | | `- README.txt | | | `- README.txt
| | `-sh7032/ | | `-sh7032/

View File

@ -2753,7 +2753,7 @@ if ARCH_BOARD_OR1K
source "boards/or1k/mor1kx/or1k/Kconfig" source "boards/or1k/mor1kx/or1k/Kconfig"
endif endif
if ARCH_BOARD_SKP16C26 if ARCH_BOARD_SKP16C26
source "boards/renesas/m32262f8/skp16c26/Kconfig" source "boards/renesas/m16c/skp16c26/Kconfig"
endif endif
if ARCH_BOARD_US7032EVB1 if ARCH_BOARD_US7032EVB1
source "boards/renesas/sh7032/us7032evb1/Kconfig" source "boards/renesas/sh7032/us7032evb1/Kconfig"

View File

@ -717,7 +717,7 @@ boards/arm/stm32/shenzhou
This is the port of NuttX to the Shenzhou development board from This is the port of NuttX to the Shenzhou development board from
www.armjishu.com. This board features the STMicro STM32F107VCT MCU. www.armjishu.com. This board features the STMicro STM32F107VCT MCU.
boards/renesas/m32262f8/skp16c26 boards/renesas/m16c/skp16c26
Renesas M16C processor on the Renesas SKP16C26 StarterKit. This port Renesas M16C processor on the Renesas SKP16C26 StarterKit. This port
uses the GNU m32c toolchain. STATUS: The port is complete but untested uses the GNU m32c toolchain. STATUS: The port is complete but untested
due to issues with compiler internal errors. due to issues with compiler internal errors.

View File

@ -1,4 +1,4 @@
boards/renesas/m32262f8/skp16c26/README.txt boards/renesas/m16c/skp16c26/README.txt
^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1. The buildroot package can be used to build an M16C toolchain. The toolchain 1. The buildroot package can be used to build an M16C toolchain. The toolchain

View File

@ -9,7 +9,7 @@
CONFIG_ARCH="renesas" CONFIG_ARCH="renesas"
CONFIG_ARCH_BOARD="skp16c26" CONFIG_ARCH_BOARD="skp16c26"
CONFIG_ARCH_BOARD_SKP16C26=y CONFIG_ARCH_BOARD_SKP16C26=y
CONFIG_ARCH_CHIP="m32262f8" CONFIG_ARCH_CHIP="m16c"
CONFIG_ARCH_CHIP_M30262F8=y CONFIG_ARCH_CHIP_M30262F8=y
CONFIG_ARCH_INTERRUPTSTACK=128 CONFIG_ARCH_INTERRUPTSTACK=128
CONFIG_ARCH_RENESAS=y CONFIG_ARCH_RENESAS=y

View File

@ -1,6 +1,5 @@
/**************************************************************************** /****************************************************************************
* boards/renesas/m32262f8/skp16c26/include/board.h * boards/renesas/m16c/skp16c26/include/board.h
* arch/board/board.h
* *
* Copyright (C) 2009 Gregory Nutt. All rights reserved. * Copyright (C) 2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# boards/renesas/m32262f8/skp16c26/scripts/Make.defs # boards/renesas/m16c/skp16c26/scripts/Make.defs
# #
# Copyright (C) 2009, 2017 Gregory Nutt. All rights reserved. # Copyright (C) 2009, 2017 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* boards/renesas/m32262f8/skp16c26/scripts/skp16c26.ld * boards/renesas/m16c/skp16c26/scripts/skp16c26.ld
* *
* Copyright (C) 2009, 2017 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2017 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# boards/renesas/m32262f8/skp16c26/src/Makefile # boards/renesas/m16c/skp16c26/src/Makefile
# #
# Copyright (C) 2009, 2012 Gregory Nutt. All rights reserved. # Copyright (C) 2009, 2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* boards/renesas/m32262f8/skp16c26/src/m16c_buttons.c * boards/renesas/m16c/skp16c26/src/m16c_buttons.c
* *
* Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* boards/renesas/m32262f8/scp16c26/src/m16c_lcd.c * boards/renesas/m16c/scp16c26/src/m16c_lcd.c
* *
* Copyright (C) 2009 Gregory Nutt. All rights reserved. * Copyright (C) 2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* boards/renesas/m32262f8/scp16c26/src/m16c_lcdconsole.c * boards/renesas/m16c/scp16c26/src/m16c_lcdconsole.c
* *
* Copyright (C) 2009, 2012 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* boards/renesas/m32262f8/scp16c26/src/m16c_leds.c * boards/renesas/m16c/scp16c26/src/m16c_leds.c
* *
* Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* boards/renesas/m32262f8/skp16c26/src/scp16c26.h * boards/renesas/m16c/skp16c26/src/scp16c26.h
* *
* Copyright (C) 2009 Gregory Nutt. All rights reserved. * Copyright (C) 2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -233,7 +233,7 @@ interface) that makes then less re-usable:
Alphnumeric/segment LCD Displays: Alphnumeric/segment LCD Displays:
boards/renesas/m32262f8/skp16c26/src/m16c_lcd.c. Untested alphanumeric boards/renesas/m16c/skp16c26/src/m16c_lcd.c. Untested alphanumeric
LCD driver. LCD driver.
boards/mips/pic32mx/sure-pic32mx/src/pic32_lcd1602.c. An LCD1602 segment boards/mips/pic32mx/sure-pic32mx/src/pic32_lcd1602.c. An LCD1602 segment
LCD. This is a bit-bang version of the driver and appears to LCD. This is a bit-bang version of the driver and appears to