summaryrefslogtreecommitdiff
path: root/target/linux/imx6/base-files/lib/functions
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2014-06-26 10:14:13 +0000
committerLuka Perkov <luka@openwrt.org>2014-06-26 10:14:13 +0000
commitfa0b9bcceab5a82df39e374da01117f0688508b2 (patch)
tree14f45354e1c16b9995374f2d62f466b5c7723052 /target/linux/imx6/base-files/lib/functions
parenta54f4320f9f0beabaedeb8053940cd71c6dd589e (diff)
downloadmtk-20170518-fa0b9bcceab5a82df39e374da01117f0688508b2.zip
mtk-20170518-fa0b9bcceab5a82df39e374da01117f0688508b2.tar.gz
mtk-20170518-fa0b9bcceab5a82df39e374da01117f0688508b2.tar.bz2
imx6: move imx6.sh to /lib/ for consistency
Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 41339
Diffstat (limited to 'target/linux/imx6/base-files/lib/functions')
-rwxr-xr-xtarget/linux/imx6/base-files/lib/functions/imx6.sh63
1 files changed, 0 insertions, 63 deletions
diff --git a/target/linux/imx6/base-files/lib/functions/imx6.sh b/target/linux/imx6/base-files/lib/functions/imx6.sh
deleted file mode 100755
index 0318fb4..0000000
--- a/target/linux/imx6/base-files/lib/functions/imx6.sh
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2010-2013 OpenWrt.org
-#
-
-IMX6_BOARD_NAME=
-IMX6_MODEL=
-
-imx6_board_detect() {
- local machine
- local name
-
- machine=$(cat /proc/device-tree/model)
-
- case "$machine" in
- "Gateworks Ventana i.MX6 DualLite/Solo GW51XX" |\
- "Gateworks Ventana i.MX6 Dual/Quad GW51XX")
- name="gw51xx"
- ;;
-
- "Gateworks Ventana i.MX6 DualLite/Solo GW52XX" |\
- "Gateworks Ventana i.MX6 Dual/Quad GW52XX")
- name="gw52xx"
- ;;
-
- "Gateworks Ventana i.MX6 DualLite/Solo GW53XX" |\
- "Gateworks Ventana i.MX6 Dual/Quad GW53XX")
- name="gw53xx"
- ;;
-
- "Gateworks Ventana i.MX6 DualLite/Solo GW54XX" |\
- "Gateworks Ventana i.MX6 Dual/Quad GW54XX" |\
- "Gateworks Ventana GW5400-A")
- name="gw54xx"
- ;;
-
- "Wandboard i.MX6 Dual Lite Board")
- name="wandboard"
- ;;
-
- *)
- name="generic"
- ;;
- esac
-
- [ -z "$IMX6_BOARD_NAME" ] && IMX6_BOARD_NAME="$name"
- [ -z "$IMX6_MODEL" ] && IMX6_MODEL="$machine"
-
- [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
-
- echo "$IMX6_BOARD_NAME" > /tmp/sysinfo/board_name
- echo "$IMX6_MODEL" > /tmp/sysinfo/model
-}
-
-imx6_board_name() {
- local name
-
- [ -f /tmp/sysinfo/board_name ] || imx6_board_detect
- [ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
- [ -z "$name" ] && name="unknown"
-
- echo "$name"
-}