Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openwrt
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
Freifunk Luebeck
openwrt
Commits
54fda00d
Commit
54fda00d
authored
18 years ago
by
Felix Fietkau
Browse files
Options
Downloads
Patches
Plain Diff
don't generate .tmpconfig.h and .kconfig.d
SVN-Revision: 5071
parent
0d9ddef0
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
scripts/config/confdata.c
+1
-45
1 addition, 45 deletions
scripts/config/confdata.c
scripts/config/util.c
+0
-25
0 additions, 25 deletions
scripts/config/util.c
with
1 addition
and
70 deletions
scripts/config/confdata.c
+
1
−
45
View file @
54fda00d
...
...
@@ -352,7 +352,7 @@ int conf_read(const char *name)
int
conf_write
(
const
char
*
name
)
{
FILE
*
out
,
*
out_h
;
FILE
*
out
;
struct
symbol
*
sym
;
struct
menu
*
menu
;
const
char
*
basename
;
...
...
@@ -389,12 +389,6 @@ int conf_write(const char *name)
out
=
fopen
(
newname
,
"w"
);
if
(
!
out
)
return
1
;
out_h
=
NULL
;
if
(
!
name
)
{
out_h
=
fopen
(
".tmpconfig.h"
,
"w"
);
if
(
!
out_h
)
return
1
;
}
sym
=
sym_lookup
(
"OPENWRTVERSION"
,
0
);
sym_calc_value
(
sym
);
time
(
&
now
);
...
...
@@ -410,16 +404,6 @@ int conf_write(const char *name)
sym_get_string_value
(
sym
),
use_timestamp
?
"# "
:
""
,
use_timestamp
?
ctime
(
&
now
)
:
""
);
if
(
out_h
)
fprintf
(
out_h
,
"/*
\n
"
" * Automatically generated C config: don't edit
\n
"
" * OpenWrt version: %s
\n
"
"%s%s"
" */
\n
"
"#define AUTOCONF_INCLUDED
\n
"
,
sym_get_string_value
(
sym
),
use_timestamp
?
" * "
:
""
,
use_timestamp
?
ctime
(
&
now
)
:
""
);
if
(
!
sym_change_count
)
sym_clear_all_valid
();
...
...
@@ -435,11 +419,6 @@ int conf_write(const char *name)
"#
\n
"
"# %s
\n
"
"#
\n
"
,
str
);
if
(
out_h
)
fprintf
(
out_h
,
"
\n
"
"/*
\n
"
" * %s
\n
"
" */
\n
"
,
str
);
}
else
if
(
!
(
sym
->
flags
&
SYMBOL_CHOICE
))
{
sym_calc_value
(
sym
);
if
(
!
(
sym
->
flags
&
SYMBOL_WRITE
))
...
...
@@ -460,18 +439,12 @@ int conf_write(const char *name)
switch
(
sym_get_tristate_value
(
sym
))
{
case
no
:
fprintf
(
out
,
"# CONFIG_%s is not set
\n
"
,
sym
->
name
);
if
(
out_h
)
fprintf
(
out_h
,
"#undef CONFIG_%s
\n
"
,
sym
->
name
);
break
;
case
mod
:
fprintf
(
out
,
"CONFIG_%s=m
\n
"
,
sym
->
name
);
if
(
out_h
)
fprintf
(
out_h
,
"#define CONFIG_%s_MODULE 1
\n
"
,
sym
->
name
);
break
;
case
yes
:
fprintf
(
out
,
"CONFIG_%s=y
\n
"
,
sym
->
name
);
if
(
out_h
)
fprintf
(
out_h
,
"#define CONFIG_%s 1
\n
"
,
sym
->
name
);
break
;
}
break
;
...
...
@@ -479,40 +452,28 @@ int conf_write(const char *name)
// fix me
str
=
sym_get_string_value
(
sym
);
fprintf
(
out
,
"CONFIG_%s=
\"
"
,
sym
->
name
);
if
(
out_h
)
fprintf
(
out_h
,
"#define CONFIG_%s
\"
"
,
sym
->
name
);
do
{
l
=
strcspn
(
str
,
"
\"\\
"
);
if
(
l
)
{
fwrite
(
str
,
l
,
1
,
out
);
if
(
out_h
)
fwrite
(
str
,
l
,
1
,
out_h
);
}
str
+=
l
;
while
(
*
str
==
'\\'
||
*
str
==
'"'
)
{
fprintf
(
out
,
"
\\
%c"
,
*
str
);
if
(
out_h
)
fprintf
(
out_h
,
"
\\
%c"
,
*
str
);
str
++
;
}
}
while
(
*
str
);
fputs
(
"
\"\n
"
,
out
);
if
(
out_h
)
fputs
(
"
\"\n
"
,
out_h
);
break
;
case
S_HEX
:
str
=
sym_get_string_value
(
sym
);
if
(
str
[
0
]
!=
'0'
||
(
str
[
1
]
!=
'x'
&&
str
[
1
]
!=
'X'
))
{
fprintf
(
out
,
"CONFIG_%s=%s
\n
"
,
sym
->
name
,
str
);
if
(
out_h
)
fprintf
(
out_h
,
"#define CONFIG_%s 0x%s
\n
"
,
sym
->
name
,
str
);
break
;
}
case
S_INT
:
str
=
sym_get_string_value
(
sym
);
fprintf
(
out
,
"CONFIG_%s=%s
\n
"
,
sym
->
name
,
str
);
if
(
out_h
)
fprintf
(
out_h
,
"#define CONFIG_%s %s
\n
"
,
sym
->
name
,
str
);
break
;
}
}
...
...
@@ -532,11 +493,6 @@ int conf_write(const char *name)
}
}
fclose
(
out
);
if
(
out_h
)
{
fclose
(
out_h
);
rename
(
".tmpconfig.h"
,
"include/linux/autoconf.h"
);
file_write_dep
(
NULL
);
}
if
(
!
name
||
basename
!=
conf_def_filename
)
{
if
(
!
name
)
name
=
conf_def_filename
;
...
...
This diff is collapsed.
Click to expand it.
scripts/config/util.c
+
0
−
25
View file @
54fda00d
...
...
@@ -26,31 +26,6 @@ struct file *file_lookup(const char *name)
return
file
;
}
/* write a dependency file as used by kbuild to track dependencies */
int
file_write_dep
(
const
char
*
name
)
{
struct
file
*
file
;
FILE
*
out
;
if
(
!
name
)
name
=
".kconfig.d"
;
out
=
fopen
(
"..config.tmp"
,
"w"
);
if
(
!
out
)
return
1
;
fprintf
(
out
,
"deps_config :=
\\\n
"
);
for
(
file
=
file_list
;
file
;
file
=
file
->
next
)
{
if
(
file
->
next
)
fprintf
(
out
,
"
\t
%s
\\\n
"
,
file
->
name
);
else
fprintf
(
out
,
"
\t
%s
\n
"
,
file
->
name
);
}
fprintf
(
out
,
"
\n
.config include/linux/autoconf.h: $(deps_config)
\n\n
$(deps_config):
\n
"
);
fclose
(
out
);
rename
(
"..config.tmp"
,
name
);
return
0
;
}
/* Allocate initial growable sting */
struct
gstr
str_new
(
void
)
{
...
...
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