1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
22 /* return true if 'path' exists, false otherwise */
23 static bool is_present(const char *path)
27 return !stat(path, &st);
30 /* return true if 'path' exists and it is a directory, false otherwise */
31 static bool is_dir(const char *path)
38 return S_ISDIR(st.st_mode);
41 /* return true if the given two files are the same, false otherwise */
42 static bool is_same(const char *file1, const char *file2)
49 fd1 = open(file1, O_RDONLY);
53 fd2 = open(file2, O_RDONLY);
57 ret = fstat(fd1, &st1);
60 ret = fstat(fd2, &st2);
64 if (st1.st_size != st2.st_size)
67 map1 = mmap(NULL, st1.st_size, PROT_READ, MAP_PRIVATE, fd1, 0);
68 if (map1 == MAP_FAILED)
71 map2 = mmap(NULL, st2.st_size, PROT_READ, MAP_PRIVATE, fd2, 0);
72 if (map2 == MAP_FAILED)
75 if (bcmp(map1, map2, st1.st_size))
88 * Create the parent directory of the given path.
90 * For example, if 'include/config/auto.conf' is given, create 'include/config'.
92 static int make_parent_dir(const char *path)
94 char tmp[PATH_MAX + 1];
97 strncpy(tmp, path, sizeof(tmp));
98 tmp[sizeof(tmp) - 1] = 0;
100 /* Remove the base name. Just return if nothing is left */
101 p = strrchr(tmp, '/');
106 /* Just in case it is an absolute path */
111 while ((p = strchr(p, '/'))) {
114 /* skip if the directory exists */
115 if (!is_dir(tmp) && mkdir(tmp, 0755))
126 static char depfile_path[PATH_MAX];
127 static size_t depfile_prefix_len;
129 /* touch depfile for symbol 'name' */
130 static int conf_touch_dep(const char *name)
136 /* check overflow: prefix + name + ".h" + '\0' must fit in buffer. */
137 if (depfile_prefix_len + strlen(name) + 3 > sizeof(depfile_path))
140 d = depfile_path + depfile_prefix_len;
144 *d++ = (c == '_') ? '/' : tolower(c);
147 /* Assume directory path already exists. */
148 fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
153 ret = make_parent_dir(depfile_path);
158 fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
167 struct conf_printer {
168 void (*print_symbol)(FILE *, struct symbol *, const char *, void *);
169 void (*print_comment)(FILE *, const char *, void *);
172 static void conf_warning(const char *fmt, ...)
173 __attribute__ ((format (printf, 1, 2)));
175 static void conf_message(const char *fmt, ...)
176 __attribute__ ((format (printf, 1, 2)));
178 static const char *conf_filename;
179 static int conf_lineno, conf_warnings;
181 static void conf_warning(const char *fmt, ...)
185 fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
186 vfprintf(stderr, fmt, ap);
187 fprintf(stderr, "\n");
192 static void conf_default_message_callback(const char *s)
199 static void (*conf_message_callback)(const char *s) =
200 conf_default_message_callback;
201 void conf_set_message_callback(void (*fn)(const char *s))
203 conf_message_callback = fn;
206 static void conf_message(const char *fmt, ...)
211 if (!conf_message_callback)
216 vsnprintf(buf, sizeof(buf), fmt, ap);
217 conf_message_callback(buf);
221 const char *conf_get_configname(void)
223 char *name = getenv("KCONFIG_CONFIG");
225 return name ? name : ".config";
228 static const char *conf_get_autoconfig_name(void)
230 char *name = getenv("KCONFIG_AUTOCONFIG");
232 return name ? name : "include/generated/auto.conf";
235 static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
242 sym->def[def].tri = mod;
243 sym->flags |= def_flags;
249 sym->def[def].tri = yes;
250 sym->flags |= def_flags;
254 sym->def[def].tri = no;
255 sym->flags |= def_flags;
258 if (def != S_DEF_AUTO)
259 conf_warning("symbol value '%s' invalid for %s",
265 for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
270 memmove(p2, p2 + 1, strlen(p2));
273 if (def != S_DEF_AUTO)
274 conf_warning("invalid string found");
280 if (sym_string_valid(sym, p)) {
281 sym->def[def].val = xstrdup(p);
282 sym->flags |= def_flags;
284 if (def != S_DEF_AUTO)
285 conf_warning("symbol value '%s' invalid for %s",
296 #define LINE_GROWTH 16
297 static int add_byte(int c, char **lineptr, size_t slen, size_t *n)
300 size_t new_size = slen + 1;
302 new_size += LINE_GROWTH - 1;
304 nline = xrealloc(*lineptr, new_size);
312 (*lineptr)[slen] = c;
317 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream)
319 char *line = *lineptr;
323 int c = getc(stream);
327 if (add_byte(c, &line, slen, n) < 0)
332 if (add_byte('\0', &line, slen, n) < 0)
339 if (add_byte(c, &line, slen, n) < 0)
351 int conf_read_simple(const char *name, int def)
355 size_t line_asize = 0;
361 in = zconf_fopen(name);
363 struct property *prop;
365 name = conf_get_configname();
366 in = zconf_fopen(name);
369 sym_add_change_count(1);
370 if (!sym_defconfig_list)
373 for_all_defaults(sym_defconfig_list, prop) {
374 if (expr_calc_value(prop->visible.expr) == no ||
375 prop->expr->type != E_SYMBOL)
377 sym_calc_value(prop->expr->left.sym);
378 name = sym_get_string_value(prop->expr->left.sym);
379 in = zconf_fopen(name);
381 conf_message("using defaults found in %s",
391 conf_filename = name;
395 def_flags = SYMBOL_DEF << def;
396 for_all_symbols(i, sym) {
397 sym->flags |= SYMBOL_CHANGED;
398 sym->flags &= ~(def_flags|SYMBOL_VALID);
399 if (sym_is_choice(sym))
400 sym->flags |= def_flags;
405 if (sym->def[def].val)
406 free(sym->def[def].val);
409 sym->def[def].val = NULL;
410 sym->def[def].tri = no;
414 while (compat_getline(&line, &line_asize, in) != -1) {
417 if (line[0] == '#') {
418 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
420 p = strchr(line + 2 + strlen(CONFIG_), ' ');
424 if (strncmp(p, "is not set", 10))
426 if (def == S_DEF_USER) {
427 sym = sym_find(line + 2 + strlen(CONFIG_));
429 sym_add_change_count(1);
433 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
434 if (sym->type == S_UNKNOWN)
435 sym->type = S_BOOLEAN;
437 if (sym->flags & def_flags) {
438 conf_warning("override: reassigning to symbol %s", sym->name);
443 sym->def[def].tri = no;
444 sym->flags |= def_flags;
449 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
450 p = strchr(line + strlen(CONFIG_), '=');
454 p2 = strchr(p, '\n');
461 sym = sym_find(line + strlen(CONFIG_));
463 if (def == S_DEF_AUTO)
465 * Reading from include/config/auto.conf
466 * If CONFIG_FOO previously existed in
467 * auto.conf but it is missing now,
468 * include/config/foo.h must be touched.
470 conf_touch_dep(line + strlen(CONFIG_));
472 sym_add_change_count(1);
476 if (sym->flags & def_flags) {
477 conf_warning("override: reassigning to symbol %s", sym->name);
479 if (conf_set_sym_val(sym, def, def_flags, p))
482 if (line[0] != '\r' && line[0] != '\n')
483 conf_warning("unexpected data: %.*s",
484 (int)strcspn(line, "\r\n"), line);
489 if (sym && sym_is_choice_value(sym)) {
490 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
491 switch (sym->def[def].tri) {
495 if (cs->def[def].tri == yes) {
496 conf_warning("%s creates inconsistent choice state", sym->name);
497 cs->flags &= ~def_flags;
501 if (cs->def[def].tri != no)
502 conf_warning("override: %s changes choice state", sym->name);
503 cs->def[def].val = sym;
506 cs->def[def].tri = EXPR_OR(cs->def[def].tri, sym->def[def].tri);
514 int conf_read(const char *name)
517 int conf_unsaved = 0;
520 sym_set_change_count(0);
522 if (conf_read_simple(name, S_DEF_USER)) {
523 sym_calc_value(modules_sym);
527 sym_calc_value(modules_sym);
529 for_all_symbols(i, sym) {
531 if (sym_is_choice(sym) || (sym->flags & SYMBOL_NO_WRITE))
533 if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
534 /* check that calculated value agrees with saved value */
538 if (sym->def[S_DEF_USER].tri == sym_get_tristate_value(sym))
542 if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
546 } else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
547 /* no previous value and not saved */
550 /* maybe print value in verbose mode... */
553 for_all_symbols(i, sym) {
554 if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
555 /* Reset values of generates values, so they'll appear
556 * as new, if they should become visible, but that
557 * doesn't quite work if the Kconfig and the saved
558 * configuration disagree.
560 if (sym->visible == no && !conf_unsaved)
561 sym->flags &= ~SYMBOL_DEF_USER;
566 /* Reset a string value if it's out of range */
567 if (sym_string_within_range(sym, sym->def[S_DEF_USER].val))
569 sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
578 sym_add_change_count(conf_warnings || conf_unsaved);
584 * Kconfig configuration printer
586 * This printer is used when generating the resulting configuration after
587 * kconfig invocation and `defconfig' files. Unset symbol might be omitted by
588 * passing a non-NULL argument to the printer.
592 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
599 bool skip_unset = (arg != NULL);
602 fprintf(fp, "# %s%s is not set\n",
611 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value);
615 kconfig_print_cmake_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
622 bool skip_unset = (arg != NULL);
625 fprintf(fp, "set(%s%s false)\n",
626 CONFIG_, sym->name, value);
628 } else if (*value == 'm') {
631 fprintf(fp, "set(%s%s true)\n", CONFIG_, sym->name, value);
635 const char *prefix = "";
637 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
639 fprintf(fp, "set(%s%s %s%s)\n",
640 CONFIG_, sym->name, prefix, value);
645 fprintf(fp, "set(%s%s %s)\n",
646 CONFIG_, sym->name, value);
655 kconfig_print_comment(FILE *fp, const char *value, void *arg)
657 const char *p = value;
661 l = strcspn(p, "\n");
665 xfwrite(p, l, 1, fp);
674 static struct conf_printer kconfig_printer_cb =
676 .print_symbol = kconfig_print_symbol,
677 .print_comment = kconfig_print_comment,
680 static struct conf_printer kconfig_printer_cmake_cb =
682 .print_symbol = kconfig_print_cmake_symbol,
683 .print_comment = kconfig_print_comment,
689 * This printer is used when generating the `include/generated/autoconf.h' file.
692 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
698 const char *suffix = "";
707 fprintf(fp, "#define %s%s%s 1\n",
708 CONFIG_, sym->name, suffix);
713 const char *prefix = "";
715 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
717 fprintf(fp, "#define %s%s %s%s\n",
718 CONFIG_, sym->name, prefix, value);
723 fprintf(fp, "#define %s%s %s\n",
724 CONFIG_, sym->name, value);
733 header_print_comment(FILE *fp, const char *value, void *arg)
735 const char *p = value;
740 l = strcspn(p, "\n");
744 xfwrite(p, l, 1, fp);
751 fprintf(fp, " */\n");
754 static struct conf_printer header_printer_cb =
756 .print_symbol = header_print_symbol,
757 .print_comment = header_print_comment,
760 static void conf_write_symbol(FILE *fp, struct symbol *sym,
761 struct conf_printer *printer, void *printer_arg)
769 str = sym_get_string_value(sym);
770 str = sym_escape_string_value(str);
771 printer->print_symbol(fp, sym, str, printer_arg);
775 str = sym_get_string_value(sym);
776 printer->print_symbol(fp, sym, str, printer_arg);
781 conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg)
785 snprintf(buf, sizeof(buf),
787 "Automatically generated file; DO NOT EDIT.\n"
789 rootmenu.prompt->text);
791 printer->print_comment(fp, buf, printer_arg);
795 * Write out a minimal config.
796 * All values that has default values are skipped as this is redundant.
798 int conf_write_defconfig(const char *filename)
804 out = fopen(filename, "w");
808 sym_clear_all_valid();
810 /* Traverse all menus to find all relevant symbols */
811 menu = rootmenu.list;
817 if (!menu_is_visible(menu))
819 } else if (!sym_is_choice(sym)) {
821 if (!(sym->flags & SYMBOL_WRITE))
823 sym->flags &= ~SYMBOL_WRITE;
824 /* If we cannot change the symbol - skip */
825 if (!sym_is_changeable(sym))
827 /* If symbol equals to default value - skip */
828 if (strcmp(sym_get_string_value(sym), sym_get_string_default(sym)) == 0)
832 * If symbol is a choice value and equals to the
833 * default for a choice - skip.
834 * But only if value is bool and equal to "y" and
835 * choice is not "optional".
836 * (If choice is "optional" then all values can be "n")
838 if (sym_is_choice_value(sym)) {
842 cs = prop_get_symbol(sym_get_choice_prop(sym));
843 ds = sym_choice_default(cs);
844 if (!sym_is_optional(cs) && sym == ds) {
845 if ((sym->type == S_BOOLEAN) &&
846 sym_get_tristate_value(sym) == yes)
850 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
853 if (menu->list != NULL) {
856 else if (menu->next != NULL) {
859 while ((menu = menu->parent)) {
860 if (menu->next != NULL) {
871 int conf_write(const char *name)
877 char tmpname[PATH_MAX + 1], oldname[PATH_MAX + 1];
880 bool need_newline = false;
883 name = conf_get_configname();
886 fprintf(stderr, "config name is empty\n");
891 fprintf(stderr, "%s: Is a directory\n", name);
895 if (make_parent_dir(name))
898 env = getenv("KCONFIG_OVERWRITECONFIG");
901 out = fopen(name, "w");
903 snprintf(tmpname, sizeof(tmpname), "%s.%d.tmp",
904 name, (int)getpid());
905 out = fopen(tmpname, "w");
910 conf_write_heading(out, &kconfig_printer_cb, NULL);
912 if (!conf_get_changed())
913 sym_clear_all_valid();
915 menu = rootmenu.list;
919 if (!menu_is_visible(menu))
921 str = menu_get_prompt(menu);
926 need_newline = false;
927 } else if (!(sym->flags & SYMBOL_CHOICE) &&
928 !(sym->flags & SYMBOL_WRITTEN)) {
930 if (!(sym->flags & SYMBOL_WRITE))
934 need_newline = false;
936 sym->flags |= SYMBOL_WRITTEN;
937 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
947 else while ((menu = menu->parent)) {
948 if (!menu->sym && menu_is_visible(menu) &&
950 str = menu_get_prompt(menu);
951 fprintf(out, "# end of %s\n", str);
962 for_all_symbols(i, sym)
963 sym->flags &= ~SYMBOL_WRITTEN;
966 if (is_same(name, tmpname)) {
967 conf_message("No change to %s", name);
969 sym_set_change_count(0);
973 snprintf(oldname, sizeof(oldname), "%s.old", name);
974 rename(name, oldname);
975 if (rename(tmpname, name))
979 conf_message("configuration written to %s", name);
981 sym_set_change_count(0);
986 /* write a dependency file as used by kbuild to track dependencies */
987 static int conf_write_dep(const char *name)
992 out = fopen("..config.tmp", "w");
995 fprintf(out, "deps_config := \\\n");
996 for (file = file_list; file; file = file->next) {
998 fprintf(out, "\t%s \\\n", file->name);
1000 fprintf(out, "\t%s\n", file->name);
1002 fprintf(out, "\n%s: \\\n"
1003 "\t$(deps_config)\n\n", conf_get_autoconfig_name());
1005 env_write_dep(out, conf_get_autoconfig_name());
1007 fprintf(out, "\n$(deps_config): ;\n");
1010 if (make_parent_dir(name))
1012 rename("..config.tmp", name);
1016 static int conf_touch_deps(void)
1022 strcpy(depfile_path, "include/generated/");
1023 depfile_prefix_len = strlen(depfile_path);
1025 name = conf_get_autoconfig_name();
1026 conf_read_simple(name, S_DEF_AUTO);
1027 sym_calc_value(modules_sym);
1029 for_all_symbols(i, sym) {
1030 sym_calc_value(sym);
1031 if ((sym->flags & SYMBOL_NO_WRITE) || !sym->name)
1033 if (sym->flags & SYMBOL_WRITE) {
1034 if (sym->flags & SYMBOL_DEF_AUTO) {
1036 * symbol has old and new value,
1037 * so compare them...
1039 switch (sym->type) {
1042 if (sym_get_tristate_value(sym) ==
1043 sym->def[S_DEF_AUTO].tri)
1049 if (!strcmp(sym_get_string_value(sym),
1050 sym->def[S_DEF_AUTO].val))
1058 * If there is no old value, only 'no' (unset)
1059 * is allowed as new value.
1061 switch (sym->type) {
1064 if (sym_get_tristate_value(sym) == no)
1071 } else if (!(sym->flags & SYMBOL_DEF_AUTO))
1072 /* There is neither an old nor a new value. */
1075 * There is an old value, but no new value ('no' (unset)
1076 * isn't saved in auto.conf, so the old value is always
1077 * different from 'no').
1080 res = conf_touch_dep(sym->name);
1088 int conf_write_autoconf(int overwrite)
1092 const char *autoconf_name = conf_get_autoconfig_name();
1093 FILE *out, *out_h, *out_c;
1096 if (!overwrite && is_present(autoconf_name))
1099 conf_write_dep("include/generated/auto.conf.cmd");
1101 if (conf_touch_deps())
1104 out = fopen(".tmpconfig", "w");
1108 out_h = fopen(".tmpconfig.h", "w");
1114 out_c = fopen(".tmpconfig.cmake", "w");
1120 conf_write_heading(out, &kconfig_printer_cb, NULL);
1122 conf_write_heading(out_h, &header_printer_cb, NULL);
1124 conf_write_heading(out_c, &kconfig_printer_cmake_cb, NULL);
1126 for_all_symbols(i, sym) {
1127 sym_calc_value(sym);
1128 if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
1131 /* write symbol to auto.conf and header files */
1132 conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1);
1134 conf_write_symbol(out_h, sym, &header_printer_cb, NULL);
1136 conf_write_symbol(out_c, sym, &kconfig_printer_cmake_cb, NULL);
1142 name = getenv("KCONFIG_AUTOHEADER");
1144 name = "include/generated/autoconf.h";
1145 if (make_parent_dir(name))
1147 if (rename(".tmpconfig.h", name))
1150 if (make_parent_dir(autoconf_name))
1153 name = getenv("KCONFIG_CMAKE");
1155 name = "config.cmake";
1156 if (make_parent_dir(name))
1158 if (rename(".tmpconfig.cmake", name))
1162 * This must be the last step, kbuild has a dependency on auto.conf
1163 * and this marks the successful completion of the previous steps.
1165 if (rename(".tmpconfig", autoconf_name))
1171 static int sym_change_count;
1172 static void (*conf_changed_callback)(void);
1174 void sym_set_change_count(int count)
1176 int _sym_change_count = sym_change_count;
1177 sym_change_count = count;
1178 if (conf_changed_callback &&
1179 (bool)_sym_change_count != (bool)count)
1180 conf_changed_callback();
1183 void sym_add_change_count(int count)
1185 sym_set_change_count(count + sym_change_count);
1188 bool conf_get_changed(void)
1190 return sym_change_count;
1193 void conf_set_changed_callback(void (*fn)(void))
1195 conf_changed_callback = fn;
1198 static bool randomize_choice_values(struct symbol *csym)
1200 struct property *prop;
1206 * If choice is mod then we may have more items selected
1207 * and if no then no-one.
1208 * In both cases stop.
1210 if (csym->curr.tri != yes)
1213 prop = sym_get_choice_prop(csym);
1215 /* count entries in choice block */
1217 expr_list_for_each_sym(prop->expr, e, sym)
1221 * find a random value and set it to yes,
1222 * set the rest to no so we have only one set
1224 def = (rand() % cnt);
1227 expr_list_for_each_sym(prop->expr, e, sym) {
1229 sym->def[S_DEF_USER].tri = yes;
1230 csym->def[S_DEF_USER].val = sym;
1233 sym->def[S_DEF_USER].tri = no;
1235 sym->flags |= SYMBOL_DEF_USER;
1236 /* clear VALID to get value calculated */
1237 sym->flags &= ~SYMBOL_VALID;
1239 csym->flags |= SYMBOL_DEF_USER;
1240 /* clear VALID to get value calculated */
1241 csym->flags &= ~(SYMBOL_VALID);
1246 void set_all_choice_values(struct symbol *csym)
1248 struct property *prop;
1252 prop = sym_get_choice_prop(csym);
1255 * Set all non-assinged choice values to no
1257 expr_list_for_each_sym(prop->expr, e, sym) {
1258 if (!sym_has_value(sym))
1259 sym->def[S_DEF_USER].tri = no;
1261 csym->flags |= SYMBOL_DEF_USER;
1262 /* clear VALID to get value calculated */
1263 csym->flags &= ~(SYMBOL_VALID | SYMBOL_NEED_SET_CHOICE_VALUES);
1266 bool conf_set_all_new_symbols(enum conf_def_mode mode)
1268 struct symbol *sym, *csym;
1269 int i, cnt, pby, pty, ptm; /* pby: probability of bool = y
1270 * pty: probability of tristate = y
1271 * ptm: probability of tristate = m
1274 pby = 50; pty = ptm = 33; /* can't go as the default in switch-case
1275 * below, otherwise gcc whines about
1276 * -Wmaybe-uninitialized */
1277 if (mode == def_random) {
1279 char *env = getenv("KCONFIG_PROBABILITY");
1281 while( env && *env ) {
1283 int tmp = strtol( env, &endp, 10 );
1284 if( tmp >= 0 && tmp <= 100 ) {
1288 perror( "KCONFIG_PROBABILITY" );
1291 env = (*endp == ':') ? endp+1 : endp;
1298 pby = p[0]; ptm = pby/2; pty = pby-ptm;
1301 pty = p[0]; ptm = p[1]; pby = pty + ptm;
1304 pby = p[0]; pty = p[1]; ptm = p[2];
1308 if( pty+ptm > 100 ) {
1310 perror( "KCONFIG_PROBABILITY" );
1314 bool has_changed = false;
1316 for_all_symbols(i, sym) {
1317 if (sym_has_value(sym) || (sym->flags & SYMBOL_VALID))
1319 switch (sym_get_type(sym)) {
1325 sym->def[S_DEF_USER].tri = yes;
1328 sym->def[S_DEF_USER].tri = mod;
1331 if (sym->flags & SYMBOL_ALLNOCONFIG_Y)
1332 sym->def[S_DEF_USER].tri = yes;
1334 sym->def[S_DEF_USER].tri = no;
1337 sym->def[S_DEF_USER].tri = no;
1339 if (sym->type == S_TRISTATE) {
1341 sym->def[S_DEF_USER].tri = yes;
1342 else if (cnt < (pty+ptm))
1343 sym->def[S_DEF_USER].tri = mod;
1344 } else if (cnt < pby)
1345 sym->def[S_DEF_USER].tri = yes;
1350 if (!(sym_is_choice(sym) && mode == def_random))
1351 sym->flags |= SYMBOL_DEF_USER;
1359 sym_clear_all_valid();
1362 * We have different type of choice blocks.
1363 * If curr.tri equals to mod then we can select several
1364 * choice symbols in one block.
1365 * In this case we do nothing.
1366 * If curr.tri equals yes then only one symbol can be
1367 * selected in a choice block and we set it to yes,
1368 * and the rest to no.
1370 if (mode != def_random) {
1371 for_all_symbols(i, csym) {
1372 if ((sym_is_choice(csym) && !sym_has_value(csym)) ||
1373 sym_is_choice_value(csym))
1374 csym->flags |= SYMBOL_NEED_SET_CHOICE_VALUES;
1378 for_all_symbols(i, csym) {
1379 if (sym_has_value(csym) || !sym_is_choice(csym))
1382 sym_calc_value(csym);
1383 if (mode == def_random)
1384 has_changed |= randomize_choice_values(csym);
1386 set_all_choice_values(csym);
1394 void conf_rewrite_mod_or_yes(enum conf_def_mode mode)
1398 tristate old_val = (mode == def_y2m) ? yes : mod;
1399 tristate new_val = (mode == def_y2m) ? mod : yes;
1401 for_all_symbols(i, sym) {
1402 if (sym_get_type(sym) == S_TRISTATE &&
1403 sym->def[S_DEF_USER].tri == old_val)
1404 sym->def[S_DEF_USER].tri = new_val;
1406 sym_clear_all_valid();