Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
cf82607a
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
cf82607a
编写于
12月 26, 2008
作者:
S
Sam Ravnborg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
kconfig: struct property commented
No functional changes Signed-off-by:
N
Sam Ravnborg
<
sam@ravnborg.org
>
上级
5b2cf365
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
10 deletion
+30
-10
scripts/kconfig/expr.h
scripts/kconfig/expr.h
+30
-10
未找到文件。
scripts/kconfig/expr.h
浏览文件 @
cf82607a
...
...
@@ -111,21 +111,41 @@ struct symbol {
#define SYMBOL_HASHSIZE 257
#define SYMBOL_HASHMASK 0xff
/* A property represent the config options that can be associated
* with a config "symbol".
* Sample:
* config FOO
* default y
* prompt "foo prompt"
* select BAR
* config BAZ
* int "BAZ Value"
* range 1..255
*/
enum
prop_type
{
P_UNKNOWN
,
P_PROMPT
,
P_COMMENT
,
P_MENU
,
P_DEFAULT
,
P_CHOICE
,
P_SELECT
,
P_RANGE
,
P_ENV
P_UNKNOWN
,
P_PROMPT
,
/* prompt "foo prompt" or "BAZ Value" */
P_COMMENT
,
/* text associated with a comment */
P_MENU
,
/* prompt associated with a menuconfig option */
P_DEFAULT
,
/* default y */
P_CHOICE
,
/* choice value */
P_SELECT
,
/* select BAR */
P_RANGE
,
/* range 7..100 (for a symbol) */
P_ENV
,
/* value from environment variable */
};
struct
property
{
struct
property
*
next
;
struct
symbol
*
sym
;
enum
prop_type
type
;
const
char
*
text
;
struct
property
*
next
;
/* next property - null if last */
struct
symbol
*
sym
;
/* the symbol for which the property is associated */
enum
prop_type
type
;
/* type of property */
const
char
*
text
;
/* the prompt value - P_PROMPT, P_MENU, P_COMMENT */
struct
expr_value
visible
;
struct
expr
*
expr
;
struct
menu
*
menu
;
struct
file
*
file
;
int
lineno
;
struct
expr
*
expr
;
/* the optional conditional part of the property */
struct
menu
*
menu
;
/* the menu the property are associated with
* valid for: P_SELECT, P_RANGE, P_CHOICE,
* P_PROMPT, P_DEFAULT, P_MENU, P_COMMENT */
struct
file
*
file
;
/* what file was this property defined */
int
lineno
;
/* what lineno was this property defined */
};
#define for_all_properties(sym, st, tok) \
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录