From 5f3571d3c7b3303d9b503a79706c84f773994e66 Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Fri, 22 Jun 2018 11:45:20 +0200 Subject: Update getting started documentation: * Fix markdown lint warring. * Update AGL current version. * Update Renesas documentation. Signed-off-by: Ronan Le Martret --- getting-started/machines/qemu.md | 78 ++++++++++++++++++++-------------------- 1 file changed, 39 insertions(+), 39 deletions(-) (limited to 'getting-started/machines/qemu.md') diff --git a/getting-started/machines/qemu.md b/getting-started/machines/qemu.md index 5a2d426..7bd14c0 100644 --- a/getting-started/machines/qemu.md +++ b/getting-started/machines/qemu.md @@ -9,20 +9,20 @@ bitbake agl-demo-platform By default, the build will produce a compressed *vmdk* image in **tmp/deploy/images/qemux86-64/agl-demo-platform-qemux86-64.vmdk.xz** -# Deploying the AGL Demo Platform for QEMU +## Deploying the AGL Demo Platform for QEMU -## Prepare an image for boot +### Prepare an image for boot Decompress the **agl-demo-platform-qemux86-64.vmdk.xz** image to prepare it for boot. -### Linux +#### Linux ```bash cd tmp/deploy/images/qemux86-64 xz -d agl-demo-platform-qemux86-64.vmdk.xz ``` -### Windows +#### Windows Download [7-Zip](http://www.7-zip.org/) and select **agl-demo-platform-qemux86-64.vmdk.xz** to be decompressed. @@ -30,9 +30,9 @@ Download [7-Zip](http://www.7-zip.org/) and select **agl-demo-platform-qemux86-6 ### QEMU -#### Install +#### Install QEMU -Note: if an AGL crosssdk has been created, it will contain a qemu binary for the host system. This SDK qemu binary has no graphics support and cannot currently be used to boot an AGL image. +**Note**: if an AGL crosssdk has been created, it will contain a qemu binary for the host system. This SDK qemu binary has no graphics support and cannot currently be used to boot an AGL image. *Arch*: @@ -52,68 +52,68 @@ sudo apt-get install qemu-system-x86 sudo yum install qemu-kvm ``` -#### Boot +#### Boot QEMU Boot the **agl-demo-platform-qemux86-64.vmdk** image in qemu with kvm support: ```bash qemu-system-x86_64 -enable-kvm -m 2048 \ - -hda agl-demo-platform-qemux86-64.vmdk \ - -cpu kvm64 -cpu qemu64,+ssse3,+sse4.1,+sse4.2,+popcnt \ - -vga virtio -show-cursor \ - -device virtio-rng-pci \ - -serial mon:stdio -serial null \ - -soundhw hda \ - -net nic,vlan=0 \ - -net user,hostfwd=tcp::2222-:22 + -hda agl-demo-platform-qemux86-64.vmdk \ + -cpu kvm64 -cpu qemu64,+ssse3,+sse4.1,+sse4.2,+popcnt \ + -vga virtio -show-cursor \ + -device virtio-rng-pci \ + -serial mon:stdio -serial null \ + -soundhw hda \ + -net nic,vlan=0 \ + -net user,hostfwd=tcp::2222-:22 ``` ### VirtualBox -#### Install +#### Install VirtualBox Download and install [VirtualBox](https://www.virtualbox.org/wiki/Downloads) 5.2.0 or later. -#### Boot +#### Boot VirtualBox Boot the **agl-demo-platform-qemux86-64.vmdk** image in VirtualBox: * Start VirtualBox * Click **New** to create a new machine - * Enter **AGL QEMU** as the *Name* - * Select **Linux** as the *Type* - * Select **Other Linux (64-bit)** as the *Version* - * Set *Memory size* to **2 GB** - * Click **Use an existing virtual hard disk file** under *Hard disk* + * Enter **AGL QEMU** as the *Name* + * Select **Linux** as the *Type* + * Select **Other Linux (64-bit)** as the *Version* + * Set *Memory size* to **2 GB** + * Click **Use an existing virtual hard disk file** under *Hard disk* * Navigate to and select the **agl-demo-platform-qemux86-64.vmdk** image * Ensure that the newly created **AGL QEMU** machine is highlighted and click **Start** ### VMWare Player -#### Install +#### Install VMWare Player Download and install [VMWare Player](https://www.vmware.com/products/player/playerpro-evaluation.html) -#### Boot +#### Boot VMWare Player Boot the **agl-demo-platform-qemux86-64.vmdk** image in VMWare Player: * Start VMWare Player * Select **File** and **Create a New Virtual Machine** - * Select **I will install the operating system later** and click **Next** - * Select **Linux** as the *Guest Operating System*, **Other Linux 3.x kernel 64-bit** as the *Version*, and click **Next** - * Enter **AGL QEMU** as the *Name* and click **Next** - * Leave *disk capacity settings* unchanged and click **Next** - * Click **Finish** + * Select **I will install the operating system later** and click **Next** + * Select **Linux** as the *Guest Operating System*, **Other Linux 3.x kernel 64-bit** as the *Version*, and click **Next** + * Enter **AGL QEMU** as the *Name* and click **Next** + * Leave *disk capacity settings* unchanged and click **Next** + * Click **Finish** * Select/highlight **AGL QEMU** and click **Edit virtual machine settings** - * Select/highlight **Memory** and click **2 GB** - * Select/highlight **Hard Disk (SCSI)** and click **Remove** - * Click **Add** - * Select **Hard Disk** and click **Next** - * Select **SCSI (Recommended)** and click **Next** - * Select **Use an existing virtual disk** and click **Next** - * Browse and select the **agl-demo-platform-qemux86-64.vmdk** image - * Click **Finish** - * Click **Keep Existing Format** - * Click **Save** + * Select/highlight **Memory** and click **2 GB** + * Select/highlight **Hard Disk (SCSI)** and click **Remove** + * Click **Add** + * Select **Hard Disk** and click **Next** + * Select **SCSI (Recommended)** and click **Next** + * Select **Use an existing virtual disk** and click **Next** + * Browse and select the **agl-demo-platform-qemux86-64.vmdk** image + * Click **Finish** + * Click **Keep Existing Format** + * Click **Save** * Ensure that the newly created **AGL QEMU** machine is highlighted and click **Power On** -- cgit 1.2.3-korg