Files
jsix_import/assets/initrd.toml
Justin C. Miller fafe582802 Initial priority-based scheduler
- Scheduler now has multiple linked_lists of processes at different
  priorities
- Process structure improvements
- scheduler::tick() and scheduler::schedule() separation
2018-09-11 22:37:00 -07:00

24 lines
781 B
TOML

# This is the manifest for the initial ramdisk, read by the `makerd` tool.
# The contents should be a table array of files to add to the ramdistk:
#
# [[files]]
# dest = "foo.bar" # Name of the file in the ramdisk
# source = "build/foo/foo.bar" # Location of the file from the project root
# executable = true # Optional, default false. Whether this is an
# # initial application for the kernel to execute
# # on startup
[[files]]
dest = "screenfont.psf"
source = "assets/fonts/tamsyn8x16r.psf"
[[files]]
dest = "nulldrv1"
source = "build/kernel/src/drivers/nulldrv/nulldrv"
executable = true
[[files]]
dest = "nulldrv2"
source = "build/kernel/src/drivers/nulldrv/nulldrv"
executable = true