Skip to content

Commit 61b78bc

Browse files
WanWizardHains
authored andcommitted
shorten the DHCP timeout to speed up first boot
1 parent ddcd34a commit 61b78bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/python/Components/Network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def writeNetworkConfig(self):
9999
self.configuredInterfaces.append(ifacename)
100100
if iface['dhcp']:
101101
fp.write("iface " + ifacename + " inet dhcp\n")
102-
fp.write("udhcpc_opts -T1 -t30\n")
102+
fp.write("udhcpc_opts -T6 -t10\n")
103103
if not iface['dhcp']:
104104
fp.write("iface " + ifacename + " inet static\n")
105105
if 'ip' in iface:

0 commit comments

Comments
 (0)