mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
24 lines
339 B
TOML
24 lines
339 B
TOML
# Minimal configuration
|
|
|
|
include = ["base.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 128
|
|
|
|
# Package settings
|
|
[packages]
|
|
coreutils = "binary"
|
|
extrautils = "binary"
|
|
ion = "binary"
|
|
smith = "binary"
|
|
userutils = "binary"
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = """
|
|
getty 2
|
|
getty debug: -J
|
|
"""
|