stages/isolinux: default list

Otherwise when `opts` (which isn't `required`) is left out we fail the
stage.
This commit is contained in:
Simon de Vlieger 2023-05-15 11:02:37 +02:00
parent 621fa47563
commit a348fe2d49

View file

@ -190,7 +190,7 @@ def main(tree, inputs, options):
version = options["product"]["version"]
kdir = options["kernel"]["dir"]
kopts = options["kernel"].get("opts")
kopts = options["kernel"].get("opts", [])
debug = options.get("debug", False)
data = inputs["data"]["path"]