diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-11-04 01:05:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-11-04 01:05:12 +0000 |
commit | dab5ebaa76d6432459ba6e26ab22600ed85dd3e4 (patch) | |
tree | e00a2fa277296d2299cfff100c251c0e52a7f62f /package/base-files-network | |
parent | 18a4bbb98d339eb8aac1b1b0e5b6fa6d9339f9ad (diff) | |
download | upstream-dab5ebaa76d6432459ba6e26ab22600ed85dd3e4.tar.gz upstream-dab5ebaa76d6432459ba6e26ab22600ed85dd3e4.tar.bz2 upstream-dab5ebaa76d6432459ba6e26ab22600ed85dd3e4.zip |
netifd: ensure that a bridge gets created before hostapd needs it, hostapd must not attempt to create the bridge by itself
SVN-Revision: 28745
Diffstat (limited to 'package/base-files-network')
-rwxr-xr-x | package/base-files-network/files/lib/network/config.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/base-files-network/files/lib/network/config.sh b/package/base-files-network/files/lib/network/config.sh index 29d021af92..74810e47d0 100755 --- a/package/base-files-network/files/lib/network/config.sh +++ b/package/base-files-network/files/lib/network/config.sh @@ -145,6 +145,10 @@ sort_list() { ) | sort -u } +prepare_interface_bridge() { + return 0 +} + # Create the interface, if necessary. # Return status 0 indicates that the setup_interface() call should continue # Return status 1 means that everything is set up already. |