Fix Kconfig option list generator
The Kconfig option list generator was broken by two different changes to the project in the last few years: - the switch to git from svn - allowing wild card includes in Kconfig Change-Id: I6bc5024a04958e9718d2e3a3a3bb6d69d4277eb6 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/10115 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
@@ -21,6 +21,8 @@
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
import glob
|
||||
|
||||
helplen = 0
|
||||
extra_chapters = 0
|
||||
|
||||
@@ -105,7 +107,8 @@ def readfile(filename):
|
||||
sys.stdout.write("\n")
|
||||
elif words[0] == "source":
|
||||
fn=zapquotes(words[1])
|
||||
readfile(fn)
|
||||
for name in glob.glob(fn):
|
||||
readfile(name)
|
||||
elif words[0] in ("default","depends", "select", "if", "endif", "#"): pass
|
||||
#else: sys.stderr.write("unknown: %s\n" % i)
|
||||
if helplen: sys.stdout.write("||\n")
|
||||
|
Reference in New Issue
Block a user