summaryrefslogtreecommitdiff
path: root/run_daemons.sh
blob: 30da552d7765257c1011abb8d32b7b6405f2b230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
# Start all daemons

nic=$1

if [ "$1" == "-h" ]; then
        echo "Usage: $0 <network interface>"
        echo "   eg: $0 eth1"
        exit
fi

if [ "$1" == "" ]; then
        nic="eth1" #edit as required
        echo "Network interface not specified, assuming: $nic"
fi

echo "Starting daemons on "$nic

#use false for silence
if true; then
        sudo rmmod igb
        sudo insmod kmod/igb/igb_avb.ko
        sudo groupadd ptp
else
        sudo rmmod igb > /dev/null 2>&1
        sudo insmod kmod/igb/igb_avb.ko > /dev/null 2>&1
        sudo groupadd ptp > /dev/null 2>&1
fi

sudo daemons/gptp/linux/build/obj/daemon_cl $nic &
sudo daemons/mrpd/mrpd -mvs -i $nic &
sudo daemons/maap/linux/maap_daemon -i $nic &