base-hw: RISC-V BBL

The Berkley Boot Loader handles kernel loading and machine mode
This commit is contained in:
Sebastian Sumpf
2017-05-12 10:35:33 +02:00
committed by Christian Helmuth
parent 4cbfed11ee
commit 6c95eb9aff
20 changed files with 182 additions and 66 deletions

6
tool/run/image/bbl Normal file
View File

@@ -0,0 +1,6 @@
proc run_image {elf_img} {
puts "using '$elf_img' as bbl image"
exec rm -f bbl/image.o
exec make IMAGE_ELF=[pwd]/$elf_img bbl
}