diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-01-26 11:33:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-01-26 11:33:42 +0000 |
commit | 3d9d5cee8aa115a9cbc22c78ef987674569ea77d (patch) | |
tree | d8eb7d9415c8821cb219ee715f53be7df7f13ad8 /target | |
parent | 9a37eaeacf30cceefd56aa53d80a6b7f3fe26503 (diff) | |
download | upstream-3d9d5cee8aa115a9cbc22c78ef987674569ea77d.tar.gz upstream-3d9d5cee8aa115a9cbc22c78ef987674569ea77d.tar.bz2 upstream-3d9d5cee8aa115a9cbc22c78ef987674569ea77d.zip |
x86/soekris: Add script to detect soekris model
Add script to detect soekris board of net4801 and net4826.
Patch from: kentarou matsuyama <matsuyama@thinktube.com>
SVN-Revision: 25102
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/x86/base-files/lib/soekris.sh | 19 |
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 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 +} |