Skip to content

Commit

Permalink
make go optional
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Frysinger <[email protected]>
  • Loading branch information
vapier committed Apr 13, 2011
1 parent 0c79cda commit a641b97
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,7 @@ The following options need to be configured:
CONFIG_CMD_FDOS * Dos diskette Support
CONFIG_CMD_FLASH flinfo, erase, protect
CONFIG_CMD_FPGA FPGA device initialization support
CONFIG_CMD_GO * the 'go' command (exec code)
CONFIG_CMD_HWFLOW * RTS/CTS hw flow control
CONFIG_CMD_I2C * I2C serial bus support
CONFIG_CMD_IDE * IDE harddisk support
Expand Down
4 changes: 4 additions & 0 deletions common/cmd_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
#include <command.h>
#include <net.h>

#ifdef CONFIG_CMD_GO

/* Allow ports to override the default behavior */
__attribute__((weak))
unsigned long do_go_exec (ulong (*entry)(int, char * const []), int argc, char * const argv[])
Expand Down Expand Up @@ -67,6 +69,8 @@ U_BOOT_CMD(
" passing 'arg' as arguments"
);

#endif

U_BOOT_CMD(
reset, 1, 0, do_reset,
"Perform RESET of the CPU",
Expand Down
1 change: 1 addition & 0 deletions include/config_cmd_defaults.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#define CONFIG_CMD_BOOTM 1
#define CONFIG_CMD_EXPORTENV 1
#define CONFIG_CMD_GO 1
#define CONFIG_CMD_IMPORTENV 1

#endif

0 comments on commit a641b97

Please sign in to comment.