mirror of
https://github.com/rcore-os/rCore-Tutorial-v3.git
synced 2024-11-22 17:36:25 +04:00
93 lines
2.4 KiB
Makefile
93 lines
2.4 KiB
Makefile
# Building
|
|
TARGET := riscv64gc-unknown-none-elf
|
|
MODE := release
|
|
KERNEL_ELF := target/$(TARGET)/$(MODE)/os
|
|
KERNEL_BIN := $(KERNEL_ELF).bin
|
|
DISASM_TMP := target/$(TARGET)/$(MODE)/asm
|
|
FS_IMG := ../user/target/$(TARGET)/$(MODE)/fs.img
|
|
APPS := ../user/src/bin/*
|
|
|
|
# BOARD
|
|
BOARD := qemu
|
|
SBI ?= rustsbi
|
|
BOOTLOADER := ../bootloader/$(SBI)-$(BOARD).bin
|
|
|
|
# Building mode argument
|
|
ifeq ($(MODE), release)
|
|
MODE_ARG := --release
|
|
endif
|
|
|
|
# KERNEL ENTRY
|
|
KERNEL_ENTRY_PA := 0x80200000
|
|
|
|
# Binutils
|
|
OBJDUMP := rust-objdump --arch-name=riscv64
|
|
OBJCOPY := rust-objcopy --binary-architecture=riscv64
|
|
|
|
# Disassembly
|
|
DISASM ?= -x
|
|
|
|
# Run usertests or usershell
|
|
TEST ?=
|
|
|
|
build: env $(KERNEL_BIN) fs-img
|
|
|
|
env:
|
|
(rustup target list | grep "riscv64gc-unknown-none-elf (installed)") || rustup target add $(TARGET)
|
|
cargo install cargo-binutils
|
|
rustup component add rust-src
|
|
rustup component add llvm-tools-preview
|
|
|
|
$(KERNEL_BIN): kernel
|
|
@$(OBJCOPY) $(KERNEL_ELF) --strip-all -O binary $@
|
|
|
|
fs-img: $(APPS)
|
|
@cd ../user && make build TEST=$(TEST)
|
|
@rm -f $(FS_IMG)
|
|
@cd ../easy-fs-fuse && cargo run --release -- -s ../user/src/bin/ -t ../user/target/riscv64gc-unknown-none-elf/release/
|
|
|
|
$(APPS):
|
|
|
|
kernel:
|
|
@echo Platform: $(BOARD)
|
|
@cp src/linker-$(BOARD).ld src/linker.ld
|
|
@cargo build --release
|
|
@rm src/linker.ld
|
|
|
|
clean:
|
|
@cargo clean
|
|
|
|
disasm: kernel
|
|
@$(OBJDUMP) $(DISASM) $(KERNEL_ELF) | less
|
|
|
|
disasm-vim: kernel
|
|
@$(OBJDUMP) $(DISASM) $(KERNEL_ELF) > $(DISASM_TMP)
|
|
@vim $(DISASM_TMP)
|
|
@rm $(DISASM_TMP)
|
|
|
|
run: run-inner
|
|
|
|
run-inner: build
|
|
@qemu-system-riscv64 \
|
|
-machine virt \
|
|
-nographic \
|
|
-bios $(BOOTLOADER) \
|
|
-device loader,file=$(KERNEL_BIN),addr=$(KERNEL_ENTRY_PA) \
|
|
-drive file=$(FS_IMG),if=none,format=raw,id=x0 \
|
|
-device virtio-blk-device,drive=x0,bus=virtio-mmio-bus.0
|
|
|
|
debug: build
|
|
@tmux new-session -d \
|
|
"qemu-system-riscv64 -machine virt -nographic -bios $(BOOTLOADER) -device loader,file=$(KERNEL_BIN),addr=$(KERNEL_ENTRY_PA) -s -S" && \
|
|
tmux split-window -h "riscv64-unknown-elf-gdb -ex 'file $(KERNEL_ELF)' -ex 'set arch riscv:rv64' -ex 'target remote localhost:1234'" && \
|
|
tmux -2 attach-session -d
|
|
|
|
|
|
gdbserver: build
|
|
@qemu-system-riscv64 -machine virt -nographic -bios $(BOOTLOADER) -device loader,file=$(KERNEL_BIN),addr=$(KERNEL_ENTRY_PA) -s -S
|
|
|
|
gdbclient:
|
|
@riscv64-unknown-elf-gdb -ex 'file $(KERNEL_ELF)' -ex 'set arch riscv:rv64' -ex 'target remote localhost:1234'
|
|
|
|
.PHONY: build env kernel clean disasm disasm-vim run-inner fs-img gdbserver gdbclient
|