mirror of
https://git.yoctoproject.org/poky
synced 2026-04-19 06:32:13 +02:00
devtool: status: Sort entries before printing
Sorted entries are easier to read. (From OE-Core rev: d0a123ec564f6d36977e472f8bc63f9c050ee616) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a2b8d36daa
commit
9bf6b1127a
@@ -1597,7 +1597,7 @@ def update_recipe(args, config, basepath, workspace):
|
||||
def status(args, config, basepath, workspace):
|
||||
"""Entry point for the devtool 'status' subcommand"""
|
||||
if workspace:
|
||||
for recipe, value in workspace.items():
|
||||
for recipe, value in sorted(workspace.items()):
|
||||
recipefile = value['recipefile']
|
||||
if recipefile:
|
||||
recipestr = ' (%s)' % recipefile
|
||||
|
||||
Reference in New Issue
Block a user