From 3d7df7b5b5c4d9293709a12396adbc38b9bf58db Mon Sep 17 00:00:00 2001 From: Paul Barker Date: Sun, 26 Oct 2014 19:36:22 +0000 Subject: package_manager: Fix BAD_RECOMMENDATIONS for opkg In package_manager.py, when using opkg as the packager, the command 'opkg info ' is called to get information about each pkg in BAD_RECOMMENDATIONS in a format that can be written to the status file. The 'Status: ...' line is modified and all other lines are passed through. Changing the verbosity level argument for this command will change what it written into the status file. Crucially, with the default verbosity level, no blank lines are being printed by the opkg command and so no blank lines are being written to the status file to separate each package entry. The package parsing code in opkg expects package entries in the status file to be separated by at least one blank line. If no blank line is seen, the next package entry is interpreted as a continuation of the last package entry, but the new values overwrite the old values. So with the default verbosity level, a blank line follows some package entries and these are parsed. The others are dropped due to the lack of blank lines. As the verbosity increases, more debugging messages add blank lines and more packages are parsed. The solution to ensure that this works correctly regardless of the verbosity level is simply add a blank line after the output of 'opkg info' is written to the status file, ensuring that the next package is separated from the current package. [YOCTO #6816] (From OE-Core rev: d0326ff5abde814da8647debfd559fcb9aede3a4) Signed-off-by: Paul Barker Cc: Chris Carr Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oe/package_manager.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 1c33b0fb64..8e871a59f9 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py @@ -1381,6 +1381,10 @@ class OpkgPM(PackageManager): else: status.write(line + "\n") + # Append a blank line after each package entry to ensure that it + # is separated from the following entry + status.write("\n") + ''' The following function dummy installs pkgs and returns the log of output. ''' -- cgit v1.2.3-54-g00ecf