readme.txt
1Intro
2=====
3
4The QEMU sbsa-ref machine is primarily meant for firmware development
5and testing according to ARM's SBSA and SBBR standards.
6
7Build
8=====
9
10 $ make qemu_aarch64_sbsa_defconfig
11 $ make
12
13Emulation
14=========
15
16Run the emulation with:
17
18 qemu-system-aarch64 \
19 -M sbsa-ref \
20 -cpu cortex-a57 \
21 -smp 4 \
22 -m 1024 \
23 -nographic \
24 -pflash output/images/SBSA_FLASH0.fd \
25 -pflash output/images/SBSA_FLASH1.fd \
26 -hda output/images/disk.img # qemu_aarch64_sbsa_defconfig
27
28Note that if you want to run sbsa-ref emulation with QEMU provided by
29your distro (i.e., not host-qemu by Buildroot) then you may need to
30install the SeaBIOS package for some required drivers. On Debian:
31
32 # apt install seabios
33