From e80cf7971120171fee39547f22e5ff61b88e6299 Mon Sep 17 00:00:00 2001 From: Marvin Liu Date: Mon, 30 Jan 2023 16:52:40 +0800 Subject: [PATCH] add README.md --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..41d920ba8 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# OSC2023 + +| Github Account | Student ID | Name | +|----------------|------------|---------------| +| psychicalcoder | 0816171 | Tsung-Han Liu | + +## Requirements + +* a cross-compiler for aarch64 +* (optional) qemu-system-arm + +## Build + +``` +make kernel.img +``` + +## Test With QEMU + +``` +qemu-system-aarch64 -M raspi3b -kernel kernel.img -initrd initramfs.cpio -serial null -serial stdio -dtb bcm2710-rpi-3-b-plus.dtb +```