aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix parse_kconfig choice parsingKarel Kočí2015-09-12
| | | | | | | Parsing choices was implemented wrong. For non-optional choice output rules must contain also dependency of all choice symbols. Because if no choice symbol has fulfilled dependencies, than choice shouldn't be selected.
* Fix fromfolder scriptKarel Kočí2015-09-12
| | | | | Script ended with exception when no file with list of non-remove configuration options was provided.
* Reimplement fromfolder scriptKarel Kočí2015-08-28
| | | | | | Removing configuration options from configuration file according to definition folder. New implementation allows to specify required configuration options that shouldn't be removed in any case.
* Ryuglab target update linuxKarel Kočí2015-08-28
| | | | Setup Linux of ryuglab to realtime branch.
* Fix terminate variable for single thread modeKarel Kočí2015-08-26
| | | | Latest changes for multithreading broke single thread mode.
* Disable multithread for ryuglab targetKarel Kočí2015-08-26
| | | | | Multithreading is not working properly yet. So it won't be used for active measuring.
* Use event for thread synchronization in multithread modeKarel Kočí2015-08-26
|
* Fix thread alive checkKarel Kočí2015-08-26
|
* Add print to signal thread start and stop in multithread modeKarel Kočí2015-08-26
|
* Fix multithread locking and terminatingKarel Kočí2015-08-26
|
* Fix configuration generationKarel Kočí2015-08-26
|
* Fix multithreadingKarel Kočí2015-08-26
|
* Fix random configuration generatorKarel Kočí2015-08-26
| | | | | Picosat is as default using 0 as seed for random generator. This lead on same configuration every time.
* Add dependency to .conf.mk on .target in MakefileKarel Kočí2015-08-26
| | | | | If .target file is changed (=target changed), makefile configuration should been regenerated.
* Fix wrong function call in configurations scriptKarel Kočí2015-08-24
|
* Add boot timeoutKarel Kočí2015-08-24
| | | | | | Boot process should timeout after selected number of seconds if no output is generated. This allows resolving some problems with possible boot stuck.
* Fix wrong input type to compare_text in register_confKarel Kočí2015-08-19
|
* Fix missing utils include in loop.pyKarel Kočí2015-08-19
|
* Update ryuglab target linuxKarel Kočí2015-08-19
|
* Remove linux moduleKarel Kočí2015-08-19
| | | | | This modules is no longer used. It is expected that every target will have it's own linux target.
* Change makefile linux paths to configured Linux source pathKarel Kočí2015-08-19
| | | | Also remove unused buildroot targets
* Remove unused conf variablesKarel Kočí2015-08-19
| | | | | Some variables were no longer used or with current settup system made no sence.
* Move boot and remove compile scriptKarel Kočí2015-08-19
| | | | | Compile script is not required if we use GNUmakefile. Holding script folder only because of boot script makes no sense.
* Update linux for ryuglab targetKarel Kočí2015-08-19
|
* Fix build command for ryuglab targetKarel Kočí2015-08-19
|
* Fix missing include in test scriptKarel Kočí2015-08-19
|
* Fix wrong folder and remove unused scriptKarel Kočí2015-08-19
| | | | | | In boot script was old name usable before previous commit. Also patch script removed This script is no longer required, because path is applied in submodule.
* Rename ryuglab target folder cyclictest to bootKarel Kočí2015-08-19
| | | | | Boot configuration it this folder wasn't usable only just for cyclictest, but for any test. So new name is more descriptive.
* Add linux for target ryuglabKarel Kočí2015-08-19
|
* Added dirty repository checkKarel Kočí2015-08-19
| | | | | Test run and initialization now shows warning about dirty repository and loop can't be executed if linux or root repository is dirty.
* Fix wrong input format to databaseKarel Kočí2015-08-19
| | | | | add_measure in boot script was called with list of lines instead of single string.
* Fix utils.callsubprocess stdinKarel Kočí2015-08-19
|
* Fix boot.py parse callKarel Kočí2015-08-19
|
* Add git ignore for linksKarel Kočí2015-08-19
| | | | | While booting are created links to upper folders. These links should be ignored from git.
* Print command and version to boot outputKarel Kočí2015-08-19
|
* Fix boot output parse scriptKarel Kočí2015-08-19
|
* Add message about what configuration is measuredKarel Kočí2015-08-19
|
* Remove unused atribute for parse script callKarel Kočí2015-08-19
|
* Fix type exception in kernel.configKarel Kočí2015-08-19
| | | | As name was given tempfile object no name of generated temporally file.
* Remove configuration folder creation from initializationKarel Kočí2015-08-19
| | | | This folder is no longer used and shouldn't be created.
* Store boot output to databaseKarel Kočí2015-08-19
| | | | | | | | | Because configuration is now stored in database only missing informations to make database fully descriptive is boot output. This makes output of boot command to be saved to database and not to file. Also parse script should read input from stdin and not from file from argument.
* Fix wrong exception excepted in configurations scriptKarel Kočí2015-08-18
|
* Write stderr to log file together with stdoutKarel Kočí2015-08-18
| | | | | | | Utils function callsubprocess now logs all program output including stderr. Convenient would be to print stderr even if output is disabled. But this would probably required threads.
* Fix relative path to external buildroot packagesKarel Kočí2015-08-18
|
* ryuglab boot force linksKarel Kočí2015-08-18
|
* Change patch apply for ryuglabKarel Kočí2015-08-18
| | | | Patch is now added directly as commit.
* Fix database get_configsortKarel Kočí2015-08-18
| | | | | Previous implementation was returning list of tuples. Now it is returning list of strings.
* Fix database add_configsortKarel Kočí2015-08-18
| | | | No attribute supplied when executed sql command.
* Generate configuration as ditionary in picosat functionKarel Kočí2015-08-18
| | | | | | Picosat output is parsed and automatically is resolved to dictionary with configuration option name as key and boolean value. This makes all configurations in script of same type. All are dictionaries this way.
* Add drop command for configopt tableKarel Kočí2015-08-18
| | | | This table was recently added, but was missing in databaseclean.sql.