mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
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:
commit
c342927989
@ -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!")
|
|
||||||
"""
|
|
||||||
|
|||||||
@ -5,6 +5,7 @@ include = ["base.toml"]
|
|||||||
|
|
||||||
# Package settings
|
# Package settings
|
||||||
[packages]
|
[packages]
|
||||||
|
netdb = {}
|
||||||
netutils = {}
|
netutils = {}
|
||||||
|
|
||||||
## Network init
|
## Network init
|
||||||
|
|||||||
@ -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"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user