|
|
|
@ -42,7 +42,7 @@ extern void __init setup_serial_port(void); |
|
|
|
|
|
|
|
|
|
unsigned int idt_cpu_freq = 132000000; |
|
|
|
|
EXPORT_SYMBOL(idt_cpu_freq); |
|
|
|
|
unsigned int board_type = 500; |
|
|
|
|
char *board_type; |
|
|
|
|
EXPORT_SYMBOL(board_type); |
|
|
|
|
unsigned int gpio_bootup_state = 0; |
|
|
|
|
EXPORT_SYMBOL(gpio_bootup_state); |
|
|
|
@ -136,7 +136,7 @@ void __init prom_setup_cmdline(void){ |
|
|
|
|
#endif |
|
|
|
|
if (i>0) *(cp++) = ' '; |
|
|
|
|
if (strncmp(prom_argv[i], BOARD_TAG, sizeof(BOARD_TAG) - 1) == 0) { |
|
|
|
|
board_type = simple_strtoul(prom_argv[i] + sizeof(BOARD_TAG) - 1, 0, 10); |
|
|
|
|
strcpy(board_type, prom_argv[i] + sizeof(BOARD_TAG) -1); |
|
|
|
|
} |
|
|
|
|
if (strncmp(prom_argv[i], GPIO_TAG, sizeof(GPIO_TAG) - 1) == 0) { |
|
|
|
|
gpio_bootup_state = simple_strtoul(prom_argv[i] + sizeof(GPIO_TAG) - 1, 0, 10); |
|
|
|
|