This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
88 additions
and
78 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
menu "rkboot features" | ||
config have_scheduler | ||
bool "Have scheduler" | ||
help | ||
Depend on rksched | ||
|
||
config sched_coop | ||
bool "Cooperative scheduler" | ||
default y | ||
select have_scheduler | ||
help | ||
Depend on rksched and rkschedcoop | ||
|
||
config MAX_ARGS_CNT | ||
int "maximum kernel argmuents count" | ||
default 64 | ||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
menu "rkplat features" | ||
config has_smp | ||
bool "Symmetric multiprocessor support" | ||
default y | ||
|
||
config save_fp | ||
bool "Save floating point registers when thread switches" | ||
default n | ||
config driver_uart | ||
bool "Uart device driver" | ||
default n | ||
config driver_ns16550 | ||
bool "ns16550 driver" | ||
default y | ||
select driver_uart | ||
config driver_virtio | ||
bool "Virtio driver" | ||
default n | ||
help | ||
Depend on volatile-v0.3 and bitflags-v1.3 | ||
config driver_virtio_blk | ||
bool "Virtio block driver" | ||
default y | ||
select driver_virtio | ||
config driver_virtio_console | ||
bool "Virtio console driver" | ||
default y | ||
select driver_virtio | ||
config driver_virtio_gpu | ||
bool "Virtio GPU driver" | ||
default y | ||
select driver_virtio | ||
config driver_virtio_input | ||
bool "Virtio input driver" | ||
default y | ||
select driver_virtio | ||
config driver_virtio_net | ||
bool "Virtio net driver" | ||
default y | ||
select driver_virtio | ||
config driver_rtc | ||
bool "Real time clock driver" | ||
default n | ||
config driver_goldfish_rtc | ||
bool "Goldfish real time clock driver" | ||
default y | ||
select driver_rtc | ||
config bios_io | ||
bool "Use BIOS to output" | ||
default n | ||
endmenu |