Revert "demand_paging: add infra for demand paging modules"
This reverts commit 1c2bd343ff
.
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
cd0beca292
commit
5d3a21ae61
|
@ -26,4 +26,3 @@ add_subdirectory(tracing)
|
|||
add_subdirectory_ifdef(CONFIG_JWT jwt)
|
||||
add_subdirectory(canbus)
|
||||
add_subdirectory_ifdef(CONFIG_TIMING_FUNCTIONS timing)
|
||||
add_subdirectory_ifdef(CONFIG_DEMAND_PAGING demand_paging)
|
||||
|
|
|
@ -58,6 +58,4 @@ source "subsys/timing/Kconfig"
|
|||
|
||||
source "subsys/tracing/Kconfig"
|
||||
|
||||
source "subsys/demand_paging/Kconfig"
|
||||
|
||||
endmenu
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
# Copyright (c) 2020 Intel Corporation
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
add_subdirectory(eviction)
|
||||
add_subdirectory(backing_store)
|
|
@ -1,11 +0,0 @@
|
|||
# Copyright (c) 2020 Intel Corporation
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
menu "Demand Paging modules"
|
||||
depends on DEMAND_PAGING
|
||||
|
||||
source "subsys/demand_paging/eviction/Kconfig"
|
||||
|
||||
source "subsys/demand_paging/backing_store/Kconfig"
|
||||
|
||||
endmenu
|
|
@ -1,2 +0,0 @@
|
|||
# Copyright (c) 2020 Intel Corporation
|
||||
# SPDX-License-Identifier: Apache-2.0
|
|
@ -1,15 +0,0 @@
|
|||
# Copyright (c) 2020 Intel Corporation
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
choice BACKING_STORE_CHOICE
|
||||
prompt "Backing store algorithms"
|
||||
default BACKING_STORE_CUSTOM
|
||||
|
||||
config BACKING_STORE_CUSTOM
|
||||
bool "Custom backing store implementation"
|
||||
help
|
||||
This option is chosen when the backing store will be implemented in
|
||||
the application. This will be typical as these tend to be very
|
||||
hardware-dependent.
|
||||
|
||||
endchoice
|
|
@ -1,2 +0,0 @@
|
|||
# Copyright (c) 2020 Intel Corporation
|
||||
# SPDX-License-Identifier: Apache-2.0
|
|
@ -1,17 +0,0 @@
|
|||
# Copyright (c) 2020 Intel Corporation
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# Demand paging sample eviction algorithms
|
||||
|
||||
choice EVICTION_CHOICE
|
||||
prompt "Page frame eviction algorithms"
|
||||
default EVICTION_CUSTOM
|
||||
depends on DEMAND_PAGING
|
||||
|
||||
config EVICTION_CUSTOM
|
||||
bool "Custom eviction algorithm"
|
||||
help
|
||||
This option is chosen when the eviction algorithm will be implemented
|
||||
by the application, instead of using one included in Zephyr.
|
||||
|
||||
endchoice
|
Loading…
Reference in a new issue