diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-02-09 16:48:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 20:06:45 -0800 |
commit | 417e5fbe2bde800d5ea9647f48034979dc4cd2c3 (patch) | |
tree | e4390cc18313416bb43e463e40ad011c4cb94b18 /scripts/lib/wic/plugins/source | |
parent | 6d91c5f6f43e71ea8a4b0ba3015dd450d41aaeff (diff) | |
download | poky-417e5fbe2bde800d5ea9647f48034979dc4cd2c3.tar.gz |
wic: direct: remove set_bootimg_dir setter
Removed java-like setter set_bootimg_dir. It's more pythonic
to access public attributes directly.
(From OE-Core rev: c2a6ca4883ea59e6492ad3b4aa0e9bc358b87fed)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/plugins/source')
-rw-r--r-- | scripts/lib/wic/plugins/source/bootimg-efi.py | 2 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/source/bootimg-pcbios.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/wic/plugins/source/bootimg-efi.py b/scripts/lib/wic/plugins/source/bootimg-efi.py index dd6c920267..95316c80c0 100644 --- a/scripts/lib/wic/plugins/source/bootimg-efi.py +++ b/scripts/lib/wic/plugins/source/bootimg-efi.py | |||
@@ -187,7 +187,7 @@ class BootimgEFIPlugin(SourcePlugin): | |||
187 | if not bootimg_dir: | 187 | if not bootimg_dir: |
188 | msger.error("Couldn't find DEPLOY_DIR_IMAGE, exiting\n") | 188 | msger.error("Couldn't find DEPLOY_DIR_IMAGE, exiting\n") |
189 | # just so the result notes display it | 189 | # just so the result notes display it |
190 | creator.set_bootimg_dir(bootimg_dir) | 190 | creator.bootimg_dir = bootimg_dir |
191 | 191 | ||
192 | staging_kernel_dir = kernel_dir | 192 | staging_kernel_dir = kernel_dir |
193 | 193 | ||
diff --git a/scripts/lib/wic/plugins/source/bootimg-pcbios.py b/scripts/lib/wic/plugins/source/bootimg-pcbios.py index 0be2b78e51..e5f6a328ed 100644 --- a/scripts/lib/wic/plugins/source/bootimg-pcbios.py +++ b/scripts/lib/wic/plugins/source/bootimg-pcbios.py | |||
@@ -151,7 +151,7 @@ class BootimgPcbiosPlugin(SourcePlugin): | |||
151 | if not _has_syslinux(bootimg_dir): | 151 | if not _has_syslinux(bootimg_dir): |
152 | msger.error("Please build syslinux first\n") | 152 | msger.error("Please build syslinux first\n") |
153 | # just so the result notes display it | 153 | # just so the result notes display it |
154 | creator.set_bootimg_dir(bootimg_dir) | 154 | creator.bootimg_dir = bootimg_dir |
155 | 155 | ||
156 | staging_kernel_dir = kernel_dir | 156 | staging_kernel_dir = kernel_dir |
157 | 157 | ||