Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
fix some errors in kconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhainebula committed Jul 3, 2022
1 parent fbabe68 commit 5b72220
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ menu "Memory and CPU Configuration"
int "the maximum size of open files"
default 1024

config PIPE_FILES
config PIPE_SIZE
int "the maximum size of pipe files"
default 4096

Expand All @@ -39,7 +39,7 @@ menu "Memory and CPU Configuration"
int "the main stack size(B)"
default 65536

config PAGE_SZIE
config PAGE_SIZE
int "the page size(B)"
default 4096
endmenu
Expand Down
2 changes: 1 addition & 1 deletion core/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

#[cfg(__runikraft_custom_config)]
include!{env!("RUNIKRAFT_CONFIG_FILE")}
#[cfg(not(feature="custom_config"))]
#[cfg(not(__runikraft_custom_config))]
include!{"../../default_config.rs"}

0 comments on commit 5b72220

Please sign in to comment.