summaryrefslogtreecommitdiff
path: root/target/linux/ixp4xx/base-files/lib/ixp4xx.sh
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/ixp4xx/base-files/lib/ixp4xx.sh')
-rw-r--r--target/linux/ixp4xx/base-files/lib/ixp4xx.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/ixp4xx/base-files/lib/ixp4xx.sh b/target/linux/ixp4xx/base-files/lib/ixp4xx.sh
deleted file mode 100644
index f7a6b76..0000000
--- a/target/linux/ixp4xx/base-files/lib/ixp4xx.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2012 OpenWrt.org
-#
-
-ixp4xx_board_name() {
- local machine
- local name
-
- machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /Hardware/ {print $2}' /proc/cpuinfo)
-
- case "$machine" in
- "Gateworks Cambria"*)
- name="cambria"
- ;;
- "Gateworks Avila"*)
- name="avila"
- ;;
- *)
- name="generic";
- ;;
- esac
-
- echo $name
-}