From fc3002f8db69d5d06d5b2fdcf6d371fb387cd934 Mon Sep 17 00:00:00 2001 From: Yu Changchun Date: Thu, 13 Jan 2022 15:22:10 +0800 Subject: [PATCH] build: replace ohos.build with bundle.json for 3.1 Signed-off-by: Yu Changchun --- bundle.json | 38 ++++++++++++++++++++++++++++++++++++++ ohos.build | 10 ---------- 2 files changed, 38 insertions(+), 10 deletions(-) create mode 100644 bundle.json delete mode 100644 ohos.build diff --git a/bundle.json b/bundle.json new file mode 100644 index 0000000..7edc5e0 --- /dev/null +++ b/bundle.json @@ -0,0 +1,38 @@ +{ + "name": "@openharmony/linux", + "version": "3.1.0", + "description": "Linux内核", + "homePage": "https://gitee.com/openharmony", + "license": "GPL 2.0", + "publishAs": "", + "private": false, + "scripts": {}, + "dirs": {}, + "scripts": {}, + "segment": {}, + "component": { + "name": "linux", + "subsystem": "kernel", + "syscap": [ + "SystemCapabilit.Kernel.Linux" + ], + "features": [], + "adapted_system_type": [ + "small", + "standard" + ], + "rom": "", + "ram": "", + "deps": { + "components": [], + "third_party": [] + }, + "build": { + "sub_component": [ + "//kernel/linux/build:linux_kernel" + ], + "inner_kits": [], + "test": [] + } + } +} diff --git a/ohos.build b/ohos.build deleted file mode 100644 index 855ad3a..0000000 --- a/ohos.build +++ /dev/null @@ -1,10 +0,0 @@ -{ - "subsystem": "kernel", - "parts": { - "kernel": { - "module_list": [ - "//kernel/linux/build: linux_kernel" - ] - } - } -} -- Gitee