Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HELP] Image size error after enabling wifi on esp32c6-devkitc:mcuboot_nsh #13611

Closed
1 task done
engdavidiogo opened this issue Sep 25, 2024 · 13 comments · Fixed by #13795
Closed
1 task done

[HELP] Image size error after enabling wifi on esp32c6-devkitc:mcuboot_nsh #13611

engdavidiogo opened this issue Sep 25, 2024 · 13 comments · Fixed by #13795

Comments

@engdavidiogo
Copy link
Contributor

Description

I'm trying to run a demo of MCUboot and NuttX on my ESP32-C6. By configuring the project with esp32c6-devkitc:mcuboot_nsh, I can compile and burn the firmware on the ESP32 without any problems. However, when trying to enable Wi-Fi in my settings, I start facing issues related to image size.

I studied both projects and tried to configure them according to the information below. Please let me know what I'm doing wrong or what would be the best approach to tracking down the root cause of this issue.

image

image

image

My defconfig

CONFIG_ALLOW_BSD_COMPONENTS=y
CONFIG_ARCH="risc-v"
CONFIG_ARCH_BOARD="esp32c6-devkitc"
CONFIG_ARCH_BOARD_COMMON=y
CONFIG_ARCH_BOARD_ESP32C6_DEVKITC=y
CONFIG_ARCH_CHIP="esp32c6"
CONFIG_ARCH_CHIP_ESP32C6=y
CONFIG_ARCH_CHIP_ESP32C6WROOM1=y
CONFIG_ARCH_INTERRUPTSTACK=2048
CONFIG_ARCH_RISCV=y
CONFIG_ARCH_STACKDUMP=y
CONFIG_BOARDCTL_RESET=y
CONFIG_BOARD_LOOPSPERMSEC=15000
CONFIG_BUILTIN=y
CONFIG_DEV_ZERO=y
CONFIG_ESPRESSIF_BOOTLOADER_MCUBOOT=y
CONFIG_DRIVERS_IEEE80211=y
CONFIG_DRIVERS_WIRELESS=y
CONFIG_ESPRESSIF_ESP32C6=y
CONFIG_ESPRESSIF_SPIFLASH=y
CONFIG_ESPRESSIF_SPIFLASH_SPIFFS=y
CONFIG_ESPRESSIF_WIFI=y
CONFIG_EXAMPLES_RANDOM=y
CONFIG_FS_PROCFS=y
CONFIG_IDLETHREAD_STACKSIZE=2048
CONFIG_INIT_ENTRYPOINT="nsh_main"
CONFIG_INIT_STACKSIZE=8192
CONFIG_INTELHEX_BINARY=y
CONFIG_IOB_THROTTLE=24
CONFIG_LIBC_PERROR_STDOUT=y
CONFIG_LIBC_STRERROR=y
CONFIG_NETDB_DNSCLIENT=y
CONFIG_NETDEV_LATEINIT=y
CONFIG_NETDEV_PHY_IOCTL=y
CONFIG_NETDEV_WIRELESS_IOCTL=y
CONFIG_NETDEV_WORK_THREAD=y
CONFIG_NETUTILS_CJSON=y
CONFIG_NET_BROADCAST=y
CONFIG_NET_ICMP_SOCKET=y
CONFIG_NET_TCP=y
CONFIG_NET_TCP_DELAYED_ACK=y
CONFIG_NET_TCP_WRITE_BUFFERS=y
CONFIG_NET_UDP=y
CONFIG_NFILE_DESCRIPTORS_PER_BLOCK=6
CONFIG_NSH_ARCHINIT=y
CONFIG_NSH_BUILTIN_APPS=y
CONFIG_NSH_FILEIOSIZE=512
CONFIG_NSH_READLINE=y
CONFIG_NSH_STRERROR=y
CONFIG_PREALLOC_TIMERS=0
CONFIG_PTHREAD_MUTEX_TYPES=y
CONFIG_RR_INTERVAL=200
CONFIG_SCHED_BACKTRACE=y
CONFIG_SCHED_LPWORK=y
CONFIG_SCHED_WAITPID=y
CONFIG_SIG_DEFAULT=y
CONFIG_START_DAY=29
CONFIG_START_MONTH=11
CONFIG_START_YEAR=2019
CONFIG_SYSTEM_DHCPC_RENEW=y
CONFIG_SYSTEM_DUMPSTACK=y
CONFIG_SYSTEM_NSH=y
CONFIG_SYSTEM_PING=y
CONFIG_TESTING_GETPRIME=y
CONFIG_TESTING_OSTEST=y
CONFIG_TLS_TASK_NELEM=4
CONFIG_UART0_SERIAL_CONSOLE=y
CONFIG_WIRELESS=y
CONFIG_WIRELESS_WAPI=y
CONFIG_WIRELESS_WAPI_CMDTOOL=y
CONFIG_WIRELESS_WAPI_INITCONF=y

Verification

  • I have verified before submitting the report.
@FelipeMdeO
Copy link
Contributor

Hello @fdcavalcanti can you help us to do it work, please ?

@fdcavalcanti
Copy link
Contributor

Hello, thanks for reporting. Will try and replicate it.

@fdcavalcanti
Copy link
Contributor

It seems like an issue with imgtool. The 0x50000004c image size seems excessive.
Can you check the .hex file size?

Some things to try:

  • On bootloader configuration, try to modify the hash to the newest mcuboot version.
  • Update imgtool to newest version using pip.

@engdavidiogo
Copy link
Contributor Author

I just followed your instructions but I still have the same behavior.

image

image

image

@fdcavalcanti
Copy link
Contributor

Thanks for the info. Could be a linker issue, looking into it.

@fdcavalcanti
Copy link
Contributor

Hi @engdavidiogo. #13795 Should fix this issue.
Thanks for the help @almir-okato.

@fdcavalcanti
Copy link
Contributor

fdcavalcanti commented Oct 3, 2024

I saw that PR fixed the build issue but WiFi stopped. I jumped the gun on that PR, sorry about that. Still working on it.

@FelipeMdeO
Copy link
Contributor

Thank you for the effort.

@fdcavalcanti
Copy link
Contributor

Hello. So I noticed you guys still had issues on that linker fix.
There is a different issue going on regarding WiFi stability that was affected by a different merge request.
As soon as that is fixed, I will reopen that linker MR and it should be good. Just tested on a C6 using those fixes and its working as expected.

@engdavidiogo
Copy link
Contributor Author

Hi @fdcavalcanti, good news.
Are there any issues related to this fix?

Furthermore, I understand that you were able to track down the commit that caused the break. Could you share your successful test scenario

@fdcavalcanti
Copy link
Contributor

Yes. You guys got tangled between two issues.
One is the one you reported, which was fixed on #13795. I can't submit that until another issue gets fixed, which is #13814.

Here's the output using the defconfig you provided previously, connecting to my WiFi hotspot:

nsh> wapi psk wlan0 espubuntu123 3
nsh> wapi essid wlan0 espubuntu 1
nsh> renew wlan0
nsh> ifconfig
wlan0	Link encap:Ethernet HWaddr 60:55:f9:f6:06:04 at RUNNING mtu 576
	inet addr:10.42.0.199 DRaddr:10.42.0.1 Mask:255.255.255.0

nsh> 

@xiaoxiang781216
Copy link
Contributor

@FelipeMdeO could you try this patch #13841?

@fdcavalcanti
Copy link
Contributor

Looks good. Already reopened the PR for linker fix and this issue would be done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants