mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 11:54:17 +08:00
This aims to reproduce the current execution order of init scripts, not to provide the minimal set of dependencies. That can be implemented later.
23 lines
424 B
TOML
23 lines
424 B
TOML
# Configuration for "os-test" testing
|
|
|
|
include = ["server.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 1024
|
|
# Do not prompt if settings are not defined
|
|
prompt = false
|
|
|
|
# Package settings
|
|
[packages]
|
|
os-test-bins = {} # Provides source and cross-compiled binaries
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = """
|
|
requires_weak 10_net
|
|
RUST_BACKTRACE=full os-test-runner
|
|
shutdown
|
|
"""
|