diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/boot.py | 3 | ||||
-rwxr-xr-x | scripts/from_folder | 2 | ||||
-rw-r--r-- | scripts/nbscript | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/scripts/boot.py b/scripts/boot.py index 7ae30a9..2d1461a 100644 --- a/scripts/boot.py +++ b/scripts/boot.py @@ -29,7 +29,8 @@ def boot(config, to_database = True): value = None try: - out = utils.callsubprocess('parse_command', conf.parse_command, + out = utils.callsubprocess('parse_command', conf.parse_command + + [os.path.join(conf.output_folder, config.cfile)], conf.parse_output, True) value = float(out[0]) except Exception as e: diff --git a/scripts/from_folder b/scripts/from_folder index b72899f..8801a48 100755 --- a/scripts/from_folder +++ b/scripts/from_folder @@ -1,6 +1,6 @@ #!/bin/bash -FOLDER=linux/arch +FOLDER=linux/kernel CONF=`find $FOLDER -name Kconfig | xargs grep -e ^config | cut -d ' ' -f2` diff --git a/scripts/nbscript b/scripts/nbscript index ef99dd8..0f5ec55 100644 --- a/scripts/nbscript +++ b/scripts/nbscript @@ -1,4 +1,4 @@ #!/usr/bin/env novaboot # Novaboot script load ../jobfiles/linuxImage console=ttyS0,115200 -load ../buildroot/output/images/rootfs.cpio.gz +load ../root/cyclictest/images/rootfs.cpio.gz |