mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
28 lines
420 B
TOML
28 lines
420 B
TOML
# Minimal configuration
|
|
|
|
include = ["base.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 196
|
|
|
|
# Package settings
|
|
[packages]
|
|
ca-certificates = {}
|
|
coreutils = {}
|
|
extrautils = {}
|
|
ion = {}
|
|
pkgutils = {}
|
|
kibi = {}
|
|
uutils-procps = {}
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = """
|
|
requires_weak 10_net.target
|
|
inputd -A 2
|
|
nowait getty 2
|
|
nowait getty /scheme/debug/no-preserve -J
|
|
"""
|