ip04.c 528 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * U-Boot - main board file
  3. *
  4. * Copyright (c) 2007 David Rowe,
  5. * (c) 2006 Ivan Danov
  6. *
  7. * (C) Copyright 2000-2004
  8. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  9. *
  10. * Licensed under the GPL-2 or later.
  11. */
  12. #include <common.h>
  13. #include <net.h>
  14. #include <netdev.h>
  15. int checkboard(void)
  16. {
  17. printf("Board: IP04 IP-PBX\n");
  18. printf(" http://www.rowetel.com/ucasterisk/ip04.html\n");
  19. return 0;
  20. }
  21. #ifdef CONFIG_DRIVER_DM9000
  22. int board_eth_init(bd_t *bis)
  23. {
  24. return dm9000_initialize(bis);
  25. }
  26. #endif