summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/plugins/source/fsimage.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/wic/plugins/source/fsimage.py')
-rw-r--r--scripts/lib/wic/plugins/source/fsimage.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/wic/plugins/source/fsimage.py b/scripts/lib/wic/plugins/source/fsimage.py
index ef56cf278b..cd59c6e87e 100644
--- a/scripts/lib/wic/plugins/source/fsimage.py
+++ b/scripts/lib/wic/plugins/source/fsimage.py
@@ -25,7 +25,7 @@ class FSImagePlugin(SourcePlugin):
25 name = 'fsimage' 25 name = 'fsimage'
26 26
27 @classmethod 27 @classmethod
28 def do_install_disk(self, disk, disk_name, cr, workdir, oe_builddir, 28 def do_install_disk(cls, disk, disk_name, cr, workdir, oe_builddir,
29 bootimg_dir, kernel_dir, native_sysroot): 29 bootimg_dir, kernel_dir, native_sysroot):
30 """ 30 """
31 Called after all partitions have been prepared and assembled into a 31 Called after all partitions have been prepared and assembled into a
@@ -34,7 +34,7 @@ class FSImagePlugin(SourcePlugin):
34 pass 34 pass
35 35
36 @classmethod 36 @classmethod
37 def do_configure_partition(self, part, source_params, cr, cr_workdir, 37 def do_configure_partition(cls, part, source_params, cr, cr_workdir,
38 oe_builddir, bootimg_dir, kernel_dir, 38 oe_builddir, bootimg_dir, kernel_dir,
39 native_sysroot): 39 native_sysroot):
40 """ 40 """
@@ -44,7 +44,7 @@ class FSImagePlugin(SourcePlugin):
44 pass 44 pass
45 45
46 @classmethod 46 @classmethod
47 def do_prepare_partition(self, part, source_params, cr, cr_workdir, 47 def do_prepare_partition(cls, part, source_params, cr, cr_workdir,
48 oe_builddir, bootimg_dir, kernel_dir, 48 oe_builddir, bootimg_dir, kernel_dir,
49 rootfs_dir, native_sysroot): 49 rootfs_dir, native_sysroot):
50 """ 50 """