Compare commits

..

6 Commits

Author SHA1 Message Date
Jeremy Soller 18f71e5b32
Update kernel 2020-08-25 10:40:53 -06:00
Jeremy Soller a67e9c0e30
Add maximal config with all building packages 2020-08-25 10:35:08 -06:00
Jeremy Soller e09cf418a1
Update cookbook 2020-08-25 09:48:14 -06:00
Jeremy Soller ee398847de
Update cookbook 2020-08-25 09:40:25 -06:00
Jeremy Soller 711aeefeb5
Update cookbook 2020-08-25 09:16:25 -06:00
Jeremy Soller 219693fa34
Update relibc 2020-08-25 08:21:43 -06:00
5 changed files with 335 additions and 3 deletions

View File

@ -49,6 +49,7 @@ fribidi = {}
games = {}
#gawk = {} # langinfo.h
gcc = {}
gdbserver = {}
#gdk-pixbuf = {} # shared-mime-info
gears = {}
generaluser-gs = {}
@ -122,6 +123,7 @@ pango = {}
#pastel = {} # needs crate patches for redox-unix
patch = {}
#pathfinder = {} # servo-fontconfig
#pciids = {}
pcre = {}
periodictable = {}
#perl = {} # ctermid, tempnam, ttyname
@ -138,8 +140,10 @@ randd = {}
readline = {}
redoxerd = {}
redoxfs = {}
#redox-fatfs = {}
#redox-ssh = {}
relibc = {}
#relibc-tests = {}
ripgrep = {}
rodioplay = {}
rs-nes = {}

328
config/maximal.toml Normal file
View File

@ -0,0 +1,328 @@
# This is a maximum configuration file
# General settings
[general]
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
acid = {}
atk = {}
audiod = {}
autoconf = {}
automake = {}
#bash = {}
binutils = {}
ca-certificates = {}
cairo = {}
cairodemo = {}
#cargo = {}
cleye = {}
cmatrix = {}
contain = {}
coreutils = {}
cpal = {}
curl = {}
dash = {}
diffutils = {}
dosbox = {}
drivers = {}
#drivers-041 = {}
#duktape = {}
eduke32 = {}
exampled = {}
expat = {}
extrautils = {}
#fd = {}
ffmpeg = {}
findutils = {}
fontconfig = {}
#freeciv = {}
freedoom = {}
#freeglut = {}
freetype = {}
#friar = {} # mio patch
fribidi = {}
#game-2048 = {}
games = {}
#gawk = {}
gcc = {}
gdbserver = {}
#gdk-pixbuf = {}
gears = {}
generaluser-gs = {}
gettext = {}
gigalomania = {}
git = {}
glib = {}
glium = {}
glutin = {}
gnu-binutils = {}
gnu-grep = {}
gnu-make = {}
#gstreamer = {}
harfbuzz = {}
#hematite = {}
#init = {}
installer = {}
ion = {}
ipcd = {}
jansson = {}
keyboard-sfx = {}
lci = {}
libc-bench = {}
libffi = {}
libiconv = {}
libjpeg = {}
libogg = {}
liborbital = {}
libpng = {}
libsodium = {}
libvorbis = {}
libxml2 = {}
llvm = {}
logd = {}
#lua = {}
#mdp = {}
mesa = {}
mesa_glu = {}
#mgba = {}
#miniserve = {}
nasm = {}
#ncdu = {}
ncurses = {}
#ncursesw = {}
netdb = {}
netstack = {}
netsurf = {}
netutils = {}
#neverball = {}
#newlib = {}
#newlibtest = {}
nghttp2 = {}
#nulld = {}
openjazz = {}
openssl = {}
openttd = {}
openttd-opengfx = {}
openttd-openmsx = {}
openttd-opensfx = {}
orbclient = {}
orbdata = {}
orbital = {}
orbterm = {}
orbutils = {}
osdemo = {}
pango = {}
#pastel = {}
patch = {}
#pathfinder = {}
#pciids = {}
pcre = {}
periodictable = {}
#perl = {}
pixelcannon = {}
pixman = {}
pkg-config = {}
pkgutils = {}
#powerline = {}
prboom = {}
ptyd = {}
#python = {}
#qemu = {}
randd = {}
readline = {} # ncurses
redoxfs = {}
#redox-fatfs = {}
#redox-ssh = {}
relibc = {}
#relibc-tests = {}
ripgrep = {}
rodioplay = {}
rs-nes = {}
#rust = {}
rust64 = {}
rust-cairo = {}
rust-cairo-demo = {}
rustual-boy = {}
schismtracker = {}
scummvm = {}
sdl = {}
sdl2 = {}
sdl2_gears = {}
sdl2_image = {}
sdl2_mixer = {}
sdl2_ttf = {}
sdl_gfx = {}
sdl_image = {}
sdl_mixer = {}
sdl-player = {}
#sdl_ttf = {}
sed = {}
#servo = {}
#shared-mime-info = {}
shellstorm = {}
smith = {}
sodium = {}
sopwith = {}
#ssh = {}
strace = {}
#syobonaction = {}
terminfo = {}
#termplay = {}
timidity = {}
ttf-hack = {}
userutils = {}
uutils = {}
vice = {}
#vim = {}
vttest = {}
#webrender = {}
winit = {}
xz = {}
#zerod = {}
zlib = {}
# 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
logd
ptyd
pcid /etc/pcid.d/
"""
[[files]]
path = "/etc/init.d/10_net"
data = """
smolnetd
dnsd
dhcpd -b
"""
[[files]]
path = "/etc/init.d/20_orbital"
data = """
audiod
orbital display:3/activate orblogin launcher
"""
[[files]]
path = "/etc/init.d/30_console"
data = """
getty display: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"
[[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

@ -1 +1 @@
Subproject commit bc5e63fa75594f5fb4aa07d6a9bca0a745f66c1c
Subproject commit bafe721a5969b0121ecf63789f601de76b474990

2
kernel

@ -1 +1 @@
Subproject commit 2057b889ae10bfc9dc0c2bff79e58bcfa4f6c575
Subproject commit 853b77e3a468d7b45f4d635440ef4e16592ecc98

2
relibc

@ -1 +1 @@
Subproject commit 5472e117a5486797e8a4c95b8b3aae319a7d6a1d
Subproject commit 3a0d2177cdeb6dfffda502f51add299e4a7bded2