This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM3352: Init script not able to run Multiple application in background.

Part Number: AM3352

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

  • Prerak,

    Thank you for you query. SystemD is an open source component that we integrate into the SDK to help with system integration, but we do not support it. You are welcome to refer to the scripts we provide in the SDK as examples. I recommend you work with open source resources to handle this question as there should be nothing that is specific to TI.