summaryrefslogtreecommitdiffstats
path: root/openpower
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2017-01-16 15:34:15 -0600
committerPatrick Williams <patrick@stwcx.xyz>2017-01-16 15:40:25 -0600
commitf4d24eea37935d1dd769243e555b35228dc265bf (patch)
tree6561e2ba43db3d345a4042a0b1bb462bcb4b50f7 /openpower
parent32102d1d93e1dd24097840e742c6ff6fe4c4dd6e (diff)
downloadtalos-op-build-f4d24eea37935d1dd769243e555b35228dc265bf.tar.gz
talos-op-build-f4d24eea37935d1dd769243e555b35228dc265bf.zip
release-notes: Support P9 branch variable names
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Diffstat (limited to 'openpower')
-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