| 1 |
#include <stdio.h> |
| 2 |
#include <ctype.h> |
| 3 |
#include <string.h> |
| 4 |
#include <malloc.h> |
| 5 |
|
| 6 |
char * macMachineType(void) { |
| 7 |
FILE * fd; |
| 8 |
char buf[256], *bufptr, *rc; |
| 9 |
char *id; |
| 10 |
|
| 11 |
if (!(fd = fopen("/proc/cpuinfo", "r"))) |
| 12 |
return NULL; |
| 13 |
|
| 14 |
while ((rc = fgets(buf, 255, fd)) != NULL) |
| 15 |
{ |
| 16 |
if (strncasecmp(buf, "machine", 7) == 0) |
| 17 |
{ |
| 18 |
bufptr = buf + 7; /* Set up a pointer into the string */ |
| 19 |
|
| 20 |
/* Skip blanks and : */ |
| 21 |
while ((*bufptr == ':' || isspace(*bufptr)) && *bufptr != 0) |
| 22 |
bufptr++; |
| 23 |
|
| 24 |
id = malloc(sizeof(buf)); |
| 25 |
sprintf(id, "%s", bufptr); |
| 26 |
return id; |
| 27 |
} |
| 28 |
} |
| 29 |
return NULL; |
| 30 |
} |
| 31 |
|
| 32 |
void help() |
| 33 |
{ |
| 34 |
printf("Options:\n"); |
| 35 |
printf("\t--force-bus=X:X:X\tForces the usage of the PCI device id given\n"); |
| 36 |
printf("\t--keymap=KEYMAP\t\tUse local keymap instead of us\n"); |
| 37 |
printf("\t--list-keymaps\t\tList available keymaps\n"); |
| 38 |
printf("\t--dump\t\t\tDump debugging information\n"); |
| 39 |
printf("\t--help\t\t\tThis help screen\n"); |
| 40 |
printf("\t--quiet\t\t\tTurns off messages\n"); |
| 41 |
printf("\t--version\t\tOutput version information and quit\n"); |
| 42 |
printf("\n\tOnly one of the video options below may be used at a time:\n"); |
| 43 |
printf("\t--fbdepth\t\tuse current framebuffer color depth for X\n"); |
| 44 |
printf("\t--fbdev\t\t\tuse the fbdev driver in X\n"); |
| 45 |
printf("\t--safe\t\t\tprovides a config that \"always works\"\n"); |
| 46 |
|
| 47 |
} |
| 48 |
|
| 49 |
void usage() |
| 50 |
{ |
| 51 |
printf("usage: Xorgautoconfig [option]\n"); |
| 52 |
help(); |
| 53 |
} |