701-MIPS-ath79-add-routerboard-detection.patch 508 B

12345678910111213141516
  1. --- a/arch/mips/ath79/prom.c
  2. +++ b/arch/mips/ath79/prom.c
  3. @@ -136,6 +136,13 @@ void __init prom_init(void)
  4. initrd_end = initrd_start + fw_getenvl("initrd_size");
  5. }
  6. #endif
  7. +
  8. + if (strstr(arcs_cmdline, "board=750Gr3") ||
  9. + strstr(arcs_cmdline, "board=951G") ||
  10. + strstr(arcs_cmdline, "board=2011L") ||
  11. + strstr(arcs_cmdline, "board=711Gr100") ||
  12. + strstr(arcs_cmdline, "board=922gs"))
  13. + ath79_prom_append_cmdline("console", "ttyS0,115200");
  14. }
  15. void __init prom_free_prom_memory(void)