1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import os
import sys
import subprocess
import shutil
from conf import conf
from conf import sf
import exceptions
import utils
def config(cfile):
wd = os.getcwd()
infile = os.path.join(sf(conf.configurations_folder), cfile)
os.chdir(sf(conf.linux_sources))
try:
utils.callsubprocess('write_config', [sf(conf.write_config), infile],
conf.kernel_config_output, env=utils.get_kernel_env())
except exceptions.ProcessFailed:
raise exceptions.ConfigurationError("some configs mismatch")
os.chdir(wd)
#def config_noprogram():
# # Executing old linux config
# env = dict(os.environ)
# wd = os.getcwd()
# os.chdir(sf(conf.linux_sources))
# if conf.kernel_config_output:
# sprc = subprocess.call('yes "" | make oldconfig', shell=True,
# env=utils.get_kernel_env())
# else:
# sprc = subprocess.call('yes "" | make oldconfig', shell=True,
# stdout=subprocess.DEVNULL, env=utils.get_kernel_env())
# os.chdir(wd)
def make(confhash):
wd = os.getcwd()
os.chdir(sf(conf.linux_sources))
if conf.kernel_make_output:
subprocess.call(conf.build_command, env=utils.get_kernel_env())
else:
subprocess.call(conf.build_command, stdout=subprocess.DEVNULL,
env=utils.get_kernel_env())
jobimage = os.path.join(sf(conf.build_folder), confhash + '_linux.img')
shutil.move(sf(conf.linux_image), jobimage)
os.chdir(wd)
return confhash + '_linux.img'
|