From 49bffa53743ba2397a31df59563399230b3065b5 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 27 Apr 2024 08:46:45 -0600 Subject: [PATCH] Fill out aarch64 configs --- config/aarch64/demo.toml | 30 ++++++++++++++++++++++++++++++ config/aarch64/desktop.toml | 26 +++++++++++++++++++++----- config/aarch64/server.toml | 14 ++++++++++++++ 3 files changed, 65 insertions(+), 5 deletions(-) create mode 100644 config/aarch64/demo.toml create mode 100644 config/aarch64/server.toml diff --git a/config/aarch64/demo.toml b/config/aarch64/demo.toml new file mode 100644 index 0000000..effc1c3 --- /dev/null +++ b/config/aarch64/demo.toml @@ -0,0 +1,30 @@ +# Default desktop configuration + +include = ["../server-minimal.toml"] + +# General settings +[general] +# Filesystem size in MiB +filesystem_size = 256 + +# Package settings +[packages] +audiod = {} +drivers = {} +orbdata = {} +orbital = {} +orbterm = {} +orbutils = {} + +[[files]] +path = "/usr/lib/init.d/00_drivers" +data = """ +pcid /etc/pcid.d/ +""" + +[[files]] +path = "/usr/lib/init.d/20_orbital" +data = """ +audiod +orbital orblogin launcher +""" diff --git a/config/aarch64/desktop.toml b/config/aarch64/desktop.toml index c2db3ec..effc1c3 100644 --- a/config/aarch64/desktop.toml +++ b/config/aarch64/desktop.toml @@ -1,14 +1,30 @@ # Default desktop configuration -include = ["../desktop-minimal.toml"] - -# Override the default settings here +include = ["../server-minimal.toml"] # General settings [general] # Filesystem size in MiB -# filesystem_size = 1024 +filesystem_size = 256 # Package settings [packages] -# example = {} \ No newline at end of file +audiod = {} +drivers = {} +orbdata = {} +orbital = {} +orbterm = {} +orbutils = {} + +[[files]] +path = "/usr/lib/init.d/00_drivers" +data = """ +pcid /etc/pcid.d/ +""" + +[[files]] +path = "/usr/lib/init.d/20_orbital" +data = """ +audiod +orbital orblogin launcher +""" diff --git a/config/aarch64/server.toml b/config/aarch64/server.toml new file mode 100644 index 0000000..ee6eed7 --- /dev/null +++ b/config/aarch64/server.toml @@ -0,0 +1,14 @@ +# Default server configuration + +include = ["../server.toml"] + +# Override the default settings here + +# General settings +[general] +# Filesystem size in MiB +# filesystem_size = 1024 + +# Package settings +[packages] +# example = {} \ No newline at end of file