2024-07-09 14:58:07 +02:00
|
|
|
# Configuration to run the "resist" tests
|
2024-01-04 20:25:27 +01:00
|
|
|
|
|
|
|
include = ["net.toml"]
|
|
|
|
|
|
|
|
# General settings
|
|
|
|
[general]
|
|
|
|
# Filesystem size in MiB
|
|
|
|
filesystem_size = 256
|
|
|
|
|
|
|
|
# Package settings
|
|
|
|
[packages]
|
|
|
|
bash = {}
|
|
|
|
coreutils = {}
|
|
|
|
diffutils = {}
|
|
|
|
extrautils = {}
|
|
|
|
findutils = {}
|
|
|
|
gcc13 = {}
|
|
|
|
gnu-binutils = {}
|
|
|
|
gnu-make = {}
|
|
|
|
netdb = {}
|
|
|
|
resist = {}
|
|
|
|
userutils = {}
|
|
|
|
|
|
|
|
# Override to not background dhcpd
|
|
|
|
[[files]]
|
2024-01-17 14:31:32 +01:00
|
|
|
path = "/usr/lib/init.d/10_net"
|
2024-01-04 20:25:27 +01:00
|
|
|
data = """
|
|
|
|
smolnetd
|
|
|
|
dnsd
|
|
|
|
dhcpd
|
|
|
|
"""
|
|
|
|
|
|
|
|
[[files]]
|
2024-01-17 14:31:32 +01:00
|
|
|
path = "/usr/lib/init.d/20_resist"
|
2024-01-04 20:25:27 +01:00
|
|
|
data = """
|
|
|
|
export RUST_BACKTRACE full
|
|
|
|
resist /share/resist/redox/spec.toml
|
|
|
|
resist /share/resist/posix/base.toml
|
|
|
|
resist /share/resist/posix/shell.toml
|
|
|
|
shutdown
|
|
|
|
"""
|