Merge branch 'rename-config' into 'master'
Rename the "server-minimal" config and create the "minimal-net" config See merge request redox-os/redox!1447
This commit is contained in:
commit
ab5415367c
|
@ -1,6 +1,6 @@
|
||||||
# Minimal configuration
|
# Minimal configuration
|
||||||
|
|
||||||
include = ["../server-minimal.toml"]
|
include = ["../minimal-net.toml"]
|
||||||
|
|
||||||
# Override the default settings here
|
# Override the default settings here
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Minimal configuration
|
# Minimal configuration
|
||||||
|
|
||||||
include = ["../server-minimal.toml"]
|
include = ["../minimal.toml"]
|
||||||
|
|
||||||
# Override the default settings here
|
# Override the default settings here
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Minimal configuration
|
# Minimal configuration
|
||||||
|
|
||||||
include = ["../../server-minimal.toml"]
|
include = ["../../minimal.toml"]
|
||||||
|
|
||||||
# General settings
|
# General settings
|
||||||
[general]
|
[general]
|
|
@ -1,6 +1,6 @@
|
||||||
# Minimal configuration
|
# Minimal configuration
|
||||||
|
|
||||||
include = ["../server-minimal.toml"]
|
include = ["../minimal-net.toml"]
|
||||||
|
|
||||||
# Override the default settings here
|
# Override the default settings here
|
||||||
|
|
14
config/i686/minimal.toml
Normal file
14
config/i686/minimal.toml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Minimal configuration
|
||||||
|
|
||||||
|
include = ["../minimal.toml"]
|
||||||
|
|
||||||
|
# Override the default settings here
|
||||||
|
|
||||||
|
# General settings
|
||||||
|
[general]
|
||||||
|
# Filesystem size in MiB
|
||||||
|
# filesystem_size = 1024
|
||||||
|
|
||||||
|
# Package settings
|
||||||
|
[packages]
|
||||||
|
# example = {}
|
32
config/minimal-net.toml
Normal file
32
config/minimal-net.toml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Minimal network configuration
|
||||||
|
|
||||||
|
include = ["net.toml"]
|
||||||
|
|
||||||
|
# General settings
|
||||||
|
[general]
|
||||||
|
# Filesystem size in MiB
|
||||||
|
filesystem_size = 256
|
||||||
|
|
||||||
|
# Package settings
|
||||||
|
[packages]
|
||||||
|
ca-certificates = {}
|
||||||
|
coreutils = {}
|
||||||
|
extrautils = {}
|
||||||
|
findutils = {}
|
||||||
|
ion = {}
|
||||||
|
netdb = {}
|
||||||
|
pkgutils = {}
|
||||||
|
smith = {}
|
||||||
|
userutils = {}
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
path = "/usr/lib/init.d/30_console"
|
||||||
|
data = """
|
||||||
|
inputd -A 2
|
||||||
|
getty 2
|
||||||
|
getty debug: -J
|
||||||
|
"""
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
path = "/etc/pkg.d/50_redox"
|
||||||
|
data = "https://static.redox-os.org/pkg"
|
14
config/x86_64/minimal-net.toml
Normal file
14
config/x86_64/minimal-net.toml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Minimal configuration
|
||||||
|
|
||||||
|
include = ["../minimal-net.toml"]
|
||||||
|
|
||||||
|
# Override the default settings here
|
||||||
|
|
||||||
|
# General settings
|
||||||
|
[general]
|
||||||
|
# Filesystem size in MiB
|
||||||
|
# filesystem_size = 1024
|
||||||
|
|
||||||
|
# Package settings
|
||||||
|
[packages]
|
||||||
|
# example = {}
|
14
config/x86_64/minimal.toml
Normal file
14
config/x86_64/minimal.toml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Minimal configuration
|
||||||
|
|
||||||
|
include = ["../minimal.toml"]
|
||||||
|
|
||||||
|
# Override the default settings here
|
||||||
|
|
||||||
|
# General settings
|
||||||
|
[general]
|
||||||
|
# Filesystem size in MiB
|
||||||
|
# filesystem_size = 1024
|
||||||
|
|
||||||
|
# Package settings
|
||||||
|
[packages]
|
||||||
|
# example = {}
|
Loading…
Reference in a new issue