mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 05:44: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.
25 lines
363 B
TOML
25 lines
363 B
TOML
# Minimal configuration
|
|
|
|
include = ["base.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 196
|
|
|
|
# Package settings
|
|
[packages]
|
|
coreutils = {}
|
|
extrautils = {}
|
|
ion = {}
|
|
kibi = {}
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = """
|
|
requires_weak 00_drivers
|
|
inputd -A 2
|
|
nowait getty 2
|
|
nowait getty /scheme/debug/no-preserve -J
|
|
"""
|