# ConnectCore 93 Network boot failure

**URL:** https://forums.digi.com/t/connectcore-93-network-boot-failure/33370
**Category:** Linux
**Tags:** boot
**Created:** [December 4, 2024, 10:28am UTC](https://forums.digi.com/t/connectcore-93-network-boot-failure/33370 "2024-12-04T10:28:03Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![wwww](https://avatars.discourse-cdn.com/v4/letter/w/bcef8e/32.png) [@wwww](https://forums.digi.com/u/wwww)
#### Post date: [December 4, 2024, 10:28am UTC](https://forums.digi.com/t/connectcore-93-network-boot-failure/33370/1 "2024-12-04T10:28:03Z")

</div>

i have done this following instructions to boot from nfs：  
([Boot the system | ConnectCore 93](https://www.digi.com/resources/documentation/digidocs/embedded/dey/4.0/cc93/yocto-boot-the-system_t.html)  
But when I execute the **dboot linux nfs** , it shows error。  
The log is as follows：  
=\> setenv autoload no

=\> setenv ipaddr 192.168.115.222

=\> setenv serverip 192.168.115.33

=\> setenv rootpath /exports/nfsroot-ccimx93\_dvk

=\> setenv fdt\_file ccimx93-dvk–6.1-r0.0-ccimx93-dvk-20241128141738.dtb

=\> setenv imagegz Image.gz–6.1-r0.0-ccimx93-dvk-20241126054454.bin  
=\> dboot linux nfs

## Loading kernel: Image.gz–6.1-r0.0-ccimx93-dvk-20241126054454.bin

Using ethernet@428a0000 device  
File transfer via NFS from server 192.168.115.33; our IP address is 192.168.115.222  
Filename ‘/exports/nfsroot-ccimx93\_dvk/Image.gz–6.1-r0.0-ccimx93-dvk-20241126054454.bin’.  
Load address: 0x84000000  
Loading: T T #################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#################################################################  
#####t T T T T  
done  
Bytes transferred = 12337023 (bc3f7f hex)

## Loading device tree file in variable ‘fdt\_file’: ccimx93-dvk–6.1-r0.0-ccimx93-dvk-20241128141738.dtb

Using ethernet@428a0000 device  
File transfer via NFS from server 192.168.115.33; our IP address is 192.168.115.222  
Filename ‘/exports/nfsroot-ccimx93\_dvk/ccimx93-dvk–6.1-r0.0-ccimx93-dvk-20241128141738.dtb’.  
Load address: 0x83000000  
Loading: #############t T T T T T T T T  
done  
Bytes transferred = 62983 (f607 hex)  
Working FDT set to 83000000

## No device tree overlays present in variable ‘overlays’

## Error: “bootargs\_nfs\_linux” not defined

Error setting boot arguments  
=\>  
I would like to know how bootargs\_nfs\_linux should be set correctly!

---

<div class="post-metadata">

### Author: ![thomas.kuhlmann](https://sea2.discourse-cdn.com/flex016/user_avatar/forums.digi.com/thomas.kuhlmann/32/7_2.png) [@thomas.kuhlmann](https://forums.digi.com/u/thomas.kuhlmann)
#### Post date: [January 31, 2025, 11:51am UTC](https://forums.digi.com/t/connectcore-93-network-boot-failure/33370/2 "2025-01-31T11:51:58Z")

</div>

see booting from network explained in the Digi Yocto Guide for CC93:  
[https://www.digi.com/resources/documentation/digidocs/embedded/dey/4.0/cc93/yocto-boot-the-system\_t.html](https://www.digi.com/resources/documentation/digidocs/embedded/dey/4.0/cc93/yocto-boot-the-system_t.html)  
If your U-Boot does not have the correct bootargs\_nfs\_linux set, maybe you need to use a newer U-Boot version or run “envdefault -a” to get it set correctly?  
see also AI assistant suggestion:

```auto
setenv bootargs nfsroot=$(serverip):$(nfspath) root=nfs ip=... console=...
saveenv

```
