Skip to content

Commit 9867bb8

Browse files
authored
Merge pull request #24 from Separatee/main
mkdir语法错误
2 parents 69cf848 + 9bf3ce4 commit 9867bb8

8 files changed

Lines changed: 503 additions & 1 deletion

File tree

.github/workflows/kernel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
if echo $toolchain | jq -e 'has("url")' > /dev/null; then
148148
# If from archive
149149
toolchain_url=$(echo $toolchain | jq -r ".url")
150-
mkdir -p $toolchain_name
150+
mkdir -p '$toolchain_name'
151151
152152
# Download archive
153153
wget "$toolchain_url"

.github/workflows/kernel.yml.bak

Lines changed: 427 additions & 0 deletions
Large diffs are not rendered by default.

Kernel/configs/xiaomi9.config.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[
2+
{
3+
"kernelSource": {
4+
"name": "Xiaomi9KernelPoweredBySeparate",
5+
"repo": "https://github.com/Separatee/AllinOneKernel",
6+
"branch": "main",
7+
"device": "cepheus",
8+
"defconfig": "cepheus_defconfig"
9+
},
10+
"toolchains": [
11+
{
12+
"name": "proton-clang",
13+
"repo": "https://github.com/kdrag0n/proton-clang",
14+
"branch": "master",
15+
"binaryEnv": ["./bin"]
16+
}
17+
],
18+
"enableCcache": true,
19+
"params": {
20+
"ARCH": "arm64",
21+
"CC": "clang",
22+
"externalCommands": {
23+
"CROSS_COMPILE": "proton-clang/bin/aarch64-linux-gnu-",
24+
"CROSS_COMPILE_ARM32": "proton-clang/bin/arm-linux-gnueabi-",
25+
"CLANG_TRIPLE": "aarch64-linux-gnu-"
26+
}
27+
},
28+
"AnyKernel3": {
29+
"use": false,
30+
"release": true
31+
},
32+
"enableKernelSU": false,
33+
"enableLXC": false
34+
}
35+
]
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[
2+
{
3+
"kernelSource": {
4+
"name": "Xiaomi9KernelPoweredBySeparate",
5+
"repo": "https://github.com/Separatee/AllinOneKernel",
6+
"branch": "main",
7+
"device": "cepheus",
8+
"defconfig": "cepheus_defconfig"
9+
},
10+
"toolchains": [
11+
{
12+
"name": "proton-clang",
13+
"repo": "https://github.com/kdrag0n/proton-clang",
14+
"branch": "master",
15+
"binaryEnv": ["./bin"]
16+
},
17+
{
18+
"name": "",
19+
"url": "",
20+
"binaryEnv": []
21+
}
22+
],
23+
"enableCcache": true,
24+
"params": {
25+
"ARCH": "arm64",
26+
"CC": "clang",
27+
"externalCommands": {
28+
"CROSS_COMPILE": "proton-clang/bin/aarch64-linux-gnu-",
29+
"CROSS_COMPILE_ARM32": "proton-clang/bin/arm-linux-gnueabi-",
30+
"CLANG_TRIPLE": "aarch64-linux-gnu-"
31+
}
32+
},
33+
"AnyKernel3": {
34+
"use": false,
35+
"release": true
36+
},
37+
"enableKernelSU": false,
38+
"enableLXC": false
39+
}
40+
]

0 commit comments

Comments
 (0)