Update os/Makefile && Update rust to 2021-01-30
This commit is contained in:
parent
05fd1c8f85
commit
ca9bc70781
2 changed files with 9 additions and 9 deletions
16
os/Makefile
16
os/Makefile
|
@ -7,13 +7,13 @@ KERNEL_ENTRY_PA := 0x80020000
|
||||||
DISASM_TMP := target/$(TARGET)/$(MODE)/asm
|
DISASM_TMP := target/$(TARGET)/$(MODE)/asm
|
||||||
|
|
||||||
# BOARD
|
# BOARD
|
||||||
BOARD ?= qemu
|
BOARD ?= qemu
|
||||||
SBI ?= rustsbi
|
SBI ?= rustsbi
|
||||||
BOOTLOADER := ../bootloader/$(SBI)-$(BOARD).bin
|
BOOTLOADER := ../bootloader/$(SBI)-$(BOARD).bin
|
||||||
|
|
||||||
# Run K210
|
# Run K210
|
||||||
K210-SERIALPORT = /dev/ttyUSB0
|
K210-SERIALPORT = /dev/ttyUSB0
|
||||||
K210-BURNER = ../tools/kflash.py
|
K210-BURNER = ../tools/kflash.py
|
||||||
|
|
||||||
# Binutils
|
# Binutils
|
||||||
OBJDUMP := rust-objdump --arch-name=riscv64
|
OBJDUMP := rust-objdump --arch-name=riscv64
|
||||||
|
@ -25,10 +25,10 @@ DISASM ?= -x
|
||||||
build: env $(KERNEL_BIN)
|
build: env $(KERNEL_BIN)
|
||||||
|
|
||||||
env:
|
env:
|
||||||
(rustup component list | grep "rust-src") || rustup component add rust-src
|
(rustup target list | grep "riscv64gc-unknown-none-elf (installed)") || rustup target add $(TARGET)
|
||||||
(rustup component list | grep "llvm-tools-preview") || rustup component add llvm-tools-preview
|
cargo install cargo-binutils
|
||||||
(which rust-objdump) || cargo install cargo-binutils
|
rustup component add rust-src
|
||||||
(rustup target list | grep "riscv64gc-unknown-none-elf") || rustup target add riscv64gc-unknown-none-elf
|
rustup component add llvm-tools-preview
|
||||||
|
|
||||||
$(KERNEL_BIN): kernel
|
$(KERNEL_BIN): kernel
|
||||||
@$(OBJCOPY) $(KERNEL_ELF) --strip-all -O binary $@
|
@$(OBJCOPY) $(KERNEL_ELF) --strip-all -O binary $@
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
nightly
|
nightly-2021-01-30
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue