aboutsummaryrefslogtreecommitdiff
path: root/scripts/confmk.py
blob: a508d399a74089bd1ca372bca4a41292178935ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/python3
import os
import sys
from conf import conf

def gen_confmk():
	try:
		os.remove(conf.dot_confmk)
	except OSError:
		pass

	with open(conf.dot_confmk, 'w') as f:
		f.write("# This file is generated. Please don't edit this file.\n")
		f.write("SRCARCH := " + conf.SRCARCH + "\n")
		f.write("\n")
		f.write("BUILDROOT_INITRAM := " + conf.buildroot_initram + "\n")
		f.write("INITRAM := " + conf.initram + "\n")

#################################################################################

if __name__ == '__main__':
	gen_confmk()