Merge branch 'config-fixes' into 'master'

Fix the server config scope and improve dev config

See merge request redox-os/redox!1651
This commit is contained in:
Jeremy Soller 2025-10-06 08:36:42 -06:00
commit c342927989
3 changed files with 2 additions and 43 deletions

View File

@ -12,44 +12,4 @@ prompt = false
# Package settings # Package settings
[packages] [packages]
dev-redox = {} dev-redox = {}
hello-redox = {}
[[files]]
path = "/home/user/test.rs"
data = """
fn main() {
println!("Hello, Redox!");
}
"""
[[files]]
path = "/home/user/test.c"
data = """
#include <stdio.h>
int main(void) {
printf("Hello, Redox!\\n");
}
"""
[[files]]
path = "/home/user/test.cpp"
data = """
#include <iostream>
int main()
{
std::cout << "Hello, Redox!" << std::endl;
}
"""
[[files]]
path = "/home/user/test.py"
data = """
print("Hello, Redox!")
"""
[[files]]
path = "/home/user/test.lua"
data = """
print("Hello, Redox!")
"""

View File

@ -5,6 +5,7 @@ include = ["base.toml"]
# Package settings # Package settings
[packages] [packages]
netdb = {}
netutils = {} netutils = {}
## Network init ## Network init

View File

@ -21,10 +21,8 @@ git = {}
installer = {} installer = {}
ion = {} ion = {}
kibi = {} kibi = {}
netdb = {}
pkgutils = {} pkgutils = {}
redoxfs = {} redoxfs = {}
resist = {}
[[files]] [[files]]
path = "/usr/lib/init.d/30_console" path = "/usr/lib/init.d/30_console"