diff options
| author | João Henrique Ferreira de Freitas <joaohf@gmail.com> | 2014-03-29 00:12:04 -0300 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-30 10:10:35 +0100 | 
| commit | 550e9317348dd6254c9dd55fa425b92f278b7c7a (patch) | |
| tree | 059bdaf0a9d720897d9318a597a8fe033aca21a9 /scripts/lib/mic/plugins/source/bootimg-pcbios.py | |
| parent | 25d16c493412bdec11fd169edc92ce6df9338020 (diff) | |
| download | poky-550e9317348dd6254c9dd55fa425b92f278b7c7a.tar.gz | |
wic: Add rootfs_dir argument to do_prepare_partition() method
The do_prepare_partition() method from RootfsPlugin class need
to know what will be the rootfs_dir. This makes sense when .wks
file has a partition set up like this:
  part /standby --source rootfs --rootfs-dir=<special rootfs> ...
then do_prepare_partition() will work with the correct rootfs.
(From OE-Core rev: 6042b097a8fc24f2b85eb9848fb007a3c6c090a9)
Signed-off-by: João Henrique Ferreira de Freitas <joaohf@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/mic/plugins/source/bootimg-pcbios.py')
| -rw-r--r-- | scripts/lib/mic/plugins/source/bootimg-pcbios.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/mic/plugins/source/bootimg-pcbios.py b/scripts/lib/mic/plugins/source/bootimg-pcbios.py index fad150f940..1211e5c93b 100644 --- a/scripts/lib/mic/plugins/source/bootimg-pcbios.py +++ b/scripts/lib/mic/plugins/source/bootimg-pcbios.py  | |||
| @@ -124,7 +124,7 @@ class BootimgPcbiosPlugin(SourcePlugin): | |||
| 124 | 124 | ||
| 125 | @classmethod | 125 | @classmethod | 
| 126 | def do_prepare_partition(self, part, cr, cr_workdir, oe_builddir, bootimg_dir, | 126 | def do_prepare_partition(self, part, cr, cr_workdir, oe_builddir, bootimg_dir, | 
| 127 | kernel_dir, native_sysroot): | 127 | kernel_dir, rootfs_dir, native_sysroot): | 
| 128 | """ | 128 | """ | 
| 129 | Called to do the actual content population for a partition i.e. it | 129 | Called to do the actual content population for a partition i.e. it | 
| 130 | 'prepares' the partition to be incorporated into the image. | 130 | 'prepares' the partition to be incorporated into the image. | 
