Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U-Boot
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fork
U-Boot
Commits
b7fbdc60
Commit
b7fbdc60
authored
9 years ago
by
David Müller (ELSOFT AG)
Committed by
Tom Rini
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused CONFIG_CMD_HWFLOW option and associated dead code.
Signed-off-by:
David Müller
<
d.mueller@elsoft.ch
>
parent
928f6054
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmd/load.c
+0
-30
0 additions, 30 deletions
cmd/load.c
include/config_cmd_all.h
+0
-1
0 additions, 1 deletion
include/config_cmd_all.h
with
0 additions
and
31 deletions
cmd/load.c
+
0
−
30
View file @
b7fbdc60
...
@@ -1081,33 +1081,3 @@ U_BOOT_CMD(
...
@@ -1081,33 +1081,3 @@ U_BOOT_CMD(
);
);
#endif
/* CONFIG_CMD_LOADB */
#endif
/* CONFIG_CMD_LOADB */
/* -------------------------------------------------------------------- */
#if defined(CONFIG_CMD_HWFLOW)
int
do_hwflow
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
const
argv
[])
{
extern
int
hwflow_onoff
(
int
);
if
(
argc
==
2
)
{
if
(
strcmp
(
argv
[
1
],
"off"
)
==
0
)
hwflow_onoff
(
-
1
);
else
if
(
strcmp
(
argv
[
1
],
"on"
)
==
0
)
hwflow_onoff
(
1
);
else
return
CMD_RET_USAGE
;
}
printf
(
"RTS/CTS hardware flow control: %s
\n
"
,
hwflow_onoff
(
0
)
?
"on"
:
"off"
);
return
0
;
}
/* -------------------------------------------------------------------- */
U_BOOT_CMD
(
hwflow
,
2
,
0
,
do_hwflow
,
"turn RTS/CTS hardware flow control in serial line on/off"
,
"[on|off]"
);
#endif
/* CONFIG_CMD_HWFLOW */
This diff is collapsed.
Click to expand it.
include/config_cmd_all.h
+
0
−
1
View file @
b7fbdc60
...
@@ -34,7 +34,6 @@
...
@@ -34,7 +34,6 @@
#define CONFIG_CMD_FUSE
/* Device fuse support */
#define CONFIG_CMD_FUSE
/* Device fuse support */
#define CONFIG_CMD_GETTIME
/* Get time since boot */
#define CONFIG_CMD_GETTIME
/* Get time since boot */
#define CONFIG_CMD_HASH
/* calculate hash / digest */
#define CONFIG_CMD_HASH
/* calculate hash / digest */
#define CONFIG_CMD_HWFLOW
/* RTS/CTS hw flow control */
#define CONFIG_CMD_I2C
/* I2C serial bus support */
#define CONFIG_CMD_I2C
/* I2C serial bus support */
#define CONFIG_CMD_IDE
/* IDE harddisk support */
#define CONFIG_CMD_IDE
/* IDE harddisk support */
#define CONFIG_CMD_IMMAP
/* IMMR dump support */
#define CONFIG_CMD_IMMAP
/* IMMR dump support */
...
...
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