summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/plugins/source/rawcopy.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/wic/plugins/source/rawcopy.py')
-rw-r--r--scripts/lib/wic/plugins/source/rawcopy.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/lib/wic/plugins/source/rawcopy.py b/scripts/lib/wic/plugins/source/rawcopy.py
index bc71cf6f76..431afce7c4 100644
--- a/scripts/lib/wic/plugins/source/rawcopy.py
+++ b/scripts/lib/wic/plugins/source/rawcopy.py
@@ -59,17 +59,17 @@ class RawCopyPlugin(SourcePlugin):
59 Called to do the actual content population for a partition i.e. it 59 Called to do the actual content population for a partition i.e. it
60 'prepares' the partition to be incorporated into the image. 60 'prepares' the partition to be incorporated into the image.
61 """ 61 """
62 if not bootimg_dir: 62 if not kernel_dir:
63 bootimg_dir = get_bitbake_var("DEPLOY_DIR_IMAGE") 63 kernel_dir = get_bitbake_var("DEPLOY_DIR_IMAGE")
64 if not bootimg_dir: 64 if not kernel_dir:
65 raise WicError("Couldn't find DEPLOY_DIR_IMAGE, exiting") 65 raise WicError("Couldn't find DEPLOY_DIR_IMAGE, exiting")
66 66
67 logger.debug('Bootimg dir: %s', bootimg_dir) 67 logger.debug('Kernel dir: %s', kernel_dir)
68 68
69 if 'file' not in source_params: 69 if 'file' not in source_params:
70 raise WicError("No file specified") 70 raise WicError("No file specified")
71 71
72 src = os.path.join(bootimg_dir, source_params['file']) 72 src = os.path.join(kernel_dir, source_params['file'])
73 dst = os.path.join(cr_workdir, "%s.%s" % (source_params['file'], part.lineno)) 73 dst = os.path.join(cr_workdir, "%s.%s" % (source_params['file'], part.lineno))
74 74
75 if 'skip' in source_params: 75 if 'skip' in source_params: