aboutsummaryrefslogtreecommitdiff
path: root/scripts/write_config/solution.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-07-24 17:19:22 +0200
committerKarel Kočí <cynerd@email.cz>2015-07-24 17:19:22 +0200
commit4df04029a616013e1d795102eab790c628d6dac1 (patch)
treedc6c194934e371cae82d3b511673dec4b1f1f612 /scripts/write_config/solution.h
parent2088e7c783964176076f83d8df04dac5adc9781d (diff)
downloadlinux-conf-perf-4df04029a616013e1d795102eab790c628d6dac1.tar.gz
linux-conf-perf-4df04029a616013e1d795102eab790c628d6dac1.tar.bz2
linux-conf-perf-4df04029a616013e1d795102eab790c628d6dac1.zip
Rewrite write_config
Write config don't need to load jobfiles any more. We only have to load file passed via argument and save using kconfig code. Configuration checking is disabled. It needs more editing.
Diffstat (limited to 'scripts/write_config/solution.h')
-rw-r--r--scripts/write_config/solution.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/write_config/solution.h b/scripts/write_config/solution.h
index 100a9fe..7a37c15 100644
--- a/scripts/write_config/solution.h
+++ b/scripts/write_config/solution.h
@@ -3,7 +3,6 @@
#include <stdbool.h>
#include <kconfig/lkc.h>
#include <build_files.h>
-#include "symlist.h"
#ifndef _SOLUTION_H_
#define _SOLUTION_H_
@@ -15,7 +14,7 @@ struct solution {
size_t size;
};
-struct solution *solution_load(FILE *fmap, FILE *fsolved);
-void solution_check(struct symlist *sl, struct solution *s);
+struct solution *solution_load(char *source_config);
+int solution_check(struct solution *s);
#endif /* _SOLUTION_H_ */