From 9329034a4f5eb802dc24f8b4dd45add4f307fe4f Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 4 Feb 2016 12:26:38 -0600 Subject: [PATCH] Rename files containing board_app_initialize from xyz_nsh.c to xyz_appinit.c --- configs/pcduino-a10/src/Makefile | 2 +- configs/stm3210e-eval/src/stm32_usbmsc.c | 2 +- configs/stm32ldiscovery/src/stm32_appinit.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/pcduino-a10/src/Makefile b/configs/pcduino-a10/src/Makefile index 347805555e..9ec24b5a19 100644 --- a/configs/pcduino-a10/src/Makefile +++ b/configs/pcduino-a10/src/Makefile @@ -39,7 +39,7 @@ ASRCS = CSRCS = a1x_boot.c a1x_leds.c ifeq ($(CONFIG_LIB_BOARDCTL),y) -CSRCS += a1x_nsh.c +CSRCS += a1x_appinit.c endif ifeq ($(CONFIG_ARCH_BUTTONS),y) diff --git a/configs/stm3210e-eval/src/stm32_usbmsc.c b/configs/stm3210e-eval/src/stm32_usbmsc.c index 58520e4c4c..18ee15415a 100644 --- a/configs/stm3210e-eval/src/stm32_usbmsc.c +++ b/configs/stm3210e-eval/src/stm32_usbmsc.c @@ -89,7 +89,7 @@ int usbmsc_archinitialize(void) { /* 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. */ diff --git a/configs/stm32ldiscovery/src/stm32_appinit.c b/configs/stm32ldiscovery/src/stm32_appinit.c index 6847a5009a..6141247b0e 100644 --- a/configs/stm32ldiscovery/src/stm32_appinit.c +++ b/configs/stm32ldiscovery/src/stm32_appinit.c @@ -1,6 +1,6 @@ /**************************************************************************** - * config/stm32ldiscovery/src/up_nsh.c - * arch/arm/src/board/up_nsh.c + * config/stm32ldiscovery/src/stm32_appinit.c + * arch/arm/src/board/stm32_appinit.c * * Copyright (C) 2013 Gregory Nutt. All rights reserved. * Author: Gregory Nutt