9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

pi4.sh (177B)


      1 #!/bin/sh
      2 
      3 os=bin/os9.bin
      4 
      5 qemu-system-aarch64 \
      6 	-M virt\
      7 	-m 1024\
      8 	-smp 4\
      9 	-cpu cortex-a53\
     10 	-serial mon:stdio\
     11 	-gdb tcp::7000 -S\
     12 	-no-reboot \
     13 	-nographic \
     14 	-bios $os \