Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Modify /etc/init.d/xencommons, adding "LD_LIBRARY_PATH=/home/akashi/.local/lib/aarrch64-lnux-gnu."" and replacing qemu-system-aarch64 with qemu-system-i386.

Modify /boot/grub/grub.cfg, adding "dom0_mem=xxxM" at xen_hhypervisor hypervisor command.

Enable daemons:

Code Block
$ sudo systemctrl enable xencommons
$ sudo systemctrl enable xendomains
$ sudo systemctrl enable xendriverdomain
($ sudo systemctrl enable xen-watchdog)

...

Code Block
$ export LD_LIBRARY_PATH=/home/akashi/.local/lib/aarch64-linux-gnu
$ export PKG_CONFIG_PATH=/home/akashi/.local/lib/aarch64-linux-gnu/pkgconfig
$ mkdir build; cd build
$ ../configure \
  --prefix=/home/akashi/.local \
  --extra-cflags="-I/home/akashi/.local/include " \
  --extra-ldflags="-L/home/akashi/.local/lib/aarch64-linux-gnu" \
  --target-list=aarch64-softmmu,i386-softmmu \
  --enable-kvm \
  --enable-xen \
  --disable-werror \
  --enable-slirp \
  --enable-opengl \
  --enable-virglrenderer \
  --enable-gtk \
  --enable-sdl
$ ninja install

[3] https://github.com/t-akashi/qemu.git branch: virtio-gpu/aosp_vv82_digetx_rui.2

...