summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xopenpower/scripts/release-notes11
1 files changed, 11 insertions, 0 deletions
diff --git a/openpower/scripts/release-notes b/openpower/scripts/release-notes
index 402c88d0..eb32d5c3 100755
--- a/openpower/scripts/release-notes
+++ b/openpower/scripts/release-notes
@@ -77,11 +77,22 @@ while(my $line = <OP_SUMMARY>)
print "Old $1:$3\n";
$old_level->{$1} = $3;
}
+ if ($line =~ m/-([^[:space:]]*)_VERSION_BRANCH_MASTER([[:space:]]*\?*=[[:space:]]*)(.*)/)
+ {
+ print "Old $1:$3\n";
+ $old_level->{$1} = $3;
+ }
if ($line =~ m/\+([^[:space:]]*)_VERSION([[:space:]]*\?*=[[:space:]]*)(.*)/)
{
print "New $1:$3\n";
$new_level->{$1} = $3;
}
+ if ($line =~ m/\+([^[:space:]]*)_VERSION_BRANCH_MASTER([[:space:]]*\?*=[[:space:]]*)(.*)/)
+ {
+ print "New $1:$3\n";
+ $new_level->{$1} = $3;
+ }
+
if ($line =~ m/-[[:space:]]*default[[:space:]]*"([^[:space:]]*)"[[:space:]]*if[[:space:]]BR2_([^[:space:]]*)_LATEST_VERSION/)
{
print "Old $2:$1\n";
OpenPOWER on IntegriCloud