From: nbd Date: Wed, 26 Jan 2011 11:33:42 +0000 (+0000) Subject: x86/soekris: Add script to detect soekris model X-Git-Tag: fast2504n-3.10.28-merged~9958 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=b85cea321924691b1520333f2fa60994d83dc294;p=openwrt.git x86/soekris: Add script to detect soekris model Add script to detect soekris board of net4801 and net4826. Patch from: kentarou matsuyama git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25102 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 0000000000..e416ad3962 --- /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 +}