
#!/bin/sh
	uci -q batch <<-EOF >/dev/null
	set network.CP=interface
	set network.CP.auto='1'
	set network.CP.device='br-cp'
	set network.CP.proto='autoip'
	set network.CP.stp='1'
	set network.device_CP=device
	set network.device_CP.bridge_empty='1'
	set network.device_CP.ports='cpwlan0'
	set network.device_CP.name='br-cp'
	set network.device_CP.type='bridge'
	set network.device_CP.igmp_snooping='0'
	set network.device_CP.mtu='1500'
	commit network
	EOF
