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 2021/09/24 17:48:24 UTC

[incubator-nuttx] branch master updated (1b5d6aa -> c23986e)

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

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


    from 1b5d6aa  net/local: add socket message control support
     new 86518bd  tools: Trigger clean_bootloader on distclean for supported chips
     new c23986e  xtensa/esp32: Select ARCH_HAVE_BOOTLOADER for ESP32 chips

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 arch/Kconfig        | 4 ++++
 arch/xtensa/Kconfig | 1 +
 tools/Makefile.unix | 3 +++
 tools/Makefile.win  | 3 +++
 4 files changed, 11 insertions(+)

[incubator-nuttx] 01/02: tools: Trigger clean_bootloader on distclean for supported chips

Posted by xi...@apache.org.
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 86518bdf251bd8829357913228b91326c7c0d8e7
Author: Gustavo Henrique Nihei <gu...@espressif.com>
AuthorDate: Fri Sep 24 07:25:17 2021 -0300

    tools: Trigger clean_bootloader on distclean for supported chips
    
    Signed-off-by: Gustavo Henrique Nihei <gu...@espressif.com>
---
 arch/Kconfig        | 4 ++++
 tools/Makefile.unix | 3 +++
 tools/Makefile.win  | 3 +++
 3 files changed, 10 insertions(+)

diff --git a/arch/Kconfig b/arch/Kconfig
index f242466..9171e8e 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -348,6 +348,10 @@ config ARCH_HAVE_BACKTRACE
 	bool
 	default n
 
+config ARCH_HAVE_BOOTLOADER
+	bool
+	default n
+
 config ARCH_FPU
 	bool "FPU support"
 	default y
diff --git a/tools/Makefile.unix b/tools/Makefile.unix
index 87f6325..6ed8213 100644
--- a/tools/Makefile.unix
+++ b/tools/Makefile.unix
@@ -592,6 +592,9 @@ distclean: clean subdir_distclean
 ifeq ($(CONFIG_BUILD_2PASS),y)
 	$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) distclean
 endif
+ifeq ($(CONFIG_ARCH_HAVE_BOOTLOADER),y)
+	$(Q) $(MAKE) clean_bootloader
+endif
 	$(Q) $(MAKE) clean_context
 	$(call DELFILE, Make.defs)
 	$(call DELFILE, defconfig)
diff --git a/tools/Makefile.win b/tools/Makefile.win
index 9be0d72..3ff9bd2 100644
--- a/tools/Makefile.win
+++ b/tools/Makefile.win
@@ -541,6 +541,9 @@ distclean: clean subdir_distclean
 ifeq ($(CONFIG_BUILD_2PASS),y)
 	$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) distclean
 endif
+ifeq ($(CONFIG_ARCH_HAVE_BOOTLOADER),y)
+	$(Q) $(MAKE) clean_bootloader
+endif
 	$(Q) $(MAKE) clean_context
 	$(call DELFILE, Make.defs)
 	$(call DELFILE, defconfig)

[incubator-nuttx] 02/02: xtensa/esp32: Select ARCH_HAVE_BOOTLOADER for ESP32 chips

Posted by xi...@apache.org.
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 c23986ec638057392a79993b1bb62ec3a2de8a97
Author: Gustavo Henrique Nihei <gu...@espressif.com>
AuthorDate: Fri Sep 24 07:26:33 2021 -0300

    xtensa/esp32: Select ARCH_HAVE_BOOTLOADER for ESP32 chips
    
    Signed-off-by: Gustavo Henrique Nihei <gu...@espressif.com>
---
 arch/xtensa/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig
index 1521009..43b405b 100644
--- a/arch/xtensa/Kconfig
+++ b/arch/xtensa/Kconfig
@@ -17,6 +17,7 @@ config ARCH_CHIP_ESP32
 	select ARCH_HAVE_TEXT_HEAP
 	select ARCH_HAVE_SDRAM
 	select ARCH_HAVE_RESET
+	select ARCH_HAVE_BOOTLOADER
 	select ARCH_VECNOTIRQ
 	select LIBC_ARCH_MEMCPY
 	select LIBC_ARCH_MEMCHR