From 603d97d7b018f77bc56720c3bbd3d53387d12eda Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 26 Aug 2022 11:27:57 -0600 Subject: [PATCH] Add aarch64 desktop config --- config/aarch64/desktop.toml | 194 ++++++++++++++++++++++++++++++++++++ 1 file changed, 194 insertions(+) create mode 100644 config/aarch64/desktop.toml diff --git a/config/aarch64/desktop.toml b/config/aarch64/desktop.toml new file mode 100644 index 0000000..cbc459f --- /dev/null +++ b/config/aarch64/desktop.toml @@ -0,0 +1,194 @@ +# Default desktop configuration + +# General settings +[general] +# Do not prompt if settings are not defined +prompt = false + +# Package settings +[packages] +audiod = {} +bootloader = {} +bootstrap = {} +ca-certificates = {} +contain = {} +coreutils = {} +dash = {} +diffutils = {} +#drivers = {} # more porting work +#escalated = {} # porting +extrautils = {} +findutils = {} +#gdbserver = {} # very x86_64 specific +gnu-make = {} +initfs = {} +#installer = {} # failure to build ring +ion = {} +ipcd = {} +kernel = {} +netdb = {} +netstack = {} +#netsurf = {} # lots of porting issues +netutils = {} +orbdata = {} +orbital = {} +orbterm = {} +orbutils = {} +#pkgutils = {} # failure to build ring +ptyd = {} +redoxfs = {} +relibc = {} +resist = {} +smith = {} +#strace = {} # very x86_64 specific +terminfo = {} +userutils = {} +uutils = {} +#vim = {} # ncurses problem + +# 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 +pcid /etc/pcid.d/ +escalated +""" + +[[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/redox-release" +data = "0.7.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