Bumped up default timout, as 5 seconds is not enough for some platforms.

This commit is contained in:
Anton Hvornum 2022-04-25 10:20:00 +02:00
parent 44727e64ea
commit 1bce561a0c
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
2 changed files with 3 additions and 3 deletions

View File

@ -740,14 +740,14 @@ class Installer:
else:
loader_data = [
f"default {self.init_time}",
"timeout 5"
"timeout 15"
]
with open(f'{self.target}/boot/loader/loader.conf', 'w') as loader:
for line in loader_data:
if line[:8] == 'default ':
loader.write(f'default {self.init_time}_{self.kernels[0]}\n')
elif line[:8] == '#timeout' and 'timeout 5' not in loader_data:
elif line[:8] == '#timeout' and 'timeout 15' not in loader_data:
# We add in the default timeout to support dual-boot
loader.write(f"{line[1:]}\n")
else:

View File

@ -181,7 +181,7 @@ class GeneralMenu:
;type preview_size: float (range 0..1)
"""
self._enabled_order = []
self._enabled_order :List[str] = []
self._translation = Translation.load_nationalization()
self.is_context_mgr = False
self._data_store = data_store if data_store is not None else {}