diff options
author | Manas Sambhus <manas.sambhus+github@gmail.com> | 2022-07-09 12:00:25 +0530 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-09-27 17:16:45 +0200 |
commit | 4cc7011da02d31574b297817936ccd02d6a94f69 (patch) | |
tree | 558efd7e209899a73f692d15e5768d48c3a5f883 | |
parent | db0c0a31d88293ac7430335627844da7d80c85fd (diff) | |
download | upstream-4cc7011da02d31574b297817936ccd02d6a94f69.tar.gz upstream-4cc7011da02d31574b297817936ccd02d6a94f69.tar.bz2 upstream-4cc7011da02d31574b297817936ccd02d6a94f69.zip |
kernel: netsupport: replace insmod by modprobe
Replace insmod by modprobe in TEQL hotplug script
Signed-off-by: Manas Sambhus <manas.sambhus+github@gmail.com>
-rw-r--r-- | package/kernel/linux/files/hotplug-sched-teql.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/linux/files/hotplug-sched-teql.sh b/package/kernel/linux/files/hotplug-sched-teql.sh index a0c0e503aa..2dc4ed4a84 100644 --- a/package/kernel/linux/files/hotplug-sched-teql.sh +++ b/package/kernel/linux/files/hotplug-sched-teql.sh @@ -12,7 +12,7 @@ config_get teql $INTERFACE teql if [ "$teql" != "" ]; then logger Adding device $DEVICE to TEQL master $teql - insmod sch_teql + modprobe sch_teql tc qdisc add dev $DEVICE root $teql # The kernel doesn't let us bring it up until it has at least one |