aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/x86/base-files/lib/soekris.sh
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/x86/base-files/lib/soekris.sh')
-rwxr-xr-xtarget/linux/x86/base-files/lib/soekris.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/x86/base-files/lib/soekris.sh b/target/linux/x86/base-files/lib/soekris.sh
new file mode 100755
index 000000000..e416ad396
--- /dev/null
+++ b/target/linux/x86/base-files/lib/soekris.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+net48xx_board_name () {
+ local name
+ local pci=`wc -l /proc/bus/pci/devices`
+
+ case "$pci" in
+ *"8"*)
+ name="net4826"
+ ;;
+ *1[0-4]*)
+ name="net4801"
+ ;;
+ *)
+ name="net4826"
+ ;;
+ esac
+ echo $name
+}