redox/config/x86_64/dev.toml

167 lines
2 KiB
TOML
Raw Normal View History

2022-10-17 20:01:03 +02:00
# Configuration for development, includes cargo and rustc
include = ["../base.toml"]
# General settings
[general]
# Filesystem size in MiB
2022-12-01 02:14:52 +01:00
filesystem_size = 2048
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
2022-10-17 20:01:03 +02:00
audiod = {}
2023-09-10 02:59:33 +02:00
bash = {}
2022-08-17 15:44:03 +02:00
bootloader = {}
bootstrap = {}
ca-certificates = {}
contain = {}
coreutils = {}
diffutils = {}
drivers = {}
escalated = {}
extrautils = {}
findutils = {}
2022-10-17 20:01:03 +02:00
initfs = {}
installer = {}
installer-gui = {}
ion = {}
ipcd = {}
2022-07-24 17:02:48 +02:00
kernel = {}
netdb = {}
netstack = {}
2022-10-17 20:01:03 +02:00
netsurf = {}
netutils = {}
2022-10-17 20:01:03 +02:00
orbdata = {}
orbital = {}
orbterm = {}
orbutils = {}
pkgutils = {}
ptyd = {}
redoxfs = {}
relibc = {}
2022-10-17 20:01:03 +02:00
resist = {}
smith = {}
userutils = {}
uutils = {}
2022-12-01 02:14:52 +01:00
# CLI programs
2022-12-01 02:14:52 +01:00
curl = {}
git = {}
terminfo = {}
2022-11-15 23:12:02 +01:00
vim = {}
2022-12-01 02:14:52 +01:00
# Development tools
cargo = {}
crates-io-index = {}
gcc13 = {}
2022-12-01 02:14:52 +01:00
gnu-binutils = {}
gnu-make = {}
rust = {}
# User settings
[users.root]
password = "password"
uid = 0
gid = 0
name = "root"
home = "/root"
[users.user]
# Password is unset
password = ""
[[files]]
path = "/home/user/example.rs"
data = """
fn main() {
println!("Hello, Redox!");
}
"""
[[files]]
path = "/etc/init.d/00_base"
data = """
ipcd
ptyd
pcid /etc/pcid.d/
escalated
"""
[[files]]
path = "/etc/init.d/10_net"
data = """
smolnetd
dnsd
dhcpd -b
"""
2022-10-17 20:01:03 +02:00
[[files]]
path = "/etc/init.d/20_orbital"
data = """
audiod
orbital orblogin launcher
2022-10-17 20:01:03 +02:00
"""
[[files]]
path = "/etc/init.d/30_console"
data = """
getty 2
getty debug: -J
"""
[[files]]
path = "/etc/net/dns"
data = """
208.67.222.222
"""
[[files]]
path = "/etc/net/ip"
data = """
10.0.2.15
"""
[[files]]
path = "/etc/net/ip_router"
data = """
10.0.2.2
"""
[[files]]
path = "/etc/net/ip_subnet"
data = """
255.255.255.0
"""
[[files]]
path = "/etc/net/mac"
data = """
54-52-00-ab-cd-ef
"""
[[files]]
path = "/etc/pkg.d/50_redox"
data = "https://static.redox-os.org/pkg"
2022-04-26 16:48:09 +02:00
[[files]]
path = "/etc/redox-release"
2022-11-23 17:25:06 +01:00
data = "0.8.0"
2022-04-26 16:48:09 +02:00
[[files]]
path = "/etc/group"
data = """
root;0;root
user;1000;user
sudo;1;user
"""
[[files]]
path = "/etc/hostname"
data = """
redox
"""