1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
20 /* return true if 'path' exists, false otherwise */
21 static bool is_present(const char *path)
25 return !stat(path, &st);
28 /* return true if 'path' exists and it is a directory, false otherwise */
29 static bool is_dir(const char *path)
36 return S_ISDIR(st.st_mode);
40 * Create the parent directory of the given path.
42 * For example, if 'include/config/auto.conf' is given, create 'include/config'.
44 static int make_parent_dir(const char *path)
46 char tmp[PATH_MAX + 1];
49 strncpy(tmp, path, sizeof(tmp));
50 tmp[sizeof(tmp) - 1] = 0;
52 /* Remove the base name. Just return if nothing is left */
53 p = strrchr(tmp, '/');
58 /* Just in case it is an absolute path */
63 while ((p = strchr(p, '/'))) {
66 /* skip if the directory exists */
67 if (!is_dir(tmp) && mkdir(tmp, 0755))
78 static char depfile_path[PATH_MAX];
79 static size_t depfile_prefix_len;
81 /* touch depfile for symbol 'name' */
82 static int conf_touch_dep(const char *name)
88 /* check overflow: prefix + name + ".h" + '\0' must fit in buffer. */
89 if (depfile_prefix_len + strlen(name) + 3 > sizeof(depfile_path))
92 d = depfile_path + depfile_prefix_len;
96 *d++ = (c == '_') ? '/' : tolower(c);
99 /* Assume directory path already exists. */
100 fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
105 ret = make_parent_dir(depfile_path);
110 fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
119 struct conf_printer {
120 void (*print_symbol)(FILE *, struct symbol *, const char *, void *);
121 void (*print_comment)(FILE *, const char *, void *);
124 static void conf_warning(const char *fmt, ...)
125 __attribute__ ((format (printf, 1, 2)));
127 static void conf_message(const char *fmt, ...)
128 __attribute__ ((format (printf, 1, 2)));
130 static const char *conf_filename;
131 static int conf_lineno, conf_warnings;
133 const char conf_defname[] = "include/generated/defconfig";
135 static void conf_warning(const char *fmt, ...)
139 fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
140 vfprintf(stderr, fmt, ap);
141 fprintf(stderr, "\n");
146 static void conf_default_message_callback(const char *s)
153 static void (*conf_message_callback)(const char *s) =
154 conf_default_message_callback;
155 void conf_set_message_callback(void (*fn)(const char *s))
157 conf_message_callback = fn;
160 static void conf_message(const char *fmt, ...)
165 if (!conf_message_callback)
170 vsnprintf(buf, sizeof(buf), fmt, ap);
171 conf_message_callback(buf);
175 const char *conf_get_configname(void)
177 char *name = getenv("KCONFIG_CONFIG");
179 return name ? name : ".config";
182 const char *conf_get_autoconfig_name(void)
184 char *name = getenv("KCONFIG_AUTOCONFIG");
186 return name ? name : "include/generated/auto.conf";
189 char *conf_get_default_confname(void)
191 static char fullname[PATH_MAX+1];
194 name = expand_string(conf_defname);
195 env = getenv(SRCTREE);
197 sprintf(fullname, "%s/%s", env, name);
198 if (is_present(fullname))
204 static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
211 sym->def[def].tri = mod;
212 sym->flags |= def_flags;
218 sym->def[def].tri = yes;
219 sym->flags |= def_flags;
223 sym->def[def].tri = no;
224 sym->flags |= def_flags;
227 if (def != S_DEF_AUTO)
228 conf_warning("symbol value '%s' invalid for %s",
234 for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
239 memmove(p2, p2 + 1, strlen(p2));
242 if (def != S_DEF_AUTO)
243 conf_warning("invalid string found");
249 if (sym_string_valid(sym, p)) {
250 sym->def[def].val = xstrdup(p);
251 sym->flags |= def_flags;
253 if (def != S_DEF_AUTO)
254 conf_warning("symbol value '%s' invalid for %s",
265 #define LINE_GROWTH 16
266 static int add_byte(int c, char **lineptr, size_t slen, size_t *n)
269 size_t new_size = slen + 1;
271 new_size += LINE_GROWTH - 1;
273 nline = xrealloc(*lineptr, new_size);
281 (*lineptr)[slen] = c;
286 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream)
288 char *line = *lineptr;
292 int c = getc(stream);
296 if (add_byte(c, &line, slen, n) < 0)
301 if (add_byte('\0', &line, slen, n) < 0)
308 if (add_byte(c, &line, slen, n) < 0)
320 int conf_read_simple(const char *name, int def)
324 size_t line_asize = 0;
330 in = zconf_fopen(name);
332 struct property *prop;
334 name = conf_get_configname();
335 in = zconf_fopen(name);
338 sym_add_change_count(1);
339 if (!sym_defconfig_list)
342 for_all_defaults(sym_defconfig_list, prop) {
343 if (expr_calc_value(prop->visible.expr) == no ||
344 prop->expr->type != E_SYMBOL)
346 sym_calc_value(prop->expr->left.sym);
347 name = sym_get_string_value(prop->expr->left.sym);
348 in = zconf_fopen(name);
350 conf_message("using defaults found in %s",
360 conf_filename = name;
364 def_flags = SYMBOL_DEF << def;
365 for_all_symbols(i, sym) {
366 sym->flags |= SYMBOL_CHANGED;
367 sym->flags &= ~(def_flags|SYMBOL_VALID);
368 if (sym_is_choice(sym))
369 sym->flags |= def_flags;
374 if (sym->def[def].val)
375 free(sym->def[def].val);
378 sym->def[def].val = NULL;
379 sym->def[def].tri = no;
383 while (compat_getline(&line, &line_asize, in) != -1) {
386 if (line[0] == '#') {
387 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
389 p = strchr(line + 2 + strlen(CONFIG_), ' ');
393 if (strncmp(p, "is not set", 10))
395 if (def == S_DEF_USER) {
396 sym = sym_find(line + 2 + strlen(CONFIG_));
398 sym_add_change_count(1);
402 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
403 if (sym->type == S_UNKNOWN)
404 sym->type = S_BOOLEAN;
406 if (sym->flags & def_flags) {
407 conf_warning("override: reassigning to symbol %s", sym->name);
412 sym->def[def].tri = no;
413 sym->flags |= def_flags;
418 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
419 p = strchr(line + strlen(CONFIG_), '=');
423 p2 = strchr(p, '\n');
430 sym = sym_find(line + strlen(CONFIG_));
432 if (def == S_DEF_AUTO)
434 * Reading from include/config/auto.conf
435 * If CONFIG_FOO previously existed in
436 * auto.conf but it is missing now,
437 * include/config/foo.h must be touched.
439 conf_touch_dep(line + strlen(CONFIG_));
441 sym_add_change_count(1);
445 if (sym->flags & def_flags) {
446 conf_warning("override: reassigning to symbol %s", sym->name);
448 if (conf_set_sym_val(sym, def, def_flags, p))
451 if (line[0] != '\r' && line[0] != '\n')
452 conf_warning("unexpected data: %.*s",
453 (int)strcspn(line, "\r\n"), line);
458 if (sym && sym_is_choice_value(sym)) {
459 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
460 switch (sym->def[def].tri) {
464 if (cs->def[def].tri == yes) {
465 conf_warning("%s creates inconsistent choice state", sym->name);
466 cs->flags &= ~def_flags;
470 if (cs->def[def].tri != no)
471 conf_warning("override: %s changes choice state", sym->name);
472 cs->def[def].val = sym;
475 cs->def[def].tri = EXPR_OR(cs->def[def].tri, sym->def[def].tri);
483 int conf_read(const char *name)
486 int conf_unsaved = 0;
489 sym_set_change_count(0);
491 if (conf_read_simple(name, S_DEF_USER)) {
492 sym_calc_value(modules_sym);
496 sym_calc_value(modules_sym);
498 for_all_symbols(i, sym) {
500 if (sym_is_choice(sym) || (sym->flags & SYMBOL_NO_WRITE))
502 if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
503 /* check that calculated value agrees with saved value */
507 if (sym->def[S_DEF_USER].tri != sym_get_tristate_value(sym))
509 if (!sym_is_choice(sym))
513 if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
517 } else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
518 /* no previous value and not saved */
521 /* maybe print value in verbose mode... */
524 for_all_symbols(i, sym) {
525 if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
526 /* Reset values of generates values, so they'll appear
527 * as new, if they should become visible, but that
528 * doesn't quite work if the Kconfig and the saved
529 * configuration disagree.
531 if (sym->visible == no && !conf_unsaved)
532 sym->flags &= ~SYMBOL_DEF_USER;
537 /* Reset a string value if it's out of range */
538 if (sym_string_within_range(sym, sym->def[S_DEF_USER].val))
540 sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
549 sym_add_change_count(conf_warnings || conf_unsaved);
555 * Kconfig configuration printer
557 * This printer is used when generating the resulting configuration after
558 * kconfig invocation and `defconfig' files. Unset symbol might be omitted by
559 * passing a non-NULL argument to the printer.
563 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
570 bool skip_unset = (arg != NULL);
573 fprintf(fp, "# %s%s is not set\n",
582 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value);
586 kconfig_print_cmake_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
593 bool skip_unset = (arg != NULL);
596 fprintf(fp, "set(%s%s false)\n",
597 CONFIG_, sym->name, value);
599 } else if (*value == 'm') {
602 fprintf(fp, "set(%s%s true)\n", CONFIG_, sym->name, value);
606 const char *prefix = "";
608 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
610 fprintf(fp, "set(%s%s %s%s)\n",
611 CONFIG_, sym->name, prefix, value);
616 fprintf(fp, "set(%s%s %s)\n",
617 CONFIG_, sym->name, value);
626 kconfig_print_comment(FILE *fp, const char *value, void *arg)
628 const char *p = value;
632 l = strcspn(p, "\n");
636 xfwrite(p, l, 1, fp);
645 static struct conf_printer kconfig_printer_cb =
647 .print_symbol = kconfig_print_symbol,
648 .print_comment = kconfig_print_comment,
651 static struct conf_printer kconfig_printer_cmake_cb =
653 .print_symbol = kconfig_print_cmake_symbol,
654 .print_comment = kconfig_print_comment,
660 * This printer is used when generating the `include/generated/autoconf.h' file.
663 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
669 const char *suffix = "";
678 fprintf(fp, "#define %s%s%s 1\n",
679 CONFIG_, sym->name, suffix);
684 const char *prefix = "";
686 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
688 fprintf(fp, "#define %s%s %s%s\n",
689 CONFIG_, sym->name, prefix, value);
694 fprintf(fp, "#define %s%s %s\n",
695 CONFIG_, sym->name, value);
704 header_print_comment(FILE *fp, const char *value, void *arg)
706 const char *p = value;
711 l = strcspn(p, "\n");
715 xfwrite(p, l, 1, fp);
722 fprintf(fp, " */\n");
725 static struct conf_printer header_printer_cb =
727 .print_symbol = header_print_symbol,
728 .print_comment = header_print_comment,
734 * This printer is used when generating the `include/generated/tristate.conf' file.
737 tristate_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
740 if (sym->type == S_TRISTATE && *value != 'n')
741 fprintf(fp, "%s%s=%c\n", CONFIG_, sym->name, (char)toupper(*value));
744 static struct conf_printer tristate_printer_cb =
746 .print_symbol = tristate_print_symbol,
747 .print_comment = kconfig_print_comment,
750 static void conf_write_symbol(FILE *fp, struct symbol *sym,
751 struct conf_printer *printer, void *printer_arg)
759 str = sym_get_string_value(sym);
760 str = sym_escape_string_value(str);
761 printer->print_symbol(fp, sym, str, printer_arg);
765 str = sym_get_string_value(sym);
766 printer->print_symbol(fp, sym, str, printer_arg);
771 conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg)
775 snprintf(buf, sizeof(buf),
777 "Automatically generated file; DO NOT EDIT.\n"
779 rootmenu.prompt->text);
781 printer->print_comment(fp, buf, printer_arg);
785 * Write out a minimal config.
786 * All values that has default values are skipped as this is redundant.
788 int conf_write_defconfig(const char *filename)
794 out = fopen(filename, "w");
798 sym_clear_all_valid();
800 /* Traverse all menus to find all relevant symbols */
801 menu = rootmenu.list;
807 if (!menu_is_visible(menu))
809 } else if (!sym_is_choice(sym)) {
811 if (!(sym->flags & SYMBOL_WRITE))
813 sym->flags &= ~SYMBOL_WRITE;
814 /* If we cannot change the symbol - skip */
815 if (!sym_is_changable(sym))
817 /* If symbol equals to default value - skip */
818 if (strcmp(sym_get_string_value(sym), sym_get_string_default(sym)) == 0)
822 * If symbol is a choice value and equals to the
823 * default for a choice - skip.
824 * But only if value is bool and equal to "y" and
825 * choice is not "optional".
826 * (If choice is "optional" then all values can be "n")
828 if (sym_is_choice_value(sym)) {
832 cs = prop_get_symbol(sym_get_choice_prop(sym));
833 ds = sym_choice_default(cs);
834 if (!sym_is_optional(cs) && sym == ds) {
835 if ((sym->type == S_BOOLEAN) &&
836 sym_get_tristate_value(sym) == yes)
840 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
843 if (menu->list != NULL) {
846 else if (menu->next != NULL) {
849 while ((menu = menu->parent)) {
850 if (menu->next != NULL) {
861 int conf_write(const char *name)
866 const char *basename;
868 char dirname[PATH_MAX+1], tmpname[PATH_MAX+22], newname[PATH_MAX+8];
872 if (name && name[0]) {
876 strcpy(dirname, name);
877 strcat(dirname, "/");
878 basename = conf_get_configname();
879 } else if ((slash = strrchr(name, '/'))) {
880 int size = slash - name + 1;
881 memcpy(dirname, name, size);
884 basename = slash + 1;
886 basename = conf_get_configname();
890 basename = conf_get_configname();
892 sprintf(newname, "%s%s", dirname, basename);
893 env = getenv("KCONFIG_OVERWRITECONFIG");
895 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
896 out = fopen(tmpname, "w");
899 out = fopen(newname, "w");
904 conf_write_heading(out, &kconfig_printer_cb, NULL);
906 if (!conf_get_changed())
907 sym_clear_all_valid();
909 menu = rootmenu.list;
913 if (!menu_is_visible(menu))
915 str = menu_get_prompt(menu);
920 } else if (!(sym->flags & SYMBOL_CHOICE)) {
922 if (!(sym->flags & SYMBOL_WRITE))
924 sym->flags &= ~SYMBOL_WRITE;
926 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
936 else while ((menu = menu->parent)) {
946 strcat(dirname, basename);
947 strcat(dirname, ".old");
948 rename(newname, dirname);
949 if (rename(tmpname, newname))
953 conf_message("configuration written to %s", newname);
955 sym_set_change_count(0);
960 /* write a dependency file as used by kbuild to track dependencies */
961 static int conf_write_dep(const char *name)
968 out = fopen("..config.tmp", "w");
971 fprintf(out, "deps_config := \\\n");
972 for (file = file_list; file; file = file->next) {
974 fprintf(out, "\t%s \\\n", file->name);
976 fprintf(out, "\t%s\n", file->name);
978 fprintf(out, "\n%s: \\\n"
979 "\t$(deps_config)\n\n", conf_get_autoconfig_name());
981 env_write_dep(out, conf_get_autoconfig_name());
983 fprintf(out, "\n$(deps_config): ;\n");
986 if (make_parent_dir(name))
988 rename("..config.tmp", name);
992 static int conf_touch_deps(void)
998 strcpy(depfile_path, "include/generated/");
999 depfile_prefix_len = strlen(depfile_path);
1001 name = conf_get_autoconfig_name();
1002 conf_read_simple(name, S_DEF_AUTO);
1003 sym_calc_value(modules_sym);
1005 for_all_symbols(i, sym) {
1006 sym_calc_value(sym);
1007 if ((sym->flags & SYMBOL_NO_WRITE) || !sym->name)
1009 if (sym->flags & SYMBOL_WRITE) {
1010 if (sym->flags & SYMBOL_DEF_AUTO) {
1012 * symbol has old and new value,
1013 * so compare them...
1015 switch (sym->type) {
1018 if (sym_get_tristate_value(sym) ==
1019 sym->def[S_DEF_AUTO].tri)
1025 if (!strcmp(sym_get_string_value(sym),
1026 sym->def[S_DEF_AUTO].val))
1034 * If there is no old value, only 'no' (unset)
1035 * is allowed as new value.
1037 switch (sym->type) {
1040 if (sym_get_tristate_value(sym) == no)
1047 } else if (!(sym->flags & SYMBOL_DEF_AUTO))
1048 /* There is neither an old nor a new value. */
1051 * There is an old value, but no new value ('no' (unset)
1052 * isn't saved in auto.conf, so the old value is always
1053 * different from 'no').
1056 res = conf_touch_dep(sym->name);
1064 int conf_write_autoconf(int overwrite)
1068 const char *autoconf_name = conf_get_autoconfig_name();
1069 FILE *out, *tristate, *out_h, *out_c;
1072 if (!overwrite && is_present(autoconf_name))
1075 sym_clear_all_valid();
1077 conf_write_dep("include/generated/auto.conf.cmd");
1079 if (conf_touch_deps())
1082 out = fopen(".tmpconfig", "w");
1086 tristate = fopen(".tmpconfig_tristate", "w");
1092 out_h = fopen(".tmpconfig.h", "w");
1099 out_c = fopen(".tmpconfig.cmake", "w");
1106 conf_write_heading(out, &kconfig_printer_cb, NULL);
1108 conf_write_heading(tristate, &tristate_printer_cb, NULL);
1110 conf_write_heading(out_h, &header_printer_cb, NULL);
1112 conf_write_heading(out_c, &kconfig_printer_cmake_cb, NULL);
1114 for_all_symbols(i, sym) {
1115 sym_calc_value(sym);
1116 if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
1119 /* write symbol to auto.conf, tristate and header files */
1120 conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1);
1122 conf_write_symbol(tristate, sym, &tristate_printer_cb, (void *)1);
1124 conf_write_symbol(out_h, sym, &header_printer_cb, NULL);
1126 conf_write_symbol(out_c, sym, &kconfig_printer_cmake_cb, NULL);
1133 name = getenv("KCONFIG_AUTOHEADER");
1135 name = "include/generated/autoconf.h";
1136 if (make_parent_dir(name))
1138 if (rename(".tmpconfig.h", name))
1141 name = getenv("KCONFIG_TRISTATE");
1143 name = "include/generated/tristate.conf";
1144 if (make_parent_dir(name))
1146 if (rename(".tmpconfig_tristate", name))
1149 if (make_parent_dir(autoconf_name))
1152 name = getenv("KCONFIG_CMAKE");
1154 name = "config.cmake";
1155 if (make_parent_dir(name))
1157 if (rename(".tmpconfig.cmake", name))
1161 * This must be the last step, kbuild has a dependency on auto.conf
1162 * and this marks the successful completion of the previous steps.
1164 if (rename(".tmpconfig", autoconf_name))
1170 static int sym_change_count;
1171 static void (*conf_changed_callback)(void);
1173 void sym_set_change_count(int count)
1175 int _sym_change_count = sym_change_count;
1176 sym_change_count = count;
1177 if (conf_changed_callback &&
1178 (bool)_sym_change_count != (bool)count)
1179 conf_changed_callback();
1182 void sym_add_change_count(int count)
1184 sym_set_change_count(count + sym_change_count);
1187 bool conf_get_changed(void)
1189 return sym_change_count;
1192 void conf_set_changed_callback(void (*fn)(void))
1194 conf_changed_callback = fn;
1197 static bool randomize_choice_values(struct symbol *csym)
1199 struct property *prop;
1205 * If choice is mod then we may have more items selected
1206 * and if no then no-one.
1207 * In both cases stop.
1209 if (csym->curr.tri != yes)
1212 prop = sym_get_choice_prop(csym);
1214 /* count entries in choice block */
1216 expr_list_for_each_sym(prop->expr, e, sym)
1220 * find a random value and set it to yes,
1221 * set the rest to no so we have only one set
1223 def = (rand() % cnt);
1226 expr_list_for_each_sym(prop->expr, e, sym) {
1228 sym->def[S_DEF_USER].tri = yes;
1229 csym->def[S_DEF_USER].val = sym;
1232 sym->def[S_DEF_USER].tri = no;
1234 sym->flags |= SYMBOL_DEF_USER;
1235 /* clear VALID to get value calculated */
1236 sym->flags &= ~SYMBOL_VALID;
1238 csym->flags |= SYMBOL_DEF_USER;
1239 /* clear VALID to get value calculated */
1240 csym->flags &= ~(SYMBOL_VALID);
1245 void set_all_choice_values(struct symbol *csym)
1247 struct property *prop;
1251 prop = sym_get_choice_prop(csym);
1254 * Set all non-assinged choice values to no
1256 expr_list_for_each_sym(prop->expr, e, sym) {
1257 if (!sym_has_value(sym))
1258 sym->def[S_DEF_USER].tri = no;
1260 csym->flags |= SYMBOL_DEF_USER;
1261 /* clear VALID to get value calculated */
1262 csym->flags &= ~(SYMBOL_VALID | SYMBOL_NEED_SET_CHOICE_VALUES);
1265 bool conf_set_all_new_symbols(enum conf_def_mode mode)
1267 struct symbol *sym, *csym;
1268 int i, cnt, pby, pty, ptm; /* pby: probability of bool = y
1269 * pty: probability of tristate = y
1270 * ptm: probability of tristate = m
1273 pby = 50; pty = ptm = 33; /* can't go as the default in switch-case
1274 * below, otherwise gcc whines about
1275 * -Wmaybe-uninitialized */
1276 if (mode == def_random) {
1278 char *env = getenv("KCONFIG_PROBABILITY");
1280 while( env && *env ) {
1282 int tmp = strtol( env, &endp, 10 );
1283 if( tmp >= 0 && tmp <= 100 ) {
1287 perror( "KCONFIG_PROBABILITY" );
1290 env = (*endp == ':') ? endp+1 : endp;
1297 pby = p[0]; ptm = pby/2; pty = pby-ptm;
1300 pty = p[0]; ptm = p[1]; pby = pty + ptm;
1303 pby = p[0]; pty = p[1]; ptm = p[2];
1307 if( pty+ptm > 100 ) {
1309 perror( "KCONFIG_PROBABILITY" );
1313 bool has_changed = false;
1315 for_all_symbols(i, sym) {
1316 if (sym_has_value(sym) || (sym->flags & SYMBOL_VALID))
1318 switch (sym_get_type(sym)) {
1324 sym->def[S_DEF_USER].tri = yes;
1327 sym->def[S_DEF_USER].tri = mod;
1330 if (sym->flags & SYMBOL_ALLNOCONFIG_Y)
1331 sym->def[S_DEF_USER].tri = yes;
1333 sym->def[S_DEF_USER].tri = no;
1336 sym->def[S_DEF_USER].tri = no;
1338 if (sym->type == S_TRISTATE) {
1340 sym->def[S_DEF_USER].tri = yes;
1341 else if (cnt < (pty+ptm))
1342 sym->def[S_DEF_USER].tri = mod;
1343 } else if (cnt < pby)
1344 sym->def[S_DEF_USER].tri = yes;
1349 if (!(sym_is_choice(sym) && mode == def_random))
1350 sym->flags |= SYMBOL_DEF_USER;
1358 sym_clear_all_valid();
1361 * We have different type of choice blocks.
1362 * If curr.tri equals to mod then we can select several
1363 * choice symbols in one block.
1364 * In this case we do nothing.
1365 * If curr.tri equals yes then only one symbol can be
1366 * selected in a choice block and we set it to yes,
1367 * and the rest to no.
1369 if (mode != def_random) {
1370 for_all_symbols(i, csym) {
1371 if ((sym_is_choice(csym) && !sym_has_value(csym)) ||
1372 sym_is_choice_value(csym))
1373 csym->flags |= SYMBOL_NEED_SET_CHOICE_VALUES;
1377 for_all_symbols(i, csym) {
1378 if (sym_has_value(csym) || !sym_is_choice(csym))
1381 sym_calc_value(csym);
1382 if (mode == def_random)
1383 has_changed = randomize_choice_values(csym);
1385 set_all_choice_values(csym);