Update for new network config
This commit is contained in:
parent
8bdb365b61
commit
d6b51ca3c2
|
@ -15,6 +15,7 @@ contain = {}
|
||||||
coreutils = {}
|
coreutils = {}
|
||||||
#curl = {}
|
#curl = {}
|
||||||
#dash = {}
|
#dash = {}
|
||||||
|
drivers = {}
|
||||||
extrautils = {}
|
extrautils = {}
|
||||||
findutils = {}
|
findutils = {}
|
||||||
#games = {}
|
#games = {}
|
||||||
|
@ -63,6 +64,7 @@ password = ""
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/init.d/00_base"
|
path = "/etc/init.d/00_base"
|
||||||
data = """
|
data = """
|
||||||
|
pcid /etc/pcid/filesystem.toml
|
||||||
randd
|
randd
|
||||||
ptyd
|
ptyd
|
||||||
"""
|
"""
|
||||||
|
@ -93,23 +95,33 @@ getty debug: -J
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/net/dns"
|
path = "/etc/net/dns"
|
||||||
data = "208.67.222.222"
|
data = """
|
||||||
|
208.67.222.222
|
||||||
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/net/ip"
|
path = "/etc/net/ip"
|
||||||
data = "10.0.2.15"
|
data = """
|
||||||
|
10.0.2.15
|
||||||
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/net/ip_router"
|
path = "/etc/net/ip_router"
|
||||||
data = "10.0.2.2"
|
data = """
|
||||||
|
10.0.2.2
|
||||||
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/net/ip_subnet"
|
path = "/etc/net/ip_subnet"
|
||||||
data = "255.255.255.0"
|
data = """
|
||||||
|
255.255.255.0
|
||||||
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/net/mac"
|
path = "/etc/net/mac"
|
||||||
data = "54-52-00-ab-cd-ef"
|
data = """
|
||||||
|
54-52-00-ab-cd-ef
|
||||||
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/pkg.d/50_redox"
|
path = "/etc/pkg.d/50_redox"
|
||||||
|
@ -117,13 +129,17 @@ data = "https://static.redox-os.org/pkg"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/group"
|
path = "/etc/group"
|
||||||
data = """root;0;root
|
data = """
|
||||||
|
root;0;root
|
||||||
user;1000;user
|
user;1000;user
|
||||||
sudo;1;user"""
|
sudo;1;user
|
||||||
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/hostname"
|
path = "/etc/hostname"
|
||||||
data = "redox"
|
data = """
|
||||||
|
redox
|
||||||
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/etc/issue"
|
path = "/etc/issue"
|
||||||
|
|
|
@ -20,7 +20,7 @@ export TMPDIR /tmp
|
||||||
vesad T T G
|
vesad T T G
|
||||||
stdio display:1
|
stdio display:1
|
||||||
ps2d
|
ps2d
|
||||||
pcid /etc/pcid.toml
|
pcid /etc/pcid/initfs.toml
|
||||||
redoxfs disk:0 file
|
redoxfs disk:0 file
|
||||||
cd file:
|
cd file:
|
||||||
run.d /etc/init.d
|
run.d /etc/init.d
|
||||||
|
|
Loading…
Reference in a new issue