Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
35a79db4
Commit
35a79db4
authored
Oct 07, 2002
by
Dave Jones
Committed by
Linus Torvalds
Oct 07, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Escape quotes in menuconfig
Allows usage of quotes in menu options.
parent
936a2007
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
19 deletions
+23
-19
scripts/Menuconfig
scripts/Menuconfig
+23
-19
No files found.
scripts/Menuconfig
View file @
35a79db4
...
@@ -73,6 +73,10 @@
...
@@ -73,6 +73,10 @@
# - Support for multiple conditions in dep_tristate().
# - Support for multiple conditions in dep_tristate().
# - Implemented new functions: define_tristate(), define_int(), define_hex(),
# - Implemented new functions: define_tristate(), define_int(), define_hex(),
# define_string(), dep_bool().
# define_string(), dep_bool().
#
# 12 November 2001, Keith Owens <kaos@ocs.com.au>
# Escape double quotes on eval so the quotes are still there on the second
# evaluation, required to handle strings with special characters.
#
#
...
@@ -105,11 +109,11 @@ function set_x_info () {
...
@@ -105,11 +109,11 @@ function set_x_info () {
eval
x
=
\$
$1
eval
x
=
\$
$1
if
[
-z
"
$x
"
]
;
then
if
[
-z
"
$x
"
]
;
then
eval
`
sed
-n
-e
's/# \(.*\) is not set.*/\1=n/'
-e
"/^
$1
=/p"
arch
/
$ARCH
/defconfig
`
eval
`
sed
-n
-e
's/# \(.*\) is not set.*/\1=n/'
-e
"/^
$1
=/p"
arch
/
$ARCH
/defconfig
`
eval
x
=
\$
{
$1
:-
"
$2
"
}
eval
x
=
\$
{
$1
:-
\"
$2
\
"
}
eval
$1
=
$x
eval
$1
=
$x
eval
INFO_
$1
=
"' (NEW)'"
eval
INFO_
$1
=
"' (NEW)'"
fi
fi
eval
info
=
"
\$
INFO_
$1
"
eval
info
=
\"\$
INFO_
$1
\
"
}
}
#
#
...
@@ -151,7 +155,7 @@ function define_int () {
...
@@ -151,7 +155,7 @@ function define_int () {
}
}
function
define_string
()
{
function
define_string
()
{
eval
$1
=
"
$2
"
eval
$1
=
\"
$2
\
"
}
}
#
#
...
@@ -333,7 +337,7 @@ function choice () {
...
@@ -333,7 +337,7 @@ function choice () {
while
[
-n
"
$2
"
]
while
[
-n
"
$2
"
]
do
do
if
eval
[
"_
\$
$2
"
=
"_y
"
]
if
eval
[
\"
_
\$
$2
\"
=
\"
_y
\
"
]
then
then
current
=
$1
current
=
$1
break
break
...
@@ -543,9 +547,9 @@ function l_int () {
...
@@ -543,9 +547,9 @@ function l_int () {
# we avoid them:
# we avoid them:
if
expr
"
$answer
"
:
'0$'
'|'
"
$answer
"
:
'[1-9][0-9]*$'
'|'
"
$answer
"
:
'-[1-9][0-9]*$'
>
/dev/null
if
expr
"
$answer
"
:
'0$'
'|'
"
$answer
"
:
'[1-9][0-9]*$'
'|'
"
$answer
"
:
'-[1-9][0-9]*$'
>
/dev/null
then
then
eval
$2
=
"
$answer
"
eval
$2
=
\"
$answer
\
"
else
else
eval
$2
=
"
$3
"
eval
$2
=
\"
$3
\
"
echo
-en
"
\0
07"
echo
-en
"
\0
07"
${
DIALOG
}
--backtitle
"
$backtitle
"
\
${
DIALOG
}
--backtitle
"
$backtitle
"
\
--infobox
"You have made an invalid entry."
3 43
--infobox
"You have made an invalid entry."
3 43
...
@@ -576,9 +580,9 @@ function l_hex () {
...
@@ -576,9 +580,9 @@ function l_hex () {
if
expr
"
$answer
"
:
'[0-9a-fA-F][0-9a-fA-F]*$'
>
/dev/null
if
expr
"
$answer
"
:
'[0-9a-fA-F][0-9a-fA-F]*$'
>
/dev/null
then
then
eval
$2
=
"
$answer
"
eval
$2
=
\"
$answer
\
"
else
else
eval
$2
=
"
$3
"
eval
$2
=
\"
$3
\
"
echo
-en
"
\0
07"
echo
-en
"
\0
07"
${
DIALOG
}
--backtitle
"
$backtitle
"
\
${
DIALOG
}
--backtitle
"
$backtitle
"
\
--infobox
"You have made an invalid entry."
3 43
--infobox
"You have made an invalid entry."
3 43
...
@@ -676,9 +680,9 @@ function l_choice () {
...
@@ -676,9 +680,9 @@ function l_choice () {
do
do
if
[
"
$2
"
=
"
$choice
"
]
if
[
"
$2
"
=
"
$choice
"
]
then
then
eval
$2
=
"y
"
eval
$2
=
\"
y
\
"
else
else
eval
$2
=
"n
"
eval
$2
=
\"
n
\
"
fi
fi
shift
;
shift
shift
;
shift
...
@@ -941,9 +945,9 @@ last retrieved. Leave blank to abort."\
...
@@ -941,9 +945,9 @@ last retrieved. Leave blank to abort."\
[
"_"
=
"_
$ALT_CONFIG
"
]
&&
break
[
"_"
=
"_
$ALT_CONFIG
"
]
&&
break
if
eval
[
-r
"
$ALT_CONFIG
"
]
if
eval
[
-r
\"
$ALT_CONFIG
\
"
]
then
then
eval
load_config_file
"
$ALT_CONFIG
"
eval
load_config_file
\"
$ALT_CONFIG
\
"
break
break
else
else
echo
-ne
"
\0
07"
echo
-ne
"
\0
07"
...
@@ -1067,12 +1071,12 @@ save_configuration () {
...
@@ -1067,12 +1071,12 @@ save_configuration () {
#
#
function
bool
()
{
function
bool
()
{
set_x_info
"
$2
"
"n"
set_x_info
"
$2
"
"n"
eval
define_bool
"
$2
"
"
$x
"
eval
define_bool
\"
$2
\"
\"
$x
\
"
}
}
function
tristate
()
{
function
tristate
()
{
set_x_info
"
$2
"
"n"
set_x_info
"
$2
"
"n"
eval
define_tristate
"
$2
"
"
$x
"
eval
define_tristate
\"
$2
\"
\"
$x
\
"
}
}
function
dep_tristate
()
{
function
dep_tristate
()
{
...
@@ -1138,19 +1142,19 @@ save_configuration () {
...
@@ -1138,19 +1142,19 @@ save_configuration () {
}
}
function
define_hex
()
{
function
define_hex
()
{
eval
$1
=
"
$2
"
eval
$1
=
\"
$2
\
"
echo
"
$1
=
$2
"
>>
$CONFIG
echo
"
$1
=
$2
"
>>
$CONFIG
echo
"#define
$1
0x
${
2
##*[x,X]
}
"
>>
$CONFIG_H
echo
"#define
$1
0x
${
2
##*[x,X]
}
"
>>
$CONFIG_H
}
}
function
define_int
()
{
function
define_int
()
{
eval
$1
=
"
$2
"
eval
$1
=
\"
$2
\
"
echo
"
$1
=
$2
"
>>
$CONFIG
echo
"
$1
=
$2
"
>>
$CONFIG
echo
"#define
$1
(
$2
)"
>>
$CONFIG_H
echo
"#define
$1
(
$2
)"
>>
$CONFIG_H
}
}
function
define_string
()
{
function
define_string
()
{
eval
$1
=
"
$2
"
eval
$1
=
\"
$2
\
"
echo
"
$1
=
\"
$2
\"
"
>>
$CONFIG
echo
"
$1
=
\"
$2
\"
"
>>
$CONFIG
echo
"#define
$1
\"
$2
\"
"
>>
$CONFIG_H
echo
"#define
$1
\"
$2
\"
"
>>
$CONFIG_H
}
}
...
@@ -1160,7 +1164,7 @@ save_configuration () {
...
@@ -1160,7 +1164,7 @@ save_configuration () {
}
}
function
define_tristate
()
{
function
define_tristate
()
{
eval
$1
=
"
$2
"
eval
$1
=
\"
$2
\
"
case
"
$2
"
in
case
"
$2
"
in
y
)
y
)
...
@@ -1199,7 +1203,7 @@ save_configuration () {
...
@@ -1199,7 +1203,7 @@ save_configuration () {
set
--
$choices
set
--
$choices
while
[
-n
"
$2
"
]
while
[
-n
"
$2
"
]
do
do
if
eval
[
"_
\$
$2
"
=
"_y
"
]
if
eval
[
\"
_
\$
$2
\"
=
\"
_y
\
"
]
then
then
current
=
$1
current
=
$1
break
break
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment