6 lines
104 B
Bash
Executable File
6 lines
104 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# 更新内核, 可选操作
|
|
cd ../kernel_5.4 && bash install.sh && cd -
|