summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/plugins/source/bootimg-pcbios.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/wic/plugins/source/bootimg-pcbios.py')
-rw-r--r--scripts/lib/wic/plugins/source/bootimg-pcbios.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/wic/plugins/source/bootimg-pcbios.py b/scripts/lib/wic/plugins/source/bootimg-pcbios.py
index 5caffbc8e2..ae5fc0ca2a 100644
--- a/scripts/lib/wic/plugins/source/bootimg-pcbios.py
+++ b/scripts/lib/wic/plugins/source/bootimg-pcbios.py
@@ -37,7 +37,7 @@ class BootimgPcbiosPlugin(SourcePlugin):
37 name = 'bootimg-pcbios' 37 name = 'bootimg-pcbios'
38 38
39 @classmethod 39 @classmethod
40 def do_install_disk(self, disk, disk_name, cr, workdir, oe_builddir, 40 def do_install_disk(cls, disk, disk_name, cr, workdir, oe_builddir,
41 bootimg_dir, kernel_dir, native_sysroot): 41 bootimg_dir, kernel_dir, native_sysroot):
42 """ 42 """
43 Called after all partitions have been prepared and assembled into a 43 Called after all partitions have been prepared and assembled into a
@@ -64,7 +64,7 @@ class BootimgPcbiosPlugin(SourcePlugin):
64 raise ImageError("Unable to set MBR to %s" % full_path) 64 raise ImageError("Unable to set MBR to %s" % full_path)
65 65
66 @classmethod 66 @classmethod
67 def do_configure_partition(self, part, source_params, cr, cr_workdir, 67 def do_configure_partition(cls, part, source_params, cr, cr_workdir,
68 oe_builddir, bootimg_dir, kernel_dir, 68 oe_builddir, bootimg_dir, kernel_dir,
69 native_sysroot): 69 native_sysroot):
70 """ 70 """
@@ -113,7 +113,7 @@ class BootimgPcbiosPlugin(SourcePlugin):
113 cfg.close() 113 cfg.close()
114 114
115 @classmethod 115 @classmethod
116 def do_prepare_partition(self, part, source_params, cr, cr_workdir, 116 def do_prepare_partition(cls, part, source_params, cr, cr_workdir,
117 oe_builddir, bootimg_dir, kernel_dir, 117 oe_builddir, bootimg_dir, kernel_dir,
118 rootfs_dir, native_sysroot): 118 rootfs_dir, native_sysroot):
119 """ 119 """