Rename files containing board_app_initialize from xyz_nsh.c to xyz_appinit.c

This commit is contained in:
Gregory Nutt
2016-02-04 12:26:38 -06:00
parent 9ed7d56a18
commit 9329034a4f
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ ASRCS =
CSRCS = a1x_boot.c a1x_leds.c CSRCS = a1x_boot.c a1x_leds.c
ifeq ($(CONFIG_LIB_BOARDCTL),y) ifeq ($(CONFIG_LIB_BOARDCTL),y)
CSRCS += a1x_nsh.c CSRCS += a1x_appinit.c
endif endif
ifeq ($(CONFIG_ARCH_BUTTONS),y) ifeq ($(CONFIG_ARCH_BUTTONS),y)
+1 -1
View File
@@ -89,7 +89,7 @@
int usbmsc_archinitialize(void) int usbmsc_archinitialize(void)
{ {
/* If system/usbmsc is built as an NSH command, then SD slot should /* If system/usbmsc is built as an NSH command, then SD slot should
* already have been initialized in board_app_initialize() (see up_nsh.c). * already have been initialized in board_app_initialize() (see stm32_appinit.c).
* In this case, there is nothing further to be done here. * In this case, there is nothing further to be done here.
*/ */
+2 -2
View File
@@ -1,6 +1,6 @@
/**************************************************************************** /****************************************************************************
* config/stm32ldiscovery/src/up_nsh.c * config/stm32ldiscovery/src/stm32_appinit.c
* arch/arm/src/board/up_nsh.c * arch/arm/src/board/stm32_appinit.c
* *
* Copyright (C) 2013 Gregory Nutt. All rights reserved. * Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>