projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
brcm63xx: Added preinit board-type detection (currently only 96348GW - Tecom 6x00)
[openwrt.git]
/
target
/
linux
/
brcm63xx
/
base-files
/
lib
/
brcm63xx.sh
1
#!/bin/sh
2
#
3
# Copyright (C) 2007 OpenWrt.org
4
#
5
#
6
7
board_name
=
""
8
status_led
=
""
9
status_led2
=
""
10
sys_mtd_part
=
""
11
brcm63xx_has_reset_button
=
""
12
13
brcm63xx_detect
() {
14
board_name
=
$
(
awk
'BEGIN{FS="[
\t
]+:[
\t
]"} /system type/ {print
$2
}'
/
proc
/
cpuinfo
)
15
16
case
"
$board_name
"
in
17
"bcm63xx/96348GW"
*)
18
status_led
=
"tel"
19
status_led2
=
"line1"
20
brcm63xx_has_reset_button
=
"true"
21
ifname
=
eth1
22
;;
23
*)
24
;;
25
esac
26
}
27
28
brcm63xx_detect
This page took
0.047535 seconds
and
5
git commands to generate.