summaryrefslogtreecommitdiff
path: root/recipes-core/usb-rndis/files/tegra/start-rndis.sh
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2019-01-10 19:21:15 +0100
committerMax Krummenacher <max.krummenacher@toradex.com>2019-03-04 17:09:52 +0100
commit87bd454d72b205b3802e67527a06099e0c74983c (patch)
tree1af629c87c3e0193c7287dcca374cd7295686e4c /recipes-core/usb-rndis/files/tegra/start-rndis.sh
parent6835704e303a6389b564440446b8a5fcad7ce94e (diff)
apalis/colibri-t20 -t30: drop machines
These machines use an old Nvidia provided downstream kernel 3.1.10. They no longer much the way more recent sysroot components, e.g. libc, xserver et. al. The maintance burden to keep the userspace components in their old version becomes simply to high. Keep using the rocko based 2.8 BSP for these machines. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Diffstat (limited to 'recipes-core/usb-rndis/files/tegra/start-rndis.sh')
-rw-r--r--recipes-core/usb-rndis/files/tegra/start-rndis.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/recipes-core/usb-rndis/files/tegra/start-rndis.sh b/recipes-core/usb-rndis/files/tegra/start-rndis.sh
deleted file mode 100644
index 13efda3..0000000
--- a/recipes-core/usb-rndis/files/tegra/start-rndis.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# configures the usb gadget to provide rnidis,
-case "$1" in
- start)
- echo 0 > /sys/class/android_usb/android0/enable
- echo rndis > /sys/class/android_usb/android0/functions
- echo 1 > /sys/class/android_usb/android0/enable
- ip link set rndis0 up
- ;;
-
- stop)
- ip link set rndis0 down
- echo 0 > /sys/class/android_usb/android0/enable
- ;;
-esac
-
-exit 0