aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-27 21:28:47 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-27 21:28:47 +0200
commit99a8f39ae04baf1de67659a13d816eb3b89daa99 (patch)
treeddc4f39111ef0e50b328b4e5ab657d0c4e94ba38
parentd1a4966163e2456e787d00ec3f1d290b5491b44f (diff)
downloadlinux-conf-perf-99a8f39ae04baf1de67659a13d816eb3b89daa99.tar.gz
linux-conf-perf-99a8f39ae04baf1de67659a13d816eb3b89daa99.tar.bz2
linux-conf-perf-99a8f39ae04baf1de67659a13d816eb3b89daa99.zip
Add NBSCRIPT config
-rw-r--r--Makefile1
-rw-r--r--conf.py4
-rwxr-xr-xscripts/confmk.py1
3 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3cc638d..5ed06ec 100644
--- a/Makefile
+++ b/Makefile
@@ -56,6 +56,7 @@ clean:
$(RM) -r build
$(RM) -r scripts/buildroot/system/skeleton/usr/share/benchmark
$(RM) $(INITRAM)
+ $(RM) $(NBSCRIPT)
distclean: clean distclean_linux distclean_buildroot
$(RM) .conf.mk
diff --git a/conf.py b/conf.py
index 3b6c39b..722332d 100644
--- a/conf.py
+++ b/conf.py
@@ -35,8 +35,6 @@ buildroot_inittab_directive = pf('scripts/buildroot_recipe/inittab_directive')
buildroot_initscript = pf('scripts/buildroot_recipe/linux-conf-perf')
buildroot_initram = pf('scripts/buildroot/output/images/rootfs.cpio.gz')
-nbscript = pf('scripts/nbscript')
-
# Programs paths
parse_kconfig = pf('scripts/parse_kconfig/parse')
write_config = pf('scripts/write_config/write')
@@ -49,3 +47,5 @@ kernel_config_output = True
kernel_make_output = True
boot_output = True
initram = build_folder + 'initram.gz'
+
+nbscript = 'scripts/nbscript'
diff --git a/scripts/confmk.py b/scripts/confmk.py
index 9647b5b..010ca64 100755
--- a/scripts/confmk.py
+++ b/scripts/confmk.py
@@ -20,6 +20,7 @@ def gen_confmk():
f.write("BUILDROOT_DEF_CONFIG := " + conf.buildroot_def_config + "\n")
f.write("\n")
f.write("INITRAM := " + conf.initram + "\n")
+ f.write("NBSCRIPTS := " + conf.nbscript + "\n")
#################################################################################