mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 00:32:14 +02:00
wic: get rid of get_timeout getter
Used bootloader.timeout instead of kickstart.get_timeout getter. Accessing attributes instead of getting them with getters is more pythonic, shorter and readable. It also more consistent as most of partition and bootloader attributes are used this way. This change also takes care of appendLine bootloader attribute: it's renamed to bootloader.append attribute provided by new parser. (From OE-Core rev: 8088caeff5bf4ee9279b47a69c9f1e5537909601) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
26fb2a1a45
commit
4d5d5dd428
@@ -83,10 +83,7 @@ class RootfsPlugin(SourcePlugin):
|
||||
syslinux_conf = ""
|
||||
syslinux_conf += "PROMPT 0\n"
|
||||
|
||||
timeout = kickstart.get_timeout(image_creator.ks)
|
||||
if not timeout:
|
||||
timeout = 0
|
||||
syslinux_conf += "TIMEOUT " + str(timeout) + "\n"
|
||||
syslinux_conf += "TIMEOUT " + str(bootloader.timeout) + "\n"
|
||||
syslinux_conf += "ALLOWOPTIONS 1\n"
|
||||
|
||||
# Derive SERIAL... line from from kernel boot parameters
|
||||
|
||||
Reference in New Issue
Block a user