2018-12-18 20:13:35 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LKC_H
|
|
|
|
#define LKC_H
|
|
|
|
|
2020-10-29 23:51:51 +08:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include "expr.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "lkc_proto.h"
|
|
|
|
|
|
|
|
#define SRCTREE "srctree"
|
|
|
|
|
2010-08-15 11:57:43 +08:00
|
|
|
#ifndef CONFIG_
|
|
|
|
#define CONFIG_ "CONFIG_"
|
|
|
|
#endif
|
2012-10-20 07:06:24 +08:00
|
|
|
static inline const char *CONFIG_prefix(void)
|
|
|
|
{
|
2012-10-20 07:06:25 +08:00
|
|
|
return getenv( "CONFIG_" ) ?: CONFIG_;
|
2012-10-20 07:06:24 +08:00
|
|
|
}
|
|
|
|
#undef CONFIG_
|
|
|
|
#define CONFIG_ CONFIG_prefix()
|
2005-11-09 13:34:51 +08:00
|
|
|
|
2018-03-23 01:00:14 +08:00
|
|
|
extern int yylineno;
|
2005-04-17 06:20:36 +08:00
|
|
|
void zconfdump(FILE *out);
|
|
|
|
void zconf_starthelp(void);
|
|
|
|
FILE *zconf_fopen(const char *name);
|
|
|
|
void zconf_initscan(const char *name);
|
|
|
|
void zconf_nextfile(const char *name);
|
|
|
|
int zconf_lineno(void);
|
2010-09-05 04:03:30 +08:00
|
|
|
const char *zconf_curname(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* confdata.c */
|
2007-04-02 04:29:38 +08:00
|
|
|
const char *conf_get_configname(void);
|
2013-06-07 11:37:00 +08:00
|
|
|
void set_all_choice_values(struct symbol *csym);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-08-05 06:01:02 +08:00
|
|
|
/* confdata.c and expr.c */
|
|
|
|
static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out)
|
|
|
|
{
|
2011-11-24 02:05:53 +08:00
|
|
|
assert(len != 0);
|
|
|
|
|
|
|
|
if (fwrite(str, len, count, out) != count)
|
|
|
|
fprintf(stderr, "Error in writing or end of file.\n");
|
2010-08-05 06:01:02 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* util.c */
|
|
|
|
struct file *file_lookup(const char *name);
|
2012-11-06 22:32:08 +08:00
|
|
|
void *xmalloc(size_t size);
|
|
|
|
void *xcalloc(size_t nmemb, size_t size);
|
2018-02-09 00:19:07 +08:00
|
|
|
void *xrealloc(void *p, size_t size);
|
2018-02-17 02:38:31 +08:00
|
|
|
char *xstrdup(const char *s);
|
kconfig: reference environment variables directly and remove 'option env='
To get access to environment variables, Kconfig needs to define a
symbol using "option env=" syntax. It is tedious to add a symbol entry
for each environment variable given that we need to define much more
such as 'CC', 'AS', 'srctree' etc. to evaluate the compiler capability
in Kconfig.
Adding '$' for symbol references is grammatically inconsistent.
Looking at the code, the symbols prefixed with 'S' are expanded by:
- conf_expand_value()
This is used to expand 'arch/$ARCH/defconfig' and 'defconfig_list'
- sym_expand_string_value()
This is used to expand strings in 'source' and 'mainmenu'
All of them are fixed values independent of user configuration. So,
they can be changed into the direct expansion instead of symbols.
This change makes the code much cleaner. The bounce symbols 'SRCARCH',
'ARCH', 'SUBARCH', 'KERNELVERSION' are gone.
sym_init() hard-coding 'UNAME_RELEASE' is also gone. 'UNAME_RELEASE'
should be replaced with an environment variable.
ARCH_DEFCONFIG is a normal symbol, so it should be simply referenced
without '$' prefix.
The new syntax is addicted by Make. The variable reference needs
parentheses, like $(FOO), but you can omit them for single-letter
variables, like $F. Yet, in Makefiles, people tend to use the
parenthetical form for consistency / clarification.
At this moment, only the environment variable is supported, but I will
extend the concept of 'variable' later on.
The variables are expanded in the lexer so we can simplify the token
handling on the parser side.
For example, the following code works.
[Example code]
config MY_TOOLCHAIN_LIST
string
default "My tools: CC=$(CC), AS=$(AS), CPP=$(CPP)"
[Result]
$ make -s alldefconfig && tail -n 1 .config
CONFIG_MY_TOOLCHAIN_LIST="My tools: CC=gcc, AS=as, CPP=gcc -E"
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
2018-05-28 17:21:40 +08:00
|
|
|
char *xstrndup(const char *s, size_t n);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2019-01-24 18:47:29 +08:00
|
|
|
/* lexer.l */
|
2018-12-21 16:33:05 +08:00
|
|
|
int yylex(void);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
struct gstr {
|
|
|
|
size_t len;
|
|
|
|
char *s;
|
2009-12-20 16:29:49 +08:00
|
|
|
/*
|
|
|
|
* when max_width is not zero long lines in string s (if any) get
|
|
|
|
* wrapped not to exceed the max_width value
|
|
|
|
*/
|
|
|
|
int max_width;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
struct gstr str_new(void);
|
|
|
|
void str_free(struct gstr *gs);
|
|
|
|
void str_append(struct gstr *gs, const char *s);
|
|
|
|
void str_printf(struct gstr *gs, const char *fmt, ...);
|
|
|
|
const char *str_get(struct gstr *gs);
|
|
|
|
|
2020-09-09 06:16:38 +08:00
|
|
|
/* menu.c */
|
|
|
|
void _menu_init(void);
|
|
|
|
void menu_warn(struct menu *menu, const char *fmt, ...);
|
|
|
|
struct menu *menu_add_menu(void);
|
|
|
|
void menu_end_menu(void);
|
|
|
|
void menu_add_entry(struct symbol *sym);
|
|
|
|
void menu_add_dep(struct expr *dep);
|
|
|
|
void menu_add_visibility(struct expr *dep);
|
|
|
|
struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
|
|
|
|
void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
|
|
|
|
void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
|
|
|
void menu_finalize(struct menu *parent);
|
|
|
|
void menu_set_type(int type);
|
|
|
|
|
|
|
|
extern struct menu rootmenu;
|
|
|
|
|
|
|
|
bool menu_is_empty(struct menu *menu);
|
|
|
|
bool menu_is_visible(struct menu *menu);
|
|
|
|
bool menu_has_prompt(struct menu *menu);
|
|
|
|
const char *menu_get_prompt(struct menu *menu);
|
|
|
|
struct menu *menu_get_root_menu(struct menu *menu);
|
|
|
|
struct menu *menu_get_parent_menu(struct menu *menu);
|
|
|
|
bool menu_has_help(struct menu *menu);
|
|
|
|
const char *menu_get_help(struct menu *menu);
|
|
|
|
struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
|
|
|
|
void menu_get_ext_help(struct menu *menu, struct gstr *help);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* symbol.c */
|
|
|
|
void sym_clear_all_valid(void);
|
2010-08-01 05:35:32 +08:00
|
|
|
struct symbol *sym_choice_default(struct symbol *sym);
|
2018-12-21 16:33:04 +08:00
|
|
|
struct property *sym_get_range_prop(struct symbol *sym);
|
2010-08-01 05:35:34 +08:00
|
|
|
const char *sym_get_string_default(struct symbol *sym);
|
2005-04-17 06:20:36 +08:00
|
|
|
struct symbol *sym_check_deps(struct symbol *sym);
|
|
|
|
struct symbol *prop_get_symbol(struct property *prop);
|
|
|
|
|
|
|
|
static inline tristate sym_get_tristate_value(struct symbol *sym)
|
|
|
|
{
|
|
|
|
return sym->curr.tri;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline struct symbol *sym_get_choice_value(struct symbol *sym)
|
|
|
|
{
|
|
|
|
return (struct symbol *)sym->curr.val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval)
|
|
|
|
{
|
|
|
|
return sym_set_tristate_value(chval, yes);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool sym_is_choice(struct symbol *sym)
|
|
|
|
{
|
|
|
|
return sym->flags & SYMBOL_CHOICE ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool sym_is_choice_value(struct symbol *sym)
|
|
|
|
{
|
|
|
|
return sym->flags & SYMBOL_CHOICEVAL ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool sym_is_optional(struct symbol *sym)
|
|
|
|
{
|
|
|
|
return sym->flags & SYMBOL_OPTIONAL ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool sym_has_value(struct symbol *sym)
|
|
|
|
{
|
2006-06-09 13:12:42 +08:00
|
|
|
return sym->flags & SYMBOL_DEF_USER ? true : false;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* LKC_H */
|