From: nbd Date: Mon, 11 Aug 2008 13:02:44 +0000 (+0000) Subject: switch the br2684 default to routed mode instead of bridged mode, as it's more common X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/5d8f115d9b0b6f6e886582229491a24fa7e62c65 switch the br2684 default to routed mode instead of bridged mode, as it's more common git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12277 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/br2684ctl/files/br2684ctl b/package/br2684ctl/files/br2684ctl index 5a2bedd3d..739baabdd 100755 --- a/package/br2684ctl/files/br2684ctl +++ b/package/br2684ctl/files/br2684ctl @@ -20,8 +20,8 @@ start_daemon() { *) encaps=0;; esac case "$payload" in - 1|bridged) payload=1;; - *) payload=0;; + 0|routed) payload=0;; + *) payload=1;; esac br2684ctl -b -c "$unit" -e "$encaps" -p "$payload" -a "${atmdev:+$atmdev.}${vpi:-8}.${vci:-35}" }