|
@@ -17,6 +17,10 @@ class Builder(object):
|
|
config_file = os.path.join(self.builddir, ".config")
|
|
config_file = os.path.join(self.builddir, ".config")
|
|
with open(config_file, "w+") as cf:
|
|
with open(config_file, "w+") as cf:
|
|
cf.write(self.config)
|
|
cf.write(self.config)
|
|
|
|
+ # dump the defconfig to the logfile for easy debugging
|
|
|
|
+ self.logfile.write("> start defconfig\n" + self.config +
|
|
|
|
+ "> end defconfig\n")
|
|
|
|
+ self.logfile.flush()
|
|
|
|
|
|
cmd = ["make",
|
|
cmd = ["make",
|
|
"O={}".format(self.builddir),
|
|
"O={}".format(self.builddir),
|