redox/initfs.toml
Wren Turkal 49d16c7b14 Add pciids option to fs and initfs configs.
Pciids is the packge that contains information about pci devices.

Signed-off-by: Wren Turkal <wt@penguintechs.org>
2020-07-19 16:53:36 -07:00

37 lines
527 B
TOML

# This is the default configuration file
# General settings
[general]
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
drivers = {}
init = {}
#pciids = {}
nulld = {}
ramfs = {}
randd = {}
redoxfs = {}
zerod = {}
[[files]]
path="/etc/init.rc"
data="""
export PATH /bin
export TMPDIR /tmp
nulld
zerod
randd
vesad T T G
stdio display:1
ps2d us
ramfs logging
pcid /etc/pcid/initfs.toml
redoxfs --uuid $REDOXFS_UUID file $REDOXFS_BLOCK
cd file:
export PATH file:/bin
run.d /etc/init.d
"""