source: umon/ports/beagleboneblack/xcmdtbl.h @ 63834b9

Last change on this file since 63834b9 was 63834b9, checked in by Jarielle Catbagan <jcatbagan93@…>, on 08/21/15 at 17:05:59

BBB: Add proper attributions to the files modified

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 * xcmdtbl.h
3 *
4 * This file must exist even if it is empty because it is #included in the
5 * common file cmdtbl.c.  The purpose is to keep the common comand table
6 * file (common/cmdtbl.c) from being corrupted with non-generic commands
7 * that may be target specific.
8 * It is the entry in the command table representing the new command being
9 * added to the cmdtbl[] array.
10 * For example:
11 *      { "dummy",    dummycmd,   dummyHelp,    0 },
12 *
13 * General notice:
14 * This code is part of a boot-monitor package developed as a generic base
15 * platform for embedded system designs.  As such, it is likely to be
16 * distributed to various projects beyond the control of the original
17 * author.  Please notify the author of any enhancements made or bugs found
18 * so that all may benefit from the changes.  In addition, notification back
19 * to the author will allow the new user to pick up changes that may have
20 * been made by other users after this version of the code was distributed.
21 *
22 * Author:  Ed Sutter
23 * email:   esutter@lucent.com
24 * phone:   908-582-2351
25 *
26 *
27 * Adapted by Jarielle Catbagan for the Beaglebone Black
28 * email: jcatbagan93@gmail.com
29 */
30
31{"mmc",     mmc,        mmcHelp,    0},
Note: See TracBrowser for help on using the repository browser.