aboutsummaryrefslogtreecommitdiff
path: root/scripts/confmk.py
blob: b8a1e6c0b9bca65eb9eaec57c1b611c75af3cd67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env 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("ARCH := " + conf.ARCH + "\n")
		f.write("\n")
		f.write("BUILDROOT_INITRAM := " + conf.buildroot_initram + "\n")
		f.write("BUILDROOT_INITTAB_DIRECTIVE := " + conf.buildroot_inittab_directive + "\n")
		f.write("BUILDROOT_INITSCRIPT := " + conf.buildroot_initscript + "\n")
		f.write("BUILDROOT_DEF_CONFIG := " + conf.buildroot_def_config + "\n")

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

if __name__ == '__main__':
	gen_confmk()