mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
Rename files containing board_app_initialize from xyz_nsh.c to xyz_appinit.c
This commit is contained in:
@@ -62,7 +62,7 @@ endif
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += sam_nsh.c
|
CSRCS += sam_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/arduino-due/src/sam_nsh.c
|
* config/arduino-due/src/sam_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>
|
||||||
@@ -58,7 +58,7 @@ CSRCS += stm32_usb.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += stm32_nsh.c
|
CSRCS += stm32_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_MTD_W25),y)
|
ifeq ($(CONFIG_MTD_W25),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/cloudctrl/src/stm32_nsh.c
|
* config/cloudctrl/src/stm32_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -72,7 +72,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 initized in board_app_initialize() (see stm32_nsh.c).
|
* already have been initized 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.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = m9s12_boot.c m9s12_leds.c m9s12_buttons.c m9s12_spi.c
|
CSRCS = m9s12_boot.c m9s12_leds.c m9s12_buttons.c m9s12_spi.c
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += m9s12_nsh.c
|
CSRCS += m9s12_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/demo9s12ne64/src/m9s12_nsh.c
|
* config/demo9s12ne64/src/m9s12_appinit.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>
|
||||||
@@ -55,7 +55,7 @@ CSRCS += lpc31_spi.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lpc31_nsh.c
|
CSRCS += lpc31_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_PAGING),y)
|
ifeq ($(CONFIG_PAGING),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/ea3131/src/lpc31_nsh.c
|
* config/ea3131/src/lpc31_appinit.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>
|
||||||
@@ -50,7 +50,7 @@ ifeq ($(CONFIG_LPC31_SPI),y)
|
|||||||
CSRCS += lpc31_spi.c
|
CSRCS += lpc31_spi.c
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lpc31_nsh.c
|
CSRCS += lpc31_appinit.c
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_PAGING),y)
|
ifeq ($(CONFIG_PAGING),y)
|
||||||
CSRCS += lpc31_fillpage.c
|
CSRCS += lpc31_fillpage.c
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/ea3152/src/lpc31_nsh.c
|
* config/ea3152/src/lpc31_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lm_nsh.c
|
CSRCS += lm_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/eagle100/src/lm_nsh.c
|
* config/eagle100/src/lm_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2009, 2012, 2016 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2009, 2012, 2016 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lm_nsh.c
|
CSRCS += lm_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/ekk-lm3s9b96/src/lm_nsh.c
|
* config/ekk-lm3s9b96/src/lm_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||||
* Authors: Gregory Nutt <gnutt@nuttx.org>
|
* Authors: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -48,7 +48,7 @@ endif
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += stm32_nsh.c
|
CSRCS += stm32_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_INPUT),y)
|
ifeq ($(CONFIG_INPUT),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/hymini-stm32v/src/stm32_nsh.c
|
* config/hymini-stm32v/src/stm32_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -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 stm32_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.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ CSRCS += k40_buttons.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += k40_nsh.c
|
CSRCS += k40_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_USBDEV),y)
|
ifeq ($(CONFIG_USBDEV),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/kwikstik-k40/src/k40_nsh.c
|
* config/kwikstik-k40/src/k40_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -85,7 +85,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 k40_nsh.c).
|
* already have been initialized in board_app_initialize() (see k40_appinit.c).
|
||||||
* In this case, there is nothing further to be done here.
|
* In this case, there is nothing further to be done here.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lpc17_boot.c lpc17_leds.c
|
CSRCS = lpc17_boot.c lpc17_leds.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lpc17_nsh.c
|
CSRCS += lpc17_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_USBMSC),y)
|
ifeq ($(CONFIG_USBMSC),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lincoln60/src/lpc17_nsh.c
|
* config/lincoln60/src/lpc17_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lm_nsh.c
|
CSRCS += lm_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lm3s6432-s2e/src/lm_nsh.c
|
* config/lm3s6432-s2e/src/lm_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
||||||
CSRCS += lm_nsh.c
|
CSRCS += lm_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lm3s6965-ek/src/lm_nsh.c
|
* config/lm3s6965-ek/src/lm_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
||||||
CSRCS += lm_nsh.c
|
CSRCS += lm_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lm3s8962-ek/src/lm_nsh.c
|
* config/lm3s8962-ek/src/lm_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -43,7 +43,7 @@ CSRCS += lm4f_autoleds.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lm4f_nsh.c
|
CSRCS += lm4f_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lm4f120-launchpad/src/lm4f_nsh.c
|
* config/lm4f120-launchpad/src/lm4f_appinit.c
|
||||||
* arch/arm/src/board/lm4f_nsh.c
|
* arch/arm/src/board/lm4f_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>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lpc43_boot.c
|
CSRCS = lpc43_boot.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lpc43_nsh.c
|
CSRCS += lpc43_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_FPU),y)
|
ifeq ($(CONFIG_ARCH_FPU),y)
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lpc4330-xplorer/src/lpc43_nsh.c
|
* config/lpc4330-xplorer/src/lpc43_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lpc43_boot.c
|
CSRCS = lpc43_boot.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lpc43_nsh.c
|
CSRCS += lpc43_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_FPU),y)
|
ifeq ($(CONFIG_ARCH_FPU),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lpc4357-evb/src/lpc43_nsh.c
|
* config/lpc4357-evb/src/lpc43_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2014 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lpc17_boot.c lpc17_leds.c lpc17_ssp.c lpc17_adc.c lpc17_dac.c lpc17_pwm.c
|
CSRCS = lpc17_boot.c lpc17_leds.c lpc17_ssp.c lpc17_adc.c lpc17_dac.c lpc17_pwm.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
||||||
CSRCS += lpc17_nsh.c
|
CSRCS += lpc17_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/lpcxpresso-lpc1768/src/lpc17_nsh.c
|
* config/lpcxpresso-lpc1768/src/lpc17_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lpc17_boot.c lpc17_leds.c lpc17_adc.c lpc17_dac.c lpc17_pwm.c
|
CSRCS = lpc17_boot.c lpc17_leds.c lpc17_adc.c lpc17_dac.c lpc17_pwm.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += lpc17_nsh.c
|
CSRCS += lpc17_appinit.c
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_USBMSC),y)
|
ifeq ($(CONFIG_USBMSC),y)
|
||||||
CSRCS += lpc17_usbmsc.c
|
CSRCS += lpc17_usbmsc.c
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/mbed/src/lpc17_nsh.c
|
* config/mbed/src/lpc17_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = lpc2148_spi1.c lpc2148_leds.c
|
CSRCS = lpc2148_spi1.c lpc2148_leds.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
ifeq ($(CONFIG_LIB_BOARDCTL),y)
|
||||||
CSRCS += lpc2148_nsh.c
|
CSRCS += lpc2148_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_USBMSC),y)
|
ifeq ($(CONFIG_USBMSC),y)
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/mcu123-lpc214x/src/lpc2148_nsh.c
|
* config/mcu123-lpc214x/src/lpc2148_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
int composite_archinitialize(void)
|
int composite_archinitialize(void)
|
||||||
{
|
{
|
||||||
/* If system/composite is built as an NSH command, then SD slot should
|
/* If system/composite is built as an NSH command, then SD slot should
|
||||||
* already have been initialized in board_app_initialize() (see lpc2148_nsh.c).
|
* already have been initialized in board_app_initialize() (see lpc2148_appinit.c).
|
||||||
* In this case, there is nothing further to be done here.
|
* In this case, there is nothing further to be done here.
|
||||||
*
|
*
|
||||||
* NOTE: CONFIG_NSH_BUILTIN_APPS is not a fool-proof indication that NSH
|
* NOTE: CONFIG_NSH_BUILTIN_APPS is not a fool-proof indication that NSH
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ CSRCS += stm32_watchdog.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += stm32_nsh.c
|
CSRCS += stm32_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_CUSTOM_PMINIT),y)
|
ifeq ($(CONFIG_ARCH_CUSTOM_PMINIT),y)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/mikroe_stm32f4/src/stm32_nsh.c
|
* config/mikroe_stm32f4/src/stm32_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -47,7 +47,7 @@ CSRCS += pic32_adc.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += pic32_nsh.c
|
CSRCS += pic32_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/mirtoo/src/pic32_nsh.c
|
* config/mirtoo/src/pic32_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@@ -39,7 +39,7 @@ ASRCS =
|
|||||||
CSRCS = moxart_boot.c
|
CSRCS = moxart_boot.c
|
||||||
|
|
||||||
ifeq ($(CONFIG_NSH_LIBRARY),y)
|
ifeq ($(CONFIG_NSH_LIBRARY),y)
|
||||||
CSRCS += moxart_nsh.c
|
CSRCS += moxart_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/moxart/src/moxart_nsh.c
|
* config/moxart/src/moxart_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2015 Gregory Nutt. All rights reserved.
|
||||||
* Author: Anton D. Kachalov <mouse@mayc.ru>
|
* Author: Anton D. Kachalov <mouse@mayc.ru>
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = m9s12_boot.c m9s12_leds.c m9s12_buttons.c m9s12_spi.c
|
CSRCS = m9s12_boot.c m9s12_leds.c m9s12_buttons.c m9s12_spi.c
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += m9s12_nsh.c
|
CSRCS += m9s12_appinit.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/configs/Board.mk
|
include $(TOPDIR)/configs/Board.mk
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/ne64badge/src/m9s12_nsh.c
|
* config/ne64badge/src/m9s12_appinit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user