Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Build Lite
提交
43b844eb
B
Build Lite
项目概览
OpenHarmony
/
Build Lite
大约 1 年 前同步成功
通知
22
Star
24
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
B
Build Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
43b844eb
编写于
1月 10, 2022
作者:
O
openharmony_ci
提交者:
Gitee
1月 10, 2022
浏览文件
操作
浏览文件
下载
差异文件
!346 bugfix: skip kernel for standard product.
Merge pull request !346 from yaoxiaoyu_903c/master
上级
7a9e9773
6ac3244a
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
10 addition
and
15 deletion
+10
-15
hb_internal/build/build_process.py
hb_internal/build/build_process.py
+2
-1
hb_internal/common/config.py
hb_internal/common/config.py
+0
-4
hb_internal/common/utils.py
hb_internal/common/utils.py
+2
-5
hb_internal/set/set.py
hb_internal/set/set.py
+6
-5
未找到文件。
hb_internal/build/build_process.py
浏览文件 @
43b844eb
...
@@ -304,6 +304,7 @@ class Build():
...
@@ -304,6 +304,7 @@ class Build():
if
self
.
config
.
os_level
!=
"standard"
:
if
self
.
config
.
os_level
!=
"standard"
:
self
.
register_args
(
'device_company'
,
self
.
register_args
(
'device_company'
,
self
.
config
.
device_company
)
self
.
config
.
device_company
)
self
.
register_args
(
'ohos_kernel_type'
,
self
.
config
.
kernel
)
if
self
.
config
.
kernel
:
self
.
register_args
(
'ohos_kernel_type'
,
self
.
config
.
kernel
)
self
.
_args_list
+=
Product
.
get_features
(
self
.
config
.
product_json
)
self
.
_args_list
+=
Product
.
get_features
(
self
.
config
.
product_json
)
hb_internal/common/config.py
浏览文件 @
43b844eb
...
@@ -145,10 +145,6 @@ class Config(metaclass=Singleton):
...
@@ -145,10 +145,6 @@ class Config(metaclass=Singleton):
@
property
@
property
def
kernel
(
self
):
def
kernel
(
self
):
if
self
.
_kernel
is
None
:
raise
OHOSException
(
'Failed to get kernel. '
'Please run command "hb set" to '
'init OHOS development environment'
)
return
self
.
_kernel
return
self
.
_kernel
@
kernel
.
setter
@
kernel
.
setter
...
...
hb_internal/common/utils.py
浏览文件 @
43b844eb
...
@@ -52,11 +52,8 @@ def read_json_file(input_file):
...
@@ -52,11 +52,8 @@ def read_json_file(input_file):
raise
OHOSException
(
f
'
{
input_file
}
not found'
)
raise
OHOSException
(
f
'
{
input_file
}
not found'
)
with
open
(
input_file
,
'rb'
)
as
input_f
:
with
open
(
input_file
,
'rb'
)
as
input_f
:
try
:
data
=
json
.
load
(
input_f
)
data
=
json
.
load
(
input_f
)
return
data
return
data
except
json
.
JSONDecodeError
:
raise
OHOSException
(
f
'
{
input_file
}
parsing error!'
)
def
dump_json_file
(
dump_file
,
json_data
):
def
dump_json_file
(
dump_file
,
json_data
):
...
...
hb_internal/set/set.py
浏览文件 @
43b844eb
...
@@ -32,9 +32,7 @@ def add_options(parser):
...
@@ -32,9 +32,7 @@ def add_options(parser):
nargs
=
'?'
,
nargs
=
'?'
,
default
=
None
,
default
=
None
,
help
=
'Set OHOS root path'
)
help
=
'Set OHOS root path'
)
parser
.
add_argument
(
'-p'
,
parser
.
add_argument
(
'-p'
,
'--product'
,
help
=
'Set OHOS board and kernel'
)
'--product'
,
help
=
'Set OHOS board and kernel'
)
def
exec_command
(
args
):
def
exec_command
(
args
):
...
@@ -92,7 +90,10 @@ def set_product(product_name=None, company=None):
...
@@ -92,7 +90,10 @@ def set_product(product_name=None, company=None):
if
config
.
version
==
'2.0'
:
if
config
.
version
==
'2.0'
:
config
.
device_path
=
board_path
config
.
device_path
=
board_path
else
:
else
:
config
.
device_path
=
Device
.
get_device_path
(
board_path
,
config
.
kernel
,
if
config
.
os_level
==
"standard"
:
kernel_version
)
config
.
device_path
=
board_path
else
:
config
.
device_path
=
Device
.
get_device_path
(
board_path
,
config
.
kernel
,
kernel_version
)
return
0
return
0
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录