summaryrefslogtreecommitdiff
path: root/recipes-bsp/binary-drivers/linux-driver-package/nvfb
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2020-05-17 11:09:41 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2020-05-28 12:29:05 +0200
commitd13caaba2d90f856b944ebde44967b679d3eb3a9 (patch)
tree417d262852123f10c03838f81bc51bda9c2c3a03 /recipes-bsp/binary-drivers/linux-driver-package/nvfb
parent7a56c4b0ae2a656cde85ab8b369e6bc2969ca91c (diff)
apalis-tk1: drop machine
The downstream kernel gets to old to be used with the new zeus userspace components. Drop the machine. Related-to: ELB-2733 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Diffstat (limited to 'recipes-bsp/binary-drivers/linux-driver-package/nvfb')
-rwxr-xr-xrecipes-bsp/binary-drivers/linux-driver-package/nvfb25
1 files changed, 0 insertions, 25 deletions
diff --git a/recipes-bsp/binary-drivers/linux-driver-package/nvfb b/recipes-bsp/binary-drivers/linux-driver-package/nvfb
deleted file mode 100755
index e5f4502..0000000
--- a/recipes-bsp/binary-drivers/linux-driver-package/nvfb
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#"specific first-boot script"
-
-nvexec() {
- RET=0
- if [ ! -e /etc/nv/nvfirstboot ]; then
- RET=0
- else
- echo "/usr/lib/arm-linux-gnueabihf/tegra" >> /etc/ld.so.conf
- echo "/usr/lib/arm-linux-gnueabihf/tegra-egl" >> /etc/ld.so.conf
-
- ldconfig
- rm -rf /etc/nv/nvfirstboot
- fi
- exit $RET
-}
-
-case "$1" in
- start)
- nvexec
- exit 0
- ;;
- *)
- exit 1
-esac