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
|
|
|
|
sysroot = "build/initfs"
|
|
|
|
|
|
|
|
# Package settings
|
|
|
|
[packages]
|
|
|
|
drivers = {}
|
|
|
|
init = {}
|
|
|
|
redoxfs = {}
|
|
|
|
|
|
|
|
[[files]]
|
|
|
|
path="/etc/init.rc"
|
|
|
|
data="""
|
|
|
|
export PATH initfs:/bin
|
|
|
|
vesad T T G
|
|
|
|
stdio display:1
|
|
|
|
ps2d
|
|
|
|
pcid /etc/pcid.toml
|
|
|
|
redoxfs disk:0 file
|
|
|
|
cd file:
|
|
|
|
export PATH file:/bin
|
|
|
|
run.d /etc/init.d
|
|
|
|
"""
|
|
|
|
|
|
|
|
[[files]]
|
|
|
|
path="/etc/pcid.toml"
|
|
|
|
data="""
|
2016-09-26 00:59:25 +02:00
|
|
|
[[drivers]]
|
|
|
|
name = "AHCI storage"
|
|
|
|
class = 1
|
|
|
|
subclass = 6
|
2016-12-14 16:34:45 +01:00
|
|
|
command = ["ahcid", "$NAME", "$BAR5", "$IRQ"]
|
|
|
|
|
2017-02-18 22:05:24 +01:00
|
|
|
[[drivers]]
|
|
|
|
name = "NVME storage"
|
|
|
|
class = 1
|
|
|
|
subclass = 8
|
|
|
|
command = ["nvmed", "$NAME", "$BAR0", "$IRQ"]
|
|
|
|
|
2016-12-14 16:34:45 +01:00
|
|
|
[[drivers]]
|
2017-03-21 04:40:19 +01:00
|
|
|
name = "QEMU Graphics Array"
|
2016-12-14 16:34:45 +01:00
|
|
|
class = 3
|
|
|
|
vendor = 4660
|
|
|
|
device = 4369
|
|
|
|
command = ["bgad", "$NAME", "$BAR0"]
|
|
|
|
|
|
|
|
[[drivers]]
|
2017-03-21 04:40:19 +01:00
|
|
|
name = "VirtualBox Graphics Array"
|
2016-12-14 16:34:45 +01:00
|
|
|
class = 3
|
|
|
|
vendor = 33006
|
|
|
|
device = 48879
|
|
|
|
command = ["bgad", "$NAME", "$BAR0"]
|
2017-03-21 04:40:19 +01:00
|
|
|
|
|
|
|
[[drivers]]
|
|
|
|
name = "VirtualBox Guest Device"
|
|
|
|
class = 8
|
|
|
|
vendor = 33006
|
|
|
|
device = 51966
|
|
|
|
command = ["vboxd", "$NAME", "$BAR0", "$BAR1", "$IRQ"]
|
2017-05-11 05:39:05 +02:00
|
|
|
"""
|