mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 18:26:48 +00:00
* 实现写日志和读取日志,并且能够在用户态下执行dmesg命令查看日志 * 通过klogctl实现dmesg * 改用ConstGenericRingBuffer作内核缓冲区 * 更改缓冲区容量 * 将能够输出到控制台的日志级别改为日志级别枚举类,使用SpinLock控制KMSG,使用枚举类定义SYSLOG_ACTION,将do_syslog系统调用接口放在syscall.rs * fix warning * 完善do_syslog注释 * 将KMSG接入kinfo、kdebug等 * fix warning * 修复显示的秒数不正确,·以及无法通过CI的问题
96 lines
4.4 KiB
YAML
96 lines
4.4 KiB
YAML
name: Cache toolchain
|
|
|
|
on: workflow_call
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Cache DragonOS GCC
|
|
id: cache-dragonos-gcc
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: cache-dragonos-gcc
|
|
with:
|
|
path: |
|
|
~/opt
|
|
~/.bashrc
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('tools/build_gcc_toolchain.sh') }}
|
|
|
|
- if: ${{ steps.cache-dragonos-gcc.outputs.cache-hit != 'true' }}
|
|
name: build dragonos-gcc
|
|
continue-on-error: true
|
|
run: |
|
|
bash tools/build_gcc_toolchain.sh -f
|
|
|
|
- uses: ./.github/actions/install-apt-packages
|
|
|
|
- name: Cache build tools
|
|
id: cache-build-tools
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: cache-build-tools
|
|
dadk_version: 0.1.6
|
|
with:
|
|
path: |
|
|
~/.cargo
|
|
~/.rustup
|
|
~/.bashrc
|
|
~/opt
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.dadk_version }}-${{ hashFiles('.github/workflows/cache-toolchain.yml') }}-${{ hashFiles('tools/install_musl_gcc.sh') }}
|
|
|
|
- if: ${{ steps.cache-build-tools.outputs.cache-hit != 'true' }}
|
|
name: Install toolchain
|
|
continue-on-error: false
|
|
run: |
|
|
USE_GITHUB=1 bash tools/install_musl_gcc.sh
|
|
|
|
cargo install cargo-binutils
|
|
rustup toolchain install nightly-x86_64-unknown-linux-gnu
|
|
rustup toolchain install nightly-2023-01-21-x86_64-unknown-linux-gnu
|
|
rustup toolchain install nightly-2023-08-15-x86_64-unknown-linux-gnu
|
|
rustup component add rust-src --toolchain nightly-2023-01-21-x86_64-unknown-linux-gnu
|
|
rustup component add rust-src --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
|
|
rustup target add x86_64-unknown-none --toolchain nightly-2023-01-21-x86_64-unknown-linux-gnu
|
|
rustup target add x86_64-unknown-none --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
|
|
|
|
rustup toolchain install nightly-2023-01-21-riscv64gc-unknown-linux-gnu --force-non-host
|
|
rustup toolchain install nightly-2023-08-15-riscv64gc-unknown-linux-gnu --force-non-host
|
|
rustup target add riscv64gc-unknown-none-elf --toolchain nightly-2023-01-21-riscv64gc-unknown-linux-gnu
|
|
rustup target add riscv64imac-unknown-none-elf --toolchain nightly-2023-01-21-riscv64gc-unknown-linux-gnu
|
|
rustup target add riscv64gc-unknown-none-elf --toolchain nightly-2023-08-15-riscv64gc-unknown-linux-gnu
|
|
rustup target add riscv64imac-unknown-none-elf --toolchain nightly-2023-08-15-riscv64gc-unknown-linux-gnu
|
|
|
|
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
|
rustup component add rust-src
|
|
rustup component add llvm-tools-preview
|
|
|
|
rustup component add rustfmt
|
|
rustup component add rustfmt --toolchain nightly-x86_64-unknown-linux-gnu
|
|
rustup component add rustfmt --toolchain nightly-2023-01-21-x86_64-unknown-linux-gnu
|
|
rustup component add rustfmt --toolchain nightly-2023-08-15-x86_64-unknown-linux-gnu
|
|
rustup component add rustfmt --toolchain nightly-2023-01-21-riscv64gc-unknown-linux-gnu
|
|
rustup component add rustfmt --toolchain nightly-2023-08-15-riscv64gc-unknown-linux-gnu
|
|
|
|
rustup default nightly
|
|
|
|
cargo install dadk --version 0.1.6
|
|
|
|
|
|
fork_toolchain_from="nightly-2023-08-15-x86_64-unknown-linux-gnu"
|
|
custom_toolchain="nightly-2023-08-15-x86_64-unknown-linux_dragonos-gnu"
|
|
custom_toolchain_dir="$(dirname $(rustc --print sysroot))/${custom_toolchain}"
|
|
echo "Custom toolchain does not exist, creating..."
|
|
rustup toolchain install ${fork_toolchain_from}
|
|
rustup component add --toolchain ${fork_toolchain_from} rust-src
|
|
rustup target add --toolchain ${fork_toolchain_from} x86_64-unknown-linux-musl
|
|
cp -r $(dirname $(rustc --print sysroot))/${fork_toolchain_from} ${custom_toolchain_dir}
|
|
self_contained_dir=${custom_toolchain_dir}/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained
|
|
cp -f ${self_contained_dir}/crt1.o ${self_contained_dir}/rcrt1.o
|
|
|
|
|