Hello,
I am using AM335x ti 06.03.00.106 Processor SDK.
I have created scripts as below.
startapp.service at /lib/systemd/system
startapp.sh at /etc/init.d
i have also created link of startapp.sh--> /lib/systemd/system/startapp.service in /etc/systemd/system/multi-user.target.wants Directory.
below is my init script
#!/bin/bash
echo "Starting Init Script" > "/dev/ttyS0"
# Load the WiFi and Blutooth Driver
cd /mnt/Application/Driver/wifi/
sh insert.sh &
sleep 1
# Start the Application
cd /mnt/Application/
./application &
I am not able to run any application in background mode as per the above script.
Thanks,
Prerak