blob: ee1b684abd733be0b629702034030e128d588052 [file] [log] [blame]
Niklaus Gigere8397fc72007-07-27 11:38:26 +02001/*
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
21#include <common.h>
22#include <command.h>
23
24#if (CONFIG_COMMANDS & CFG_CMD_BSP)
25/*
26 * Command nm_bsp: Netstal Maschinen BSP specific command
27 */
28int nm_bsp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
29{
30 printf("%s: flag %d, argc %d, argv[0] %s\n", __FUNCTION__,
31 flag, argc, argv[0]);
32 printf("Netstal Maschinen BSP specific command. None at the moment.\n");
33 return 0;
34}
35
36U_BOOT_CMD(
37 nm_bsp, 1, 1, nm_bsp,
38 "nm_bsp - Netstal Maschinen BSP specific command. \n",
39 "Help for Netstal Maschinen BSP specific command.\n"
40 );
41#endif
42