diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2017-01-16 15:34:15 -0600 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2017-01-16 15:40:25 -0600 |
commit | f4d24eea37935d1dd769243e555b35228dc265bf (patch) | |
tree | 6561e2ba43db3d345a4042a0b1bb462bcb4b50f7 /openpower | |
parent | 32102d1d93e1dd24097840e742c6ff6fe4c4dd6e (diff) | |
download | talos-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-x | openpower/scripts/release-notes | 11 |
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"; |