mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 10:08:45 +08:00
Fix the server config scope and improve dev config
This commit is contained in:
parent
4e1db89e42
commit
5f32a00aff
@ -14,7 +14,7 @@ prompt = false
|
||||
dev-redox = {}
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/test.rs"
|
||||
path = "/home/user/hello-redox/test.rs"
|
||||
data = """
|
||||
fn main() {
|
||||
println!("Hello, Redox!");
|
||||
@ -22,7 +22,7 @@ fn main() {
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/test.c"
|
||||
path = "/home/user/hello-redox/test.c"
|
||||
data = """
|
||||
#include <stdio.h>
|
||||
|
||||
@ -32,7 +32,7 @@ int main(void) {
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/test.cpp"
|
||||
path = "/home/user/hello-redox/test.cpp"
|
||||
data = """
|
||||
#include <iostream>
|
||||
|
||||
@ -43,13 +43,29 @@ int main()
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/test.py"
|
||||
path = "/home/user/hello-redox/test.py"
|
||||
data = """
|
||||
print("Hello, Redox!")
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/test.lua"
|
||||
path = "/home/user/hello-redox/test.lua"
|
||||
data = """
|
||||
print("Hello, Redox!")
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.js"
|
||||
data = """
|
||||
console.log("Hello Redox");
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.java"
|
||||
data = """
|
||||
public class Java {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello Redox");
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
@ -5,6 +5,7 @@ include = ["base.toml"]
|
||||
|
||||
# Package settings
|
||||
[packages]
|
||||
netdb = {}
|
||||
netutils = {}
|
||||
|
||||
## Network init
|
||||
|
||||
@ -21,10 +21,8 @@ git = {}
|
||||
installer = {}
|
||||
ion = {}
|
||||
kibi = {}
|
||||
netdb = {}
|
||||
pkgutils = {}
|
||||
redoxfs = {}
|
||||
resist = {}
|
||||
|
||||
[[files]]
|
||||
path = "/usr/lib/init.d/30_console"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user