mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	In particular, it wants to run before the ntpclient script. Which may block for a long time attempting to do DNS lookups for NTP servers. In my case, that would have *worked* if the new device had been added to teql first, rather than timing out. This was effectively causing a huge delay between an interface coming up, and routing actually starting to work. Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34442
		
			
				
	
	
		
			24 lines
		
	
	
		
			486 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			486 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| . /lib/functions.sh
 | |
| 
 | |
| if [ "$ACTION" != "ifup" ]; then
 | |
| 	exit
 | |
| fi
 | |
| 
 | |
| config_load network
 | |
| 
 | |
| config_get teql $INTERFACE teql
 | |
| 
 | |
| if [ "$teql" != "" ]; then
 | |
|     logger Adding device $DEVICE to TEQL master $teql
 | |
|     insmod sch_teql
 | |
|     tc qdisc add dev $DEVICE root $teql
 | |
| 
 | |
|     # The kernel doesn't let us bring it up until it has at least one
 | |
|     # slave. So bring it up now, if it isn't already.
 | |
|     if ! cat /sys/class/net/$teql/carrier &>/dev/null; then
 | |
|         ifup $teql &
 | |
|     fi
 | |
| fi
 |