
26 Apr
2012
26 Apr
'12
12:52 a.m.
On Wednesday 25 April 2012 14:46:27 Tom Rini wrote:
--- a/mkconfig +++ b/mkconfig @@ -167,6 +167,11 @@ cat << EOF >> config.h #include <config_defaults.h> #include <configs/${CONFIG_NAME}.h> #include <asm/config.h>
+/* Default baud rate table */ +#ifndef CONFIG_SYS_BAUDRATE_TABLE +#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } +#endif EOF
seems like we should add a new config_fallbacks.h and include that after asm/config.h rather than coding C in mkconfig -mike