container dir change
Signed-off-by: zwx1232718 <zhenghui23@huawei.com>
This commit is contained in:
parent
280769ae42
commit
b0708886fa
|
@ -67,51 +67,6 @@ config PAGE_TABLE_FINE_LOCK
|
||||||
help
|
help
|
||||||
This option will enable fine lock for page table.
|
This option will enable fine lock for page table.
|
||||||
|
|
||||||
######################### config options of container ####################
|
|
||||||
config KERNEL_CONTAINER
|
|
||||||
bool "Enable container Feature"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_VM
|
|
||||||
|
|
||||||
config PID_CONTAINER
|
|
||||||
bool "Enable pid container Feature"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_CONTAINER
|
|
||||||
|
|
||||||
config UTS_CONTAINER
|
|
||||||
bool "Enable uts container Feature"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_CONTAINER
|
|
||||||
|
|
||||||
config MNT_CONTAINER
|
|
||||||
bool "Enable mnt container Feature"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_CONTAINER
|
|
||||||
|
|
||||||
config CHROOT
|
|
||||||
bool "Enable chroot"
|
|
||||||
default n
|
|
||||||
depends on MNT_CONTAINER
|
|
||||||
|
|
||||||
config IPC_CONTAINER
|
|
||||||
bool "Enable ipc container Feature"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_CONTAINER
|
|
||||||
|
|
||||||
config TIME_CONTAINER
|
|
||||||
bool "Enable time container"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_CONTAINER
|
|
||||||
|
|
||||||
config USER_CONTAINER
|
|
||||||
bool "Enable user container"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_CONTAINER
|
|
||||||
|
|
||||||
config NET_CONTAINER
|
|
||||||
bool "Enable net container"
|
|
||||||
default n
|
|
||||||
depends on KERNEL_CONTAINER
|
|
||||||
|
|
||||||
######################### config options of extended #####################
|
######################### config options of extended #####################
|
||||||
source "kernel/extended/Kconfig"
|
source "kernel/extended/Kconfig"
|
||||||
|
|
|
@ -32,15 +32,6 @@ import("//kernel/liteos_a/liteos.gni")
|
||||||
module_name = get_path_info(rebase_path("."), "name")
|
module_name = get_path_info(rebase_path("."), "name")
|
||||||
kernel_module(module_name) {
|
kernel_module(module_name) {
|
||||||
sources = [
|
sources = [
|
||||||
"container/los_container.c",
|
|
||||||
"container/los_credentials.c",
|
|
||||||
"container/los_ipc_container.c",
|
|
||||||
"container/los_mnt_container.c",
|
|
||||||
"container/los_net_container.c",
|
|
||||||
"container/los_pid_container.c",
|
|
||||||
"container/los_time_container.c",
|
|
||||||
"container/los_user_container.c",
|
|
||||||
"container/los_uts_container.c",
|
|
||||||
"core/los_bitmap.c",
|
"core/los_bitmap.c",
|
||||||
"core/los_info.c",
|
"core/los_info.c",
|
||||||
"core/los_process.c",
|
"core/los_process.c",
|
||||||
|
|
|
@ -39,7 +39,6 @@ LOCAL_SRCS := $(wildcard ipc/*.c) $(wildcard core/*.c) $(wildcard mem/membox/*.
|
||||||
$(wildcard mp/*.c) \
|
$(wildcard mp/*.c) \
|
||||||
$(wildcard sched/*.c) \
|
$(wildcard sched/*.c) \
|
||||||
$(wildcard vm/*.c) \
|
$(wildcard vm/*.c) \
|
||||||
$(wildcard container/*.c)
|
|
||||||
|
|
||||||
|
|
||||||
LOCAL_FLAGS := $(LITEOS_CFLAGS_INTERWORK) -Wno-frame-address
|
LOCAL_FLAGS := $(LITEOS_CFLAGS_INTERWORK) -Wno-frame-address
|
||||||
|
|
|
@ -32,6 +32,7 @@ import("//kernel/liteos_a/liteos.gni")
|
||||||
group("extended") {
|
group("extended") {
|
||||||
deps = [
|
deps = [
|
||||||
"blackbox",
|
"blackbox",
|
||||||
|
"container",
|
||||||
"cppsupport",
|
"cppsupport",
|
||||||
"cpup",
|
"cpup",
|
||||||
"dynload",
|
"dynload",
|
||||||
|
@ -52,6 +53,7 @@ group("extended") {
|
||||||
config("public") {
|
config("public") {
|
||||||
configs = [
|
configs = [
|
||||||
"blackbox:public",
|
"blackbox:public",
|
||||||
|
"container:public",
|
||||||
"cpup:public",
|
"cpup:public",
|
||||||
"dynload:public",
|
"dynload:public",
|
||||||
"hidumper:public",
|
"hidumper:public",
|
||||||
|
|
|
@ -113,6 +113,54 @@ config KERNEL_HOOK
|
||||||
default n
|
default n
|
||||||
depends on KERNEL_EXTKERNEL && DEBUG_VERSION
|
depends on KERNEL_EXTKERNEL && DEBUG_VERSION
|
||||||
|
|
||||||
|
|
||||||
|
######################### config options of container ####################
|
||||||
|
config KERNEL_CONTAINER
|
||||||
|
bool "Enable container Feature"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_VM
|
||||||
|
|
||||||
|
config PID_CONTAINER
|
||||||
|
bool "Enable pid container Feature"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_CONTAINER
|
||||||
|
|
||||||
|
config UTS_CONTAINER
|
||||||
|
bool "Enable uts container Feature"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_CONTAINER
|
||||||
|
|
||||||
|
config MNT_CONTAINER
|
||||||
|
bool "Enable mnt container Feature"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_CONTAINER
|
||||||
|
|
||||||
|
config CHROOT
|
||||||
|
bool "Enable chroot"
|
||||||
|
default n
|
||||||
|
depends on MNT_CONTAINER
|
||||||
|
|
||||||
|
config IPC_CONTAINER
|
||||||
|
bool "Enable ipc container Feature"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_CONTAINER
|
||||||
|
|
||||||
|
config TIME_CONTAINER
|
||||||
|
bool "Enable time container"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_CONTAINER
|
||||||
|
|
||||||
|
config USER_CONTAINER
|
||||||
|
bool "Enable user container"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_CONTAINER
|
||||||
|
|
||||||
|
config NET_CONTAINER
|
||||||
|
bool "Enable net container"
|
||||||
|
default n
|
||||||
|
depends on KERNEL_CONTAINER
|
||||||
|
|
||||||
|
|
||||||
######################### config options of trace #########################
|
######################### config options of trace #########################
|
||||||
source "kernel/extended/trace/Kconfig"
|
source "kernel/extended/trace/Kconfig"
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
# Copyright (c) 2023-2023 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
# conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
# provided with the distribution.
|
||||||
|
#
|
||||||
|
# 3. Neither the name of the copyright holder nor the names of its contributors may be used
|
||||||
|
# to endorse or promote products derived from this software without specific prior written
|
||||||
|
# permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||||
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||||
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||||
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||||
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
import("//kernel/liteos_a/liteos.gni")
|
||||||
|
|
||||||
|
module_switch = defined(LOSCFG_KERNEL_CONTAINER)
|
||||||
|
module_name = get_path_info(rebase_path("."), "name")
|
||||||
|
kernel_module(module_name) {
|
||||||
|
sources = [ "los_container.c" ]
|
||||||
|
if (defined(LOSCFG_IPC_CONTAINER)) {
|
||||||
|
sources += [ "los_ipc_container.c" ]
|
||||||
|
}
|
||||||
|
if (defined(LOSCFG_MNT_CONTAINER)) {
|
||||||
|
sources += [ "los_mnt_container.c" ]
|
||||||
|
}
|
||||||
|
if (defined(LOSCFG_NET_CONTAINER)) {
|
||||||
|
sources += [ "los_net_container.c" ]
|
||||||
|
}
|
||||||
|
if (defined(LOSCFG_PID_CONTAINER)) {
|
||||||
|
sources += [ "los_pid_container.c" ]
|
||||||
|
}
|
||||||
|
if (defined(LOSCFG_TIME_CONTAINER)) {
|
||||||
|
sources += [ "los_time_container.c" ]
|
||||||
|
}
|
||||||
|
if (defined(LOSCFG_USER_CONTAINER)) {
|
||||||
|
sources += [
|
||||||
|
"los_credentials.c",
|
||||||
|
"los_user_container.c",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
if (defined(LOSCFG_UTS_CONTAINER)) {
|
||||||
|
sources += [ "los_uts_container.c" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
public_configs = [ ":public" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
config("public") {
|
||||||
|
include_dirs = [ "." ]
|
||||||
|
}
|
|
@ -0,0 +1,63 @@
|
||||||
|
# Copyright (c) 2023-2023 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
# conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
# provided with the distribution.
|
||||||
|
#
|
||||||
|
# 3. Neither the name of the copyright holder nor the names of its contributors may be used
|
||||||
|
# to endorse or promote products derived from this software without specific prior written
|
||||||
|
# permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||||
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||||
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||||
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||||
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
include $(LITEOSTOPDIR)/config.mk
|
||||||
|
|
||||||
|
MODULE_NAME := $(notdir $(shell pwd))
|
||||||
|
|
||||||
|
LOCAL_SRCS := $(wildcard *.c)
|
||||||
|
|
||||||
|
ifneq ($(LOSCFG_IPC_CONTAINER), y)
|
||||||
|
LOCAL_SRCS += $(filter-out los_ipc_container.c, $(LOCAL_SRCS))
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(LOSCFG_MNT_CONTAINER), y)
|
||||||
|
LOCAL_SRCS += $(filter-out los_mnt_container.c, $(LOCAL_SRCS))
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(LOSCFG_NET_CONTAINER), y)
|
||||||
|
LOCAL_SRCS += $(filter-out los_net_container.c, $(LOCAL_SRCS))
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(LOSCFG_PID_CONTAINER), y)
|
||||||
|
LOCAL_SRCS += $(filter-out los_pid_container.c, $(LOCAL_SRCS))
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(LOSCFG_TIME_CONTAINER), y)
|
||||||
|
LOCAL_SRCS += $(filter-out los_time_container.c, $(LOCAL_SRCS))
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(LOSCFG_USER_CONTAINER), y)
|
||||||
|
LOCAL_SRCS += $(filter-out los_credentials.c los_user_container.c, $(LOCAL_SRCS))
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(LOSCFG_UTS_CONTAINER), y)
|
||||||
|
LOCAL_SRCS += $(filter-out los_uts_container.c, $(LOCAL_SRCS))
|
||||||
|
endif
|
||||||
|
|
||||||
|
include $(MODULE)
|
|
@ -26,9 +26,6 @@
|
||||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
import("//build/lite/config/test.gni")
|
|
||||||
import("//kernel/liteos_a/liteos.gni")
|
|
||||||
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
|
||||||
import("./config.gni")
|
import("./config.gni")
|
||||||
|
|
||||||
config("container_config") {
|
config("container_config") {
|
||||||
|
|
|
@ -26,6 +26,8 @@
|
||||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
import("//build/lite/config/test.gni")
|
||||||
|
import("//kernel/liteos_a/liteos.gni")
|
||||||
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
||||||
|
|
||||||
common_include_dirs = [
|
common_include_dirs = [
|
||||||
|
|
|
@ -26,9 +26,6 @@
|
||||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
import("//build/lite/config/test.gni")
|
|
||||||
import("//kernel/liteos_a/liteos.gni")
|
|
||||||
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
|
||||||
import("./config.gni")
|
import("./config.gni")
|
||||||
|
|
||||||
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
|
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
import("//build/lite/config/test.gni")
|
import("//build/lite/config/test.gni")
|
||||||
|
import("//kernel/liteos_a/liteos.gni")
|
||||||
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
||||||
|
|
||||||
common_include_dirs = [
|
common_include_dirs = [
|
||||||
|
|
|
@ -26,9 +26,6 @@
|
||||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
import("//build/lite/config/test.gni")
|
|
||||||
import("//kernel/liteos_a/liteos.gni")
|
|
||||||
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
|
||||||
import("./config.gni")
|
import("./config.gni")
|
||||||
|
|
||||||
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
|
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
import("//build/lite/config/test.gni")
|
import("//build/lite/config/test.gni")
|
||||||
|
import("//kernel/liteos_a/liteos.gni")
|
||||||
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
import("//kernel/liteos_a/testsuites/unittest/config.gni")
|
||||||
|
|
||||||
common_include_dirs = [
|
common_include_dirs = [
|
||||||
|
@ -92,7 +93,7 @@ process_plimits_sources_smoke = [
|
||||||
process_plimits_sources_full = []
|
process_plimits_sources_full = []
|
||||||
|
|
||||||
# plimits module
|
# plimits module
|
||||||
if (LOSCFG_USER_TEST_PROCESS == true) {
|
if (LOSCFG_USER_TEST_PROCESS_PLIMITS == true) {
|
||||||
common_include_dirs += process_plimits_include_dirs
|
common_include_dirs += process_plimits_include_dirs
|
||||||
sources_entry += process_plimits_sources_entry
|
sources_entry += process_plimits_sources_entry
|
||||||
sources_smoke += process_plimits_sources_smoke
|
sources_smoke += process_plimits_sources_smoke
|
||||||
|
|
Loading…
Reference in New Issue