mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
allow building of kernel-specific stuff in package/ instead of target/linux/package/ and merge target/linux/package/base-files into package/base-files
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3855 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
33
package/base-files/brcm-2.6/etc/hotplug.d/net/09-net
Normal file
33
package/base-files/brcm-2.6/etc/hotplug.d/net/09-net
Normal file
@@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
setup_eth()
|
||||
{
|
||||
[ -d /proc/switch ] || {
|
||||
insmod switch-core
|
||||
insmod switch-robo || insmod switch-adm
|
||||
}
|
||||
if="$(echo "$INTERFACE" | sed s,eth,et,)"
|
||||
ifconfig "$INTERFACE" up 2>&- >&-
|
||||
[ -d "/proc/switch/$INTERFACE" ] || return 0
|
||||
echo "1" > "/proc/switch/$INTERFACE/reset"
|
||||
echo "1" > "/proc/switch/$INTERFACE/enable_vlan"
|
||||
for vlan in $(seq 0 15); do
|
||||
eval "hwname=\"\${vlan${vlan}hwname}\""
|
||||
[ "$hwname" = "$if" ] && {
|
||||
eval "vports=\"\${vlan${vlan}ports}\""
|
||||
[ -n "$vports" ] && echo "$vports" > "/proc/switch/$INTERFACE/vlan/$vlan/ports"
|
||||
$DEBUG vconfig add "$INTERFACE" "$vlan"
|
||||
}
|
||||
done
|
||||
}
|
||||
|
||||
do_register()
|
||||
{
|
||||
case "${INTERFACE%%[0-9]*}" in
|
||||
eth) setup_eth;;
|
||||
esac
|
||||
}
|
||||
|
||||
|
||||
case "$ACTION" in
|
||||
add|register) do_register;;
|
||||
esac
|
||||
Reference in New Issue
Block a user