redox/initfs.toml

37 lines
527 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 = {}
#pciids = {}
2019-06-15 17:05:02 +02:00
nulld = {}
2020-04-04 15:31:21 +02:00
ramfs = {}
2019-06-15 17:05:02 +02:00
randd = {}
2017-05-11 05:39:05 +02:00
redoxfs = {}
2019-06-15 17:05:02 +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-06-15 17:05:02 +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
2020-04-04 15:31:21 +02:00
ramfs logging
2017-07-21 03:42:30 +02:00
pcid /etc/pcid/initfs.toml
2019-11-02 00:23:51 +01:00
redoxfs --uuid $REDOXFS_UUID file $REDOXFS_BLOCK
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
"""