Searched refs:cfgline (Results 1 – 1 of 1) sorted by relevance
/linux-2.4.37.9/scripts/ |
D | mkconfigs.c | 88 char cfgline[LINE_SIZE]; in make_lines() local 91 while (fgets (cfgline, LINE_SIZE, configfile)) { in make_lines() 93 cfgline[strlen (cfgline) - 1] = '\0'; in make_lines() 96 if ((cfgline[0] == '#' && cfgline[1] == '\0') || in make_lines() 97 cfgline[0] == '\0') in make_lines() 101 cfgline[0] == '#') // strip out all comment lines in make_lines() 106 if (strncmp (cfgline, "CONFIG_", 7) && in make_lines() 107 strncmp (cfgline, "# CONFIG_", 9)) in make_lines() 116 if (!strchr (cfgline, '"')) { in make_lines() 117 fprintf (sourcefile, " \"%s\\n\" ,\n", cfgline); in make_lines() [all …]
|