arm linux问题:我板子的uart1串口是调试串口,我看大多都是uart0是调试口,我怎么改linux的源码啊??
你用的是什么板子啊?
这个要改uboot的。
比如,如果用的是s3c2410,改一下include/configs/smdk2410.h
将第63行,#define CONFIG_SERIAL1 1 /* we use SERIAL 1 on SMDK2410 */
的CONFIG_SERIAL2,就行了。
可以看一下cpu/arm920t/s3c24x0/serial.c 就能理解了。
#ifdef CONFIG_SERIAL1
#define UART_NR S3C24X0_UART0
#elif defined(CONFIG_SERIAL2)
# if defined(CONFIG_TRAB)
# error "TRAB supports only CONFIG_SERIAL1"
# endif
#define UART_NR S3C24X0_UART1
#elif defined(CONFIG_SERIAL3)
# if defined(CONFIG_TRAB)
# #error "TRAB supports only CONFIG_SERIAL1"
# endif
#define UART_NR S3C24X0_UART2
#else
#error "Bad: you didn't configure serial ..."
#endif