redox/initfs.toml

34 lines
474 B
TOML
Raw Normal View History

2017-05-11 05:39:05 +02:00
# This is the default configuration file
# General settings
[general]
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
drivers = {}
init = {}
2019-04-25 22:03:53 +02:00
nulld = {}
randd = {}
2017-05-11 05:39:05 +02:00
redoxfs = {}
2019-04-25 22:03:53 +02:00
zerod = {}
2017-05-11 05:39:05 +02:00
[[files]]
path="/etc/init.rc"
data="""
2017-06-17 22:50:36 +02:00
export PATH /bin
export TMPDIR /tmp
2019-04-25 22:03:53 +02:00
nulld
zerod
randd
2017-05-11 05:39:05 +02:00
vesad T T G
stdio display:1
2017-10-10 05:32:21 +02:00
ps2d us
2017-07-21 03:42:30 +02:00
pcid /etc/pcid/initfs.toml
redoxfs --uuid $REDOXFS_UUID file
2017-05-11 05:39:05 +02:00
cd file:
2017-08-19 01:36:15 +02:00
export PATH file:/bin
2017-05-11 05:39:05 +02:00
run.d /etc/init.d
"""