Niklaus Giger | e8397fc7 | 2007-07-27 11:38:26 +0200 | [diff] [blame] | 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 | |
| 21 | #include <common.h> |
| 22 | #include <command.h> |
| 23 | |
Stefan Roese | 3b3bff4 | 2007-08-14 16:36:29 +0200 | [diff] [blame] | 24 | #ifdef CONFIG_CMD_BSP |
Niklaus Giger | e8397fc7 | 2007-07-27 11:38:26 +0200 | [diff] [blame] | 25 | /* |
| 26 | * Command nm_bsp: Netstal Maschinen BSP specific command |
| 27 | */ |
| 28 | int 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 | |
| 36 | U_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 |