Skip to content

Commit

Permalink
examples/simple: remove bashism
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Brown <[email protected]>
  • Loading branch information
alexandermbrown authored and Ivan-Velickovic committed Jul 15, 2024
1 parent 5628ccd commit d67d8f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/simple/simple.mk
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ images.o: $(LIBVMM)/tools/package_guest_images.S $(SYSTEM_DIR)/linux vm.dtb root
include $(LIBVMM)/vmm.mk

qemu: $(IMAGE_FILE)
if ! command -v $(QEMU) &> /dev/null; then echo "Could not find dependency: qemu-system-aarch64"; exit 1; fi
if ! command -v $(QEMU) > /dev/null 2>&1; then echo "Could not find dependency: qemu-system-aarch64"; exit 1; fi
$(QEMU) -machine virt,virtualization=on,highmem=off,secure=off \
-cpu cortex-a53 \
-serial mon:stdio \
Expand Down

0 comments on commit d67d8f7

Please sign in to comment.