From 99a8f39ae04baf1de67659a13d816eb3b89daa99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 27 Apr 2015 21:28:47 +0200 Subject: Add NBSCRIPT config --- Makefile | 1 + conf.py | 4 ++-- scripts/confmk.py | 1 + 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") ################################################################################# -- cgit v1.2.3