You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installer detects all ESPs but only shows the first suitable one as an option in combobox.
def get_suitable_esp(self):
""" Attempt to find the suitable ESP.... """
l = self.dp.collect_esp()
if not l:
return None
e = l[0]
if e.freespace < ESP_FREE_REQUIRED:
return None
return e
The text was updated successfully, but these errors were encountered:
You do realise that many systems will happily ignore multiple ESPs - and it's typically only full desktops that are OK with it? Laptops of various vendors (read: shitty firmware) can struggle with multiple ESPs, or just completely ignore them, or provide no mechanism at all to select a secondary.
Sidenote, the method returns the largest ESP with more than 60MB free.
Installer detects all ESPs but only shows the first suitable one as an option in combobox.
def get_suitable_esp(self):
""" Attempt to find the suitable ESP.... """
l = self.dp.collect_esp()
if not l:
return None
e = l[0]
if e.freespace < ESP_FREE_REQUIRED:
return None
return e
The text was updated successfully, but these errors were encountered: