From b3c90dc675b520f5fda8c2832137c1de8fbe5e78 Mon Sep 17 00:00:00 2001 From: Akshita Bhasin Date: Tue, 27 Oct 2020 09:54:13 -0600 Subject: [PATCH] Updated to include necessary files --- runqemu.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 runqemu.sh diff --git a/runqemu.sh b/runqemu.sh deleted file mode 100755 index 5bbdd27..0000000 --- a/runqemu.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -#Script to run QEMU for buildroot as the default configuration qemu_aarch64_virt_defconfig -#Host forwarding: Host Port 10022 ->> QEMU Port 22 -#Author: Siddhant Jajoo. - - -qemu-system-aarch64 \ - -M virt \ - -cpu cortex-a53 -nographic -smp 1 \ - -kernel buildroot/output/images/Image \ - -append "rootwait root=/dev/vda console=ttyAMA0" \ - -netdev user,id=eth0,hostfwd=tcp::10022-:22 \ - -device virtio-net-device,netdev=eth0 \ - -drive file=buildroot/output/images/rootfs.ext4,if=none,format=raw,id=hd0 \ - -device virtio-blk-device,drive=hd0 -device virtio-rng-pci