123456789101112131415161718192021222324 |
- #
- # This software is a part of ISAR.
- # Copyright (C) 2015-2017 ilbers GmbH
- #
- # This configuration file is a part of bitbake multiconfig. Bitbake combines
- # these settings with local.conf ones and start task execution with this
- # environment.
- # This sets the default machine to be qemuarm in this configuration:
- MACHINE ?= "qemuarm"
- # This sets the default distribution configuration:
- DISTRO ?= "debian-jessie"
- DISTRO_ARCH ?= "armhf"
- KERNEL_NAME ?= "armmp"
- QEMU_ROOTFS_DEV ?= "vda"
- QEMU_ARCH ?= "arm"
- QEMU_MACHINE ?= "virt"
- QEMU_CPU ?= "cortex-a15"
- # TODO: start_vm doesn't support multiline vars
- QEMU_DISK_ARGS ?= "-drive file=##ROOTFS_IMAGE##,if=none,format=raw,id=hd0 -device virtio-blk-device,drive=hd0"
|