Skip to content

Commit

Permalink
multiboot fix BSOD with unsupport vuplus image in slot
Browse files Browse the repository at this point in the history
  • Loading branch information
atvcaptain committed May 27, 2023
1 parent 8e03af8 commit 646b6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Tools/MultiBoot.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ def deriveSlotInfo(self, path): # Part of analyzeSlot() within getSlotImageList
date = "00000000"
info["compiledate"] = date
lines = fileReadLines(pathjoin(path, "etc/issue"), source=MODULE_NAME)
if lines:
if lines and "vuplus" not in lines[0]:
data = lines[-2].strip()[:-6].split()
info["distro"] = " ".join(data[:-1])
info["displaydistro"] = {
Expand Down

0 comments on commit 646b6ae

Please sign in to comment.