Add recipes and new config on x86_64, i686 and ARM64

This commit is contained in:
Ribbon 2023-08-09 21:36:17 +00:00
parent c23b6f3538
commit 73e0f46b5c
21 changed files with 1725 additions and 8 deletions

View file

@ -70,6 +70,7 @@ uutils = {}
periodictable = {}
# Shell Apps
bash = {}
binutils = {}
curl = {}
@ -77,6 +78,7 @@ git = {}
gnu-grep = {}
ripgrep = {}
sodium = {}
vim = {}
# Games
dosbox = {}

View file

@ -0,0 +1,132 @@
# Default desktop configuration
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 128
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
bootstrap = {}
coreutils = {}
escalated = {}
extrautils = {}
initfs = {}
ion = {}
ipcd = {}
kernel = {}
orbdata = {}
orbital = {}
orbterm = {}
orbutils-background = {}
orbutils-launcher = {}
orbutils-orblogin = {}
ptyd = {}
smith = {}
userutils = {}
uutils = {}
# User settings
[users.root]
password = "password"
uid = 0
gid = 0
name = "root"
home = "/root"
[users.user]
# Password is unset
password = ""
[[files]]
path = "/etc/init.d/00_base"
data = """
ipcd
ptyd
escalated
"""
[[files]]
path = "/etc/init.d/20_orbital"
data = """
orbital orblogin launcher
"""
[[files]]
path = "/etc/init.d/30_console"
data = """
getty 2
getty debug: -J
"""
[[files]]
path = "/etc/redox-release"
data = "0.8.0"
[[files]]
path = "/etc/group"
data = """
root;0;root
user;1000;user
sudo;1;user
"""
[[files]]
path = "/etc/hostname"
data = """
redox
"""
[[files]]
path = "/usr/bin"
data = "../bin"
symlink = true
[[files]]
path = "/usr/games"
data = "../games"
symlink = true
[[files]]
path = "/usr/include"
data = "../include"
symlink = true
[[files]]
path = "/usr/lib"
data = "../lib"
symlink = true
[[files]]
path = "/usr/share"
data = "../share"
symlink = true
[[files]]
path = "/tmp"
data = ""
directory= true
# 0o1777
mode = 1023
[[files]]
path = "/dev/null"
data = "null:"
symlink = true
[[files]]
path = "/dev/random"
data = "rand:"
symlink = true
[[files]]
path = "/dev/urandom"
data = "rand:"
symlink = true
[[files]]
path = "/dev/zero"
data = "zero:"
symlink = true

View file

@ -3,7 +3,7 @@
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 256
filesystem_size = 300
# Do not prompt if settings are not defined
prompt = false
@ -44,6 +44,11 @@ smith = {}
userutils = {}
uutils = {}
bash = {}
git = {}
curl = {}
vim = {}
# User settings
[users.root]
password = "password"

View file

@ -45,6 +45,8 @@ userutils = {}
uutils = {}
# CLI programs
bash = {}
curl = {}
git = {}
terminfo = {}

View file

@ -0,0 +1,121 @@
# Minimal configuration
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 64
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
bootstrap = {}
coreutils = {}
escalated = {}
extrautils = {}
initfs = {}
ion = {}
ipcd = {}
kernel = {}
ptyd = {}
smith = {}
userutils = {}
uutils = {}
# User settings
[users.root]
password = "password"
uid = 0
gid = 0
name = "root"
home = "/root"
[users.user]
# Password is unset
password = ""
[[files]]
path = "/etc/init.d/00_base"
data = """
ipcd
ptyd
escalated
"""
[[files]]
path = "/etc/init.d/30_console"
data = """
inputd -A 2
getty 2
getty debug: -J
"""
[[files]]
path = "/etc/redox-release"
data = "0.8.0"
[[files]]
path = "/etc/group"
data = """
root;0;root
user;1000;user
sudo;1;user
"""
[[files]]
path = "/etc/hostname"
data = """
redox
"""
[[files]]
path = "/usr/bin"
data = "../bin"
symlink = true
[[files]]
path = "/usr/games"
data = "../games"
symlink = true
[[files]]
path = "/usr/include"
data = "../include"
symlink = true
[[files]]
path = "/usr/lib"
data = "../lib"
symlink = true
[[files]]
path = "/usr/share"
data = "../share"
symlink = true
[[files]]
path = "/tmp"
data = ""
directory= true
# 0o1777
mode = 1023
[[files]]
path = "/dev/null"
data = "null:"
symlink = true
[[files]]
path = "/dev/random"
data = "rand:"
symlink = true
[[files]]
path = "/dev/urandom"
data = "rand:"
symlink = true
[[files]]
path = "/dev/zero"
data = "zero:"
symlink = true

View file

@ -3,7 +3,7 @@
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 256
filesystem_size = 300
# Do not prompt if settings are not defined
prompt = false
@ -36,6 +36,11 @@ smith = {}
userutils = {}
uutils = {}
bash = {}
git = {}
curl = {}
vim = {}
# User settings
[users.root]
password = "password"