@@ -208,7 +208,7 @@ class BootimgPcbiosPlugin(SourcePlugin):
# 'None' being the value placed within the configuration
# file.
if not bootloader.timeout:
- bootloader.timeout = 500
+ bootloader.timeout = 0
# Set a default kernel params string if none specified
# to avoid 'None' being the value placed within the
@@ -364,7 +364,7 @@ class BootimgPcbiosPlugin(SourcePlugin):
# 'None' being the value placed within the configuration
# file.
if not bootloader.timeout:
- bootloader.timeout = 500
+ bootloader.timeout = 0
# Set a default kernel params string if none specified
# to avoid 'None' being the value placed within the
If caller doesn't specify a timeout more than likely because caller doesn't want one. Set it to zero. This also fixes boot time issues related to OE selftest that leverage boot testing with qemu. Signed-off-by: Vincent Davis Jr <vince@underview.tech> --- scripts/lib/wic/plugins/source/bootimg_pcbios.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)