From 564c83be5ee1f69e6d097c20dbfa3a76cccc0aa0 Mon Sep 17 00:00:00 2001 From: Cristiana Voicu Date: Mon, 29 Jul 2013 10:02:24 +0000 Subject: bitbake: hob/bitbake: save the description of a custom image When an new image is saved, the dialog for this action has a field for the description. Changed how an image is saved, by appending the DESCRIPTION variable at the end of the .bb file. [YOCTO #4193] (Bitbake rev: 5629007f2b984005e3a8ac5d9b71422cbc2f1409) Signed-off-by: Cristiana Voicu Signed-off-by: Richard Purdie --- bitbake/lib/bb/command.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake/lib/bb/command.py') diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 1893cce71e..5eb34aff3d 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py @@ -215,8 +215,9 @@ class CommandsSync: base_image = params[1] package_queue = params[2] timestamp = params[3] + description = params[4] return command.cooker.generateNewImage(image, base_image, - package_queue, timestamp) + package_queue, timestamp, description) def ensureDir(self, command, params): directory = params[0] -- cgit v1.2.3-54-g00ecf