Add APP_Framework Kconfig

This commit is contained in:
Zhao_Jiasheng 2021-06-10 11:41:30 +08:00
parent e37efc70ce
commit 9158349752
4 changed files with 14 additions and 2 deletions

View File

View File

@ -22,7 +22,7 @@
#ifndef __XS_KLIST_H__ #ifndef __XS_KLIST_H__
#define __XS_KLIST_H__ #define __XS_KLIST_H__
#include <libc.h> #include <errno.h>
#include <stdint.h> #include <stdint.h>
#ifdef __cplusplus #ifdef __cplusplus

10
APP_Framework/Kconfig Normal file
View File

@ -0,0 +1,10 @@
menu "APP_Framework"
config APP_DIR
string
option env="SRC_APP_DIR"
default "."
source "$APP_DIR/Applications/Kconfig"
endmenu

View File

@ -8,3 +8,5 @@ source "$KERNEL_DIR/fs/Kconfig"
source "$KERNEL_DIR/framework/Kconfig" source "$KERNEL_DIR/framework/Kconfig"
source "$KERNEL_DIR/applications/Kconfig" source "$KERNEL_DIR/applications/Kconfig"
source "$KERNEL_DIR/../../APP_Framework/Kconfig"