1, this RomFS's codebase is Nuttx romfs, then it is compatible with
Linux RomFS and you can create such a file system using the tool genromfs.
2, there are two major changes against with the original Nuttx romfs:
1), it is memory-based: all contents of the fs are stored in the
memory in the very first stage of "mount".
2), this version of romfs is altered to be compatible with our new
version of VFS to take advantage of vnode cache and path cache.
close: #I3S0CP
366 lines
11 KiB
Plaintext
366 lines
11 KiB
Plaintext
# Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
|
|
# Copyright (c) 2020-2021 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.
|
|
#
|
|
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see extra/config/Kconfig-language.txt
|
|
#
|
|
mainmenu "Huawei LiteOS Configuration"
|
|
|
|
menu "Compiler"
|
|
choice
|
|
prompt "LiteOS_Compiler_Type"
|
|
default COMPILER_CLANG_LLVM
|
|
help
|
|
Enable arm-himix100 or aarch64-himix100 or compiler.
|
|
|
|
config COMPILER_HIMIX_32
|
|
bool "arm-linux-ohoseabi"
|
|
depends on PLATFORM_HI3518EV300 || PLATFORM_HI3516DV300 || PLATFORM_QEMU_ARM_VIRT_CA7
|
|
|
|
config COMPILER_CLANG_LLVM
|
|
bool "clang-llvm"
|
|
depends on PLATFORM_HI3518EV300 || PLATFORM_HI3516DV300 || PLATFORM_QEMU_ARM_VIRT_CA7
|
|
|
|
endchoice
|
|
endmenu
|
|
|
|
menu "Platform"
|
|
|
|
######################### config options of bsp #####################
|
|
source "../../kernel/liteos_a/platform/Kconfig"
|
|
|
|
######################### config options of cpu arch ################
|
|
source "../../kernel/liteos_a/arch/Kconfig"
|
|
|
|
######################### config options of rootfs #####################
|
|
source "../../kernel/liteos_a/kernel/common/Kconfig"
|
|
######################### config options of patchfs #####################
|
|
source "../../kernel/liteos_a/kernel/common/patchfs/Kconfig"
|
|
|
|
config QUICK_START
|
|
bool "Enable QUICK_START"
|
|
default n
|
|
depends on DRIVERS && FS_VFS
|
|
help
|
|
Answer Y to enable LiteOS support quick start.
|
|
endmenu
|
|
|
|
######################### config options of kernel #####################
|
|
source "../../kernel/liteos_a/kernel/Kconfig"
|
|
######################### config options of lib ########################
|
|
source "../../kernel/liteos_a/lib/Kconfig"
|
|
######################### config options of compatibility ##############
|
|
menu "Compat"
|
|
source "../../kernel/liteos_a/compat/posix/Kconfig"
|
|
source "../../kernel/liteos_a/bsd/Kconfig"
|
|
endmenu
|
|
|
|
######################### config options of framework ##################
|
|
#source "../../frameworks/m2mcomm/Kconfig"
|
|
|
|
######################## config options of filesystem ##################
|
|
menu "FileSystem"
|
|
source "../../kernel/liteos_a/fs/vfs/Kconfig"
|
|
source "../../kernel/liteos_a/fs/fat/Kconfig"
|
|
source "../../kernel/liteos_a/fs/ramfs/Kconfig"
|
|
source "../../kernel/liteos_a/fs/romfs/Kconfig"
|
|
source "../../kernel/liteos_a/fs/nfs/Kconfig"
|
|
source "../../kernel/liteos_a/fs/proc/Kconfig"
|
|
source "../../kernel/liteos_a/fs/jffs2/Kconfig"
|
|
config ENABLE_READ_BUFFER
|
|
bool "Enable read buffer Option"
|
|
default n
|
|
depends on FS_VFS
|
|
help
|
|
Answer Y to add enable read buffer Option.
|
|
|
|
config MAX_VNODE_SIZE
|
|
int "Vnode max number"
|
|
range 0 512
|
|
default 512
|
|
depends on FS_VFS
|
|
help
|
|
vnode number, range from 0 to 512.
|
|
|
|
config MAX_PATH_CACHE_SIZE
|
|
int "PathCache max number"
|
|
range 0 1024
|
|
default 512
|
|
depends on FS_VFS
|
|
help
|
|
pathCache number, range from 0 to 1024.
|
|
endmenu
|
|
|
|
######################## config options of net ############################
|
|
source "../../kernel/liteos_a/net/Kconfig"
|
|
|
|
######################## config options of debug ########################
|
|
menu "Debug"
|
|
config COMPILE_DEBUG
|
|
bool "Enable GCC -g Option"
|
|
default n
|
|
help
|
|
Answer Y to add -g option in gcc command. But the LiteOS size will be much larger.
|
|
|
|
config PLATFORM_ADAPT
|
|
bool "Enable Os_adapt"
|
|
default y
|
|
help
|
|
Answer Y to add os_adapt.c to LiteOS.
|
|
|
|
config ENABLE_OOM_LOOP_TASK
|
|
bool "Enable Oom loop task"
|
|
default n
|
|
depends on KERNEL_VM
|
|
help
|
|
Answer Y to enable oom loop kthread to check system out of memory.
|
|
|
|
config DO_ALIGN
|
|
bool "Enable do align for hi3518e"
|
|
default y
|
|
depends on PLATFORM_HI3518EV200
|
|
help
|
|
Answer Y to enable do align for hi3518e.
|
|
|
|
|
|
config ENABLE_MAGICKEY
|
|
bool "Enable MAGIC KEY"
|
|
default y
|
|
help
|
|
Answer Y to enable LiteOS Magic key.
|
|
ctrl + r : Magic key check switch;
|
|
ctrl + z : Show all magic op key;
|
|
ctrl + t : Show task information;
|
|
ctrl + p : System panic;
|
|
ctrl + e : Check system memory pool.
|
|
|
|
config THUMB
|
|
bool "Enable Thumb"
|
|
default n
|
|
help
|
|
Answer Y to build thumb version. This will make LiteOS smaller.
|
|
|
|
config PLATFORM_DVFS
|
|
bool "Enable Dvfs"
|
|
default n
|
|
depends on COMPAT_LINUXKPI
|
|
help
|
|
Answer Y to enable LiteOS support dynamic voltage and frequency scaling feature for
|
|
low power consumption.
|
|
|
|
config SAVE_EXCINFO
|
|
bool "Enable Saving Exception Information"
|
|
default n
|
|
help
|
|
Answer Y to enable LiteOS support saving exception information to storage medium.
|
|
|
|
config DEBUG_VERSION
|
|
bool "Enable a Debug Version"
|
|
default n
|
|
help
|
|
If you do not select this option that means you enable a release version for LiteOS.
|
|
It also means you do not want to use debug modules, like shell,telnet,tftp,
|
|
,nfs,ramfs proc and memory check.
|
|
If you select this option that means you enable a debug version for LiteOS.
|
|
That means you want a opposite behaviour compared to release version.
|
|
|
|
config DEBUG_KERNEL
|
|
bool "Enable Debug LiteOS Kernel Resource"
|
|
default n
|
|
depends on DEBUG_VERSION
|
|
help
|
|
If you select this option that means you enable debugging kernel resource.
|
|
It also means you want to get queue, mutex, semaphore, memory debug information.
|
|
That means you want a opposite behaviour compared to release version.
|
|
|
|
config DEBUG_QUEUE
|
|
bool "Enable Queue Debugging"
|
|
default n
|
|
depends on DEBUG_KERNEL
|
|
help
|
|
Answer Y to enable debug queue.
|
|
|
|
config DEBUG_DEADLOCK
|
|
bool "Enable Mutex Deadlock Debugging"
|
|
default n
|
|
depends on DEBUG_KERNEL
|
|
help
|
|
Answer Y to enable debug mutex deadlock.
|
|
|
|
config DEBUG_SEMAPHORE
|
|
bool "Enable Semaphore Debugging"
|
|
default n
|
|
depends on DEBUG_KERNEL
|
|
help
|
|
Answer Y to enable debug semaphore.
|
|
|
|
source "../../kernel/liteos_a/shell/Kconfig"
|
|
config NET_LWIP_SACK_TFTP
|
|
bool "Enable Tftp"
|
|
default y
|
|
depends on SHELL && NET_LWIP_SACK && DEBUG_VERSION
|
|
help
|
|
Answer Y to enable LiteOS support tftp cmd and tftp tool.
|
|
source "../../kernel/liteos_a/net/telnet/Kconfig"
|
|
config EXC_INTERACTION
|
|
bool "Enable exc interaction"
|
|
default n
|
|
depends on SHELL
|
|
help
|
|
Answer Y to enable exception interaction for LiteOS, when the system enter exception, user can also interact with system by shell
|
|
command like readreg, writereg,task,hwi.
|
|
|
|
config SCHED_DEBUG
|
|
bool "Enable sched debug Feature"
|
|
default n
|
|
depends on DEBUG_VERSION
|
|
help
|
|
If you wish to build LiteOS with support for sched debug.
|
|
|
|
config USER_INIT_DEBUG
|
|
bool "Enable user init Debug"
|
|
default n
|
|
depends on DEBUG_VERSION
|
|
|
|
config SHELL_CMD_DEBUG
|
|
bool "Enable shell cmd Debug"
|
|
default n
|
|
depends on DEBUG_VERSION && SHELL
|
|
|
|
config USB_DEBUG
|
|
bool "Enable USB Debug"
|
|
default n
|
|
depends on SHELL && DRIVERS_USB && DEBUG_VERSION
|
|
help
|
|
Answer Y to enable LiteOS support usb debug.
|
|
use shell command to open the specified debug level print.
|
|
config MEM_DEBUG
|
|
bool "Enable MEM Debug"
|
|
default n
|
|
depends on DEBUG_VERSION
|
|
help
|
|
Answer Y to enable LiteOS support mem debug.
|
|
|
|
config MEM_LEAKCHECK
|
|
bool "Enable Function call stack of Mem operation recorded"
|
|
default n
|
|
depends on DEBUG_VERSION && MEM_DEBUG
|
|
help
|
|
Answer Y to enable record the LR of Function call stack of Mem operation, it can check the mem leak through the infomations of mem node.
|
|
config BASE_MEM_NODE_INTEGRITY_CHECK
|
|
bool "Enable integrity check or not "
|
|
default n
|
|
depends on DEBUG_VERSION && MEM_DEBUG
|
|
config MEM_WATERLINE
|
|
bool "Enable memory pool waterline or not"
|
|
default n
|
|
depends on DEBUG_VERSION && MEM_DEBUG
|
|
|
|
config VM_OVERLAP_CHECK
|
|
bool "Enable VM overlap check or not"
|
|
default n
|
|
depends on DEBUG_VERSION && MEM_DEBUG
|
|
help
|
|
Answer Y to enable vm overlap check.
|
|
|
|
config NULL_ADDRESS_PROTECT
|
|
bool "Enable NULL Address protect"
|
|
default n
|
|
depends on (PLATFORM_HI3518EV200 || PLATFORM_HI3516CV300 || PLATFORM_HI3518EV300 || PLATFORM_HI3516DV300 || PLATFORM_QEMU_ARM_VIRT_CA7) && DEBUG_VERSION
|
|
help
|
|
Answer Y to set mem address 0~1M prohibit to access, read or write will trigger exception.
|
|
|
|
endmenu
|
|
|
|
######################## config options os drivers ########################
|
|
menu "Driver"
|
|
config DRIVERS
|
|
bool "Enable Driver"
|
|
default y
|
|
help
|
|
Answer Y to enable LiteOS support driver.
|
|
|
|
source "../../kernel/liteos_a/bsd/dev/usb/Kconfig"
|
|
source "../../drivers/adapter/khdf/liteos/Kconfig"
|
|
|
|
source "drivers/char/mem/Kconfig"
|
|
source "drivers/char/quickstart/Kconfig"
|
|
source "drivers/char/random/Kconfig"
|
|
source "../../drivers/liteos/tzdriver/Kconfig"
|
|
source "drivers/char/video/Kconfig"
|
|
source "../../drivers/liteos/hievent/Kconfig"
|
|
|
|
endmenu
|
|
|
|
menu "Security"
|
|
source "../../kernel/liteos_a/security/Kconfig"
|
|
endmenu
|
|
|
|
menu "Test"
|
|
config ENABLE_KERNEL_TEST
|
|
bool "Enable Kernel Test"
|
|
default n
|
|
endmenu
|
|
|
|
menu "Stack Smashing Protector (SSP) Compiler Feature"
|
|
|
|
choice
|
|
prompt "Enable stack buffer overflow detection"
|
|
default CC_STACKPROTECTOR_STRONG
|
|
---help---
|
|
This option turns on the -fstack-protector GCC feature. This
|
|
feature puts, at the beginning of functions, a canary value on
|
|
the stack just before the return address, and validates
|
|
the value just before actually returning. Stack based buffer
|
|
overflows (that need to overwrite this return address) now also
|
|
overwrite the canary, which gets detected and the attack is then
|
|
neutralized via a kernel panic.
|
|
|
|
This feature requires gcc version 4.2 or above, or a distribution
|
|
gcc with the feature backported. Older versions are automatically
|
|
detected and for those versions, this configuration option is
|
|
ignored. (and a warning is printed during bootup)
|
|
|
|
config CC_NO_STACKPROTECTOR
|
|
bool "-fno-stack-protector"
|
|
|
|
config CC_STACKPROTECTOR
|
|
bool "-fstack-protector"
|
|
|
|
config CC_STACKPROTECTOR_STRONG
|
|
bool "-fstack-protector-strong"
|
|
|
|
config CC_STACKPROTECTOR_ALL
|
|
bool "-fstack-protector-all"
|
|
|
|
endchoice
|
|
|
|
endmenu
|