summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2017-06-15Fix template dir and data file dir to match new templating.Sebastien Douheret2-1/+5
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
2017-06-15Ignore XDS env config fileSebastien Douheret2-1/+1
2017-06-09Ignore packaging and Netbeans launcherSebastien Douheret2-52/+2
2017-06-09Use common app-templates repo (define as a submodule)Sebastien Douheret8-482/+4
2017-06-09Ignore VSC and XDS/Syncthing folders-203/+212784
2017-05-26Initial commitFulup Ar Foll2-0/+203
> if [ ! -f "$kernel" ]; then echo "No kernel for $image" exit 1 fi TASKSET_CMD="" if [ -n "$QEMU_TASKSET_CPUS" ]; then TASKSET_CMD="taskset -c ${QEMU_TASKSET_CPUS}" fi export SDL_VIDEODRIVER=wayland export XDG_RUNTIME_DIR=/run/user/1001 # The following may be needed if the socket is not wayland-0, as SDL # seems to lack detection logic for that case. #export WAYLAND_DISPLAY=wayland-1 # This sets the XDG app id, which we need for setting outputs with # agl-compositor export SDL_VIDEO_WAYLAND_WMCLASS="${image}" ${TASKSET_CMD} \ qemu-system-${arch} \ -enable-kvm \ -machine virt,gic-version=max,iommu=smmuv3 \ -cpu host \ ${QEMU_SMP_OPT} \ ${QEMU_MEM_OPT} \ -kernel $kernel \ -append "${QEMU_KERNEL_CMDLINE_APPEND}" \ -drive id=disk0,file=${disk},format=raw,if=none \ -serial mon:pty \ -object rng-random,filename=/dev/urandom,id=rng0 \ -device virtio-blk-device,drive=disk0 \ -device virtio-rng-device,rng=rng0 \ ${QEMU_NET_OPT} \ ${QEMU_INPUT_OPT} \ -global virtio-mmio.force-legacy=false \ -device virtio-gpu-gl-device \ -display sdl,gl=on -vga std \ ${QEMU_AUDIO_OPT} \ ${QEMU_EXTRA_OPT} \ -full-screen