diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-02-03 17:54:40 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:23 +0000 |
commit | d701673b658d879726d6cf846a6d5f4173c3b0e5 (patch) | |
tree | cc20d6030a8ee2fb50e2763ec46561128098b5c3 /scripts | |
parent | a08e2019223d7c04916967d8fd42279e8e1e186f (diff) | |
download | openembedded-core-d701673b658d879726d6cf846a6d5f4173c3b0e5.tar.gz openembedded-core-d701673b658d879726d6cf846a6d5f4173c3b0e5.tar.bz2 openembedded-core-d701673b658d879726d6cf846a6d5f4173c3b0e5.zip |
wic: fix call of serial_console_form_kargs
As syslinux module has been recently removed and
serial_consloe_form_kargs became local API in rootfs_pcbios_ext plugin
it should be called without syslinux. prefix.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/wic/plugins/source/rootfs_pcbios_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugins/source/rootfs_pcbios_ext.py b/scripts/lib/wic/plugins/source/rootfs_pcbios_ext.py index bd6fd6cec7..cb1da93d30 100644 --- a/scripts/lib/wic/plugins/source/rootfs_pcbios_ext.py +++ b/scripts/lib/wic/plugins/source/rootfs_pcbios_ext.py @@ -122,7 +122,7 @@ class RootfsPlugin(SourcePlugin): syslinux_conf += "ALLOWOPTIONS 1\n" # Derive SERIAL... line from from kernel boot parameters - syslinux_conf += syslinux.serial_console_form_kargs(options) + "\n" + syslinux_conf += serial_console_form_kargs(options) + "\n" syslinux_conf += "DEFAULT linux\n" syslinux_conf += "LABEL linux\n" |