X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tools%2Fmicrocode-tool.py;h=069d961d80d00430b03ceba2e6f89edc50499fdd;hb=b31116308c6ebf4fcebacac8c346f603257547e5;hp=71c2e91566b54605282a35d4394fc5d5a3c204cd;hpb=921ed4e840fecd93ed14e11d1267f476e7e92d29;p=u-boot diff --git a/tools/microcode-tool.py b/tools/microcode-tool.py index 71c2e91566..069d961d80 100755 --- a/tools/microcode-tool.py +++ b/tools/microcode-tool.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # # Copyright (c) 2014 Google, Inc # @@ -95,9 +95,23 @@ def ParseHeaderFiles(fname_list): name = os.path.splitext(name)[0] data = [] with open(fname) as fd: + license_start = False + license_end = False for line in fd: line = line.rstrip() + if len(line) >= 2: + if line[0] == '/' and line[1] == '*': + license_start = True + continue + if line[0] == '*' and line[1] == '/': + license_end = True + continue + if license_start and not license_end: + # Ignore blank line + if len(line) > 0: + license_text.append(line) + continue # Omit anything after the last comma words = line.split(',')[:-1] data += [word + ',' for word in words]