Home | History | Annotate | Download | only in gumstix

Lines Matching defs:console

244 static char console[16];
337 * Initialising the physical console so characters can be printed.
517 static const char console_name[] = "console=";
546 strncpy(console, argv[i] + strlen(console_name),
547 sizeof(console));
616 console[i++] = c;
617 } while (c != '\0' && i < sizeof(console));
661 /* Maybe passed Linux's bootargs 'console=ttyS?,<speed>...' */
662 if (strncmp(console, "ttyS", 4) == 0 && console[5] == ',') {
666 for (i = 6; i < strlen(console) && isdigit(console[i]); i++)
667 comcnspeed = comcnspeed * 10 + (console[i] - '0');
680 if (console[0] == '\0' || strcasecmp(console, "ffuart") == 0 ||
681 strncmp(console, "ttyS0,", 6) == 0)
702 if (console[0] == '\0' || strcasecmp(console, "stuart") == 0)
723 if (console[0] == '\0' || strcasecmp(console, "btuart") == 0)
744 if (console[0] == '\0' || strcasecmp(console, "hwuart") == 0)
762 if (console[0] == '\0' || strcasecmp(console, "lcd") == 0)