Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
a641b979
Commit
a641b979
authored
14 years ago
by
Mike Frysinger
Browse files
Options
Downloads
Patches
Plain Diff
make `go` optional
Signed-off-by:
Mike Frysinger
<
vapier@gentoo.org
>
parent
0c79cda0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README
+1
-0
1 addition, 0 deletions
README
common/cmd_boot.c
+4
-0
4 additions, 0 deletions
common/cmd_boot.c
include/config_cmd_defaults.h
+1
-0
1 addition, 0 deletions
include/config_cmd_defaults.h
with
6 additions
and
0 deletions
README
+
1
−
0
View file @
a641b979
...
@@ -644,6 +644,7 @@ The following options need to be configured:
...
@@ -644,6 +644,7 @@ The following options need to be configured:
CONFIG_CMD_FDOS * Dos diskette Support
CONFIG_CMD_FDOS * Dos diskette Support
CONFIG_CMD_FLASH flinfo, erase, protect
CONFIG_CMD_FLASH flinfo, erase, protect
CONFIG_CMD_FPGA FPGA device initialization support
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_HWFLOW * RTS/CTS hw flow control
CONFIG_CMD_I2C * I2C serial bus support
CONFIG_CMD_I2C * I2C serial bus support
CONFIG_CMD_IDE * IDE harddisk support
CONFIG_CMD_IDE * IDE harddisk support
...
...
This diff is collapsed.
Click to expand it.
common/cmd_boot.c
+
4
−
0
View file @
a641b979
...
@@ -28,6 +28,8 @@
...
@@ -28,6 +28,8 @@
#include
<command.h>
#include
<command.h>
#include
<net.h>
#include
<net.h>
#ifdef CONFIG_CMD_GO
/* Allow ports to override the default behavior */
/* Allow ports to override the default behavior */
__attribute__
((
weak
))
__attribute__
((
weak
))
unsigned
long
do_go_exec
(
ulong
(
*
entry
)(
int
,
char
*
const
[]),
int
argc
,
char
*
const
argv
[])
unsigned
long
do_go_exec
(
ulong
(
*
entry
)(
int
,
char
*
const
[]),
int
argc
,
char
*
const
argv
[])
...
@@ -67,6 +69,8 @@ U_BOOT_CMD(
...
@@ -67,6 +69,8 @@ U_BOOT_CMD(
" passing 'arg' as arguments"
" passing 'arg' as arguments"
);
);
#endif
U_BOOT_CMD
(
U_BOOT_CMD
(
reset
,
1
,
0
,
do_reset
,
reset
,
1
,
0
,
do_reset
,
"Perform RESET of the CPU"
,
"Perform RESET of the CPU"
,
...
...
This diff is collapsed.
Click to expand it.
include/config_cmd_defaults.h
+
1
−
0
View file @
a641b979
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
#define CONFIG_CMD_BOOTM 1
#define CONFIG_CMD_BOOTM 1
#define CONFIG_CMD_EXPORTENV 1
#define CONFIG_CMD_EXPORTENV 1
#define CONFIG_CMD_GO 1
#define CONFIG_CMD_IMPORTENV 1
#define CONFIG_CMD_IMPORTENV 1
#endif
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment