[U-Boot] [PATCH 2/2] patman: Do not sort changlog items order

Otavio Salvador otavio at ossystems.com.br
Sat Aug 18 19:46:05 CEST 2012


When writting the changelog of a series it is expect that this order
is going to be respected.

The sorting can make it out of context of the order had a meaning for
the reader so this patch remove the sort of items.

Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>
---
 tools/patman/series.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/patman/series.py b/tools/patman/series.py
index dddfab4..34eea92 100644
--- a/tools/patman/series.py
+++ b/tools/patman/series.py
@@ -164,7 +164,7 @@ class Series(dict):
                 if text not in out:
                     out.append(text)
             if out:
-                out = ['Changes in v%d:' % change] + sorted(out)
+                out = ['Changes in v%d:' % change] + out
                 if need_blank:
                     out = [''] + out
                 final += out
-- 
1.7.10.4



More information about the U-Boot mailing list