Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor 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
vesta
u-boot-2015.04
Commits
a25f862b
Commit
a25f862b
authored
22 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Patch by Detlev Zundel, 30 Dec 2002:
Add single quote support for (old) command line parser
parent
13122b4f
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
CHANGELOG
+2
-0
2 additions, 0 deletions
CHANGELOG
common/main.c
+27
-4
27 additions, 4 deletions
common/main.c
with
29 additions
and
4 deletions
CHANGELOG
+
2
−
0
View file @
a25f862b
...
...
@@ -2,6 +2,8 @@
Changes since U-Boot 0.2.0:
======================================================================
* Add single quote support for (old) command line parser
* Switch LWMON board default config from FRAM to EEPROM;
in POST, EEPROM shows up on 8 addresses
...
...
This diff is collapsed.
Click to expand it.
common/main.c
+
27
−
4
View file @
a25f862b
...
...
@@ -613,7 +613,7 @@ static void process_macros (const char *input, char *output)
int
state
=
0
;
/* 0 = waiting for '$' */
/* 1 = waiting for '(' */
/* 2 = waiting for ')' */
/* 3 = waiting for ''' */
#ifdef DEBUG_PARSER
char
*
output_start
=
output
;
...
...
@@ -626,6 +626,7 @@ static void process_macros (const char *input, char *output)
c
=
*
input
++
;
inputcnt
--
;
if
(
state
!=
3
)
{
/* remove one level of escape characters */
if
((
c
==
'\\'
)
&&
(
prev
!=
'\\'
))
{
if
(
inputcnt
--
==
0
)
...
...
@@ -633,9 +634,16 @@ static void process_macros (const char *input, char *output)
prev
=
c
;
c
=
*
input
++
;
}
}
switch
(
state
)
{
case
0
:
/* Waiting for (unescaped) $ */
if
((
c
==
'\''
)
&&
(
prev
!=
'\\'
))
{
state
=
3
;
if
(
inputcnt
)
inputcnt
--
;
break
;
}
if
((
c
==
'$'
)
&&
(
prev
!=
'\\'
))
{
state
++
;
}
else
{
...
...
@@ -683,8 +691,17 @@ static void process_macros (const char *input, char *output)
state
=
0
;
}
break
;
case
3
:
/* Waiting for ' */
if
((
c
==
'\''
)
&&
(
prev
!=
'\\'
))
{
state
=
0
;
if
(
inputcnt
)
inputcnt
--
;
}
else
{
*
(
output
++
)
=
c
;
outputcnt
--
;
}
break
;
}
prev
=
c
;
}
...
...
@@ -725,6 +742,7 @@ int run_command (const char *cmd, int flag)
char
*
argv
[
CFG_MAXARGS
+
1
];
/* NULL terminated */
int
argc
;
int
repeatable
=
1
;
int
inquotes
;
#ifdef DEBUG_PARSER
printf
(
"[RUN_COMMAND] cmd[%p]=
\"
"
,
cmd
);
...
...
@@ -758,8 +776,13 @@ int run_command (const char *cmd, int flag)
* Find separator, or string end
* Allow simple escape of ';' by writing "\;"
*/
for
(
sep
=
str
;
*
sep
;
sep
++
)
{
if
((
*
sep
==
';'
)
&&
/* separator */
for
(
inquotes
=
0
,
sep
=
str
;
*
sep
;
sep
++
)
{
if
((
*
sep
==
'\''
)
&&
(
*
(
sep
-
1
)
!=
'\\'
))
inquotes
=!
inquotes
;
if
(
!
inquotes
&&
(
*
sep
==
';'
)
&&
/* separator */
(
sep
!=
str
)
&&
/* past string start */
(
*
(
sep
-
1
)
!=
'\\'
))
/* and NOT escaped */
break
;
...
...
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