mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 21:54:36 +02:00
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25102 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b86e1f46ab
commit
b85cea3219
19
target/linux/x86/base-files/lib/soekris.sh
Executable file
19
target/linux/x86/base-files/lib/soekris.sh
Executable file
@ -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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user