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:
Anas Nashif 2021-01-22 07:37:29 -05:00
parent cd0beca292
commit 5d3a21ae61
8 changed files with 0 additions and 55 deletions

View file

@ -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)

View file

@ -58,6 +58,4 @@ source "subsys/timing/Kconfig"
source "subsys/tracing/Kconfig"
source "subsys/demand_paging/Kconfig"
endmenu

View file

@ -1,5 +0,0 @@
# Copyright (c) 2020 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
add_subdirectory(eviction)
add_subdirectory(backing_store)

View file

@ -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

View file

@ -1,2 +0,0 @@
# Copyright (c) 2020 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

View file

@ -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

View file

@ -1,2 +0,0 @@
# Copyright (c) 2020 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

View file

@ -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