blob: 5b94df2194837dd3343265df969e3147d9b373ea (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | #!/usr/bin/env python3
import os
import sys
from conf import conf
from conf import sf
import initialize
import kernel
import boot
def test():
	initialize.base()
	initialize.parse_kconfig()
	initialize.gen_requred() # Call this to check initial solution
	conf.kernel_make_output = True
	kernel.make()
	conf.boot_output = True
	boot.boot()
#################################################################################
if __name__ == "__main__":
	test()
 |