You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/04/18 11:32:18 UTC

[incubator-nuttx] 02/02: sim: Don't generate romfs image if CONFIG_NSH_CUSTOMROMFS=y

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 0e9b0d76032aac8c3f6591f906d21909b532abec
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri Apr 17 15:21:40 2020 +0900

    sim: Don't generate romfs image if CONFIG_NSH_CUSTOMROMFS=y
---
 boards/sim/sim/sim/src/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/boards/sim/sim/sim/src/Makefile b/boards/sim/sim/sim/src/Makefile
index c70af73..57590ca 100644
--- a/boards/sim/sim/sim/src/Makefile
+++ b/boards/sim/sim/sim/src/Makefile
@@ -75,8 +75,10 @@ endif
 endif
 
 ifeq ($(CONFIG_NSH_ROMFSETC),y)
+ifneq ($(CONFIG_NSH_CUSTOMROMFS),y)
   RCSRCS = etc/init.d/rcS
   RCRAWS = etc/group etc/passwd
 endif
+endif
 
 include $(TOPDIR)/boards/Board.mk