HI @Namitha_zcs!
Thank you for contacting NXP Support!
The definitive solution is create a custom startup script as a service:
Step 1: Go to etc/systemd/system
cd /etc/systemd/system
Step 2: In this directory create a new file with the name of your preference but the
extension must be .service.
The file must contain:
[Unit]
Description=”Wifi Start”
[Service]
ExecStart=sudo modprobe moal mod_para=nxp/wifi_mod_para.conf
[Install]
WantedBy=multi-user.target
Now save the file, in my case the name was wifi_start.service.
Step 3: Now we need to enable the script in the startup/boot sequence following the
command:
sudo systemctl enable wifi_start.service
Finally, each time you boot your board, the WIFI module will initialize automatically.