nm_bsp.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. *(C) Copyright 2005-2007 Netstal Maschinen AG
  3. * Niklaus Giger (Niklaus.Giger@netstal.com)
  4. *
  5. * This source code is free software; you can redistribute it
  6. * and/or modify it in source code form under the terms of the GNU
  7. * General Public License as published by the Free Software
  8. * Foundation; either version 2 of the License, or (at your option)
  9. * any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  19. */
  20. #include <common.h>
  21. #include <command.h>
  22. #ifdef CONFIG_CMD_BSP
  23. /*
  24. * Command nm_bsp: Netstal Maschinen BSP specific command
  25. */
  26. int nm_bsp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  27. {
  28. printf("%s: flag %d, argc %d, argv[0] %s\n", __FUNCTION__,
  29. flag, argc, argv[0]);
  30. printf("Netstal Maschinen BSP specific command. None at the moment.\n");
  31. return 0;
  32. }
  33. U_BOOT_CMD(
  34. nm_bsp, 1, 1, nm_bsp,
  35. "nm_bsp - Netstal Maschinen BSP specific command. \n",
  36. "Help for Netstal Maschinen BSP specific command.\n"
  37. );
  38. #endif