diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-27 21:28:47 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-27 21:28:47 +0200 |
commit | 99a8f39ae04baf1de67659a13d816eb3b89daa99 (patch) | |
tree | ddc4f39111ef0e50b328b4e5ab657d0c4e94ba38 | |
parent | d1a4966163e2456e787d00ec3f1d290b5491b44f (diff) | |
download | linux-conf-perf-99a8f39ae04baf1de67659a13d816eb3b89daa99.tar.gz linux-conf-perf-99a8f39ae04baf1de67659a13d816eb3b89daa99.tar.bz2 linux-conf-perf-99a8f39ae04baf1de67659a13d816eb3b89daa99.zip |
Add NBSCRIPT config
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | conf.py | 4 | ||||
-rwxr-xr-x | scripts/confmk.py | 1 |
3 files changed, 4 insertions, 2 deletions
@@ -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 @@ -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") ################################################################################# |