mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
23 lines
431 B
TOML
23 lines
431 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.target
|
|
RUST_BACKTRACE=full os-test-runner
|
|
shutdown
|
|
"""
|