ソースを参照

x86/soekris: Add script to detect soekris model

Add script to detect soekris board of net4801 and net4826.

Patch from: kentarou matsuyama <[email protected]>

SVN-Revision: 25102
Felix Fietkau 15 年 前
コミット
3d9d5cee8a
1 ファイル変更19 行追加0 行削除
  1. 19 0
      target/linux/x86/base-files/lib/soekris.sh

+ 19 - 0
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
+}