From 2edc1883b2b62327516d91f8cdaac939570c3384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 14 May 2015 17:37:18 +0200 Subject: Fix booting process and test target Test target wasn't working properly. Now it should work. --- scripts/kernel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/kernel.py') diff --git a/scripts/kernel.py b/scripts/kernel.py index 4494f22..71ad1ac 100644 --- a/scripts/kernel.py +++ b/scripts/kernel.py @@ -39,8 +39,8 @@ def make(): wd = os.getcwd() os.chdir(sf(conf.linux_sources)) if conf.kernel_make_output: - subprocess.call(build_command, env=utils.get_kernel_env()) + subprocess.call(conf.build_command, env=utils.get_kernel_env()) else: - subprocess.call(build_command, stdout=subprocess.DEVNULL, + subprocess.call(conf.build_command, stdout=subprocess.DEVNULL, env=utils.get_kernel_env()) os.chdir(wd) -- cgit v1.2.3