blob: 9f745a16b0daacda234c35bb5739129370628aa5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
XLEN=$(echo "$1" | cut -c '6-7')
if [ ! -e fs ]; then
mkdir fs
fi
if [ ! -e rootfs.img ]; then
virt-make-fs --partition=mbr --type=vfat --size=10M fs rootfs.img
fi
SSIZE=$(fdisk -l rootfs.img | awk '$1=="Units:" {print $8}')
OFFSET=$(fdisk -l rootfs.img | awk '$1=="rootfs.img1" {print $2}')
mount -o loop,offset=$((${SSIZE}*${OFFSET})) rootfs.img fs
# not entirely pleased with this solution, although eventually I should probably
# move `run` out of the kernel repo and into some `aposos` repo with a runtime
# and proper initrd etc. so this is good enough for now
../rv${XLEN}/u-boot-apos/tools/mkimage -f arch/riscv${XLEN}/conf/apos.its fs/apos.itb
../rv${XLEN}/u-boot-apos/tools/mkimage -A riscv -O apos -T script \
-d arch/riscv64/conf/boot.cmd fs/boot.scr
umount -l fs
qemu-system-riscv${XLEN} \
-machine virt \
-kernel ../rv${XLEN}/u-boot-apos/u-boot \
-bios ../rv${XLEN}/opensbi/build/platform/generic/firmware/fw_jump.elf \
-device virtio-blk-device,drive=hd0 \
-drive file=rootfs.img,format=raw,id=hd0 \
-S -s -m 2G \
-serial stdio
|