From mboxrd@z Thu Jan 1 00:00:00 1970 From: j.skists@gmail.com (Justin Skists) Date: Thu, 8 Mar 2018 09:30:20 +0000 Subject: QEMU environment setup for Linux Kernel In-Reply-To: References: Message-ID: <20180308093018.GA28555@tanglefoot> To: kernelnewbies@lists.kernelnewbies.org List-Id: kernelnewbies.lists.kernelnewbies.org On Wed, Mar 07, 2018 at 11:11:25PM +0530, Pintu Kumar wrote: > So, I wanted to hear from other developer how they setup and use qemu > environment. I tend to use buildroot for my Linux hacking. (https://buildroot.org/download.html) (Or, sometimes Yocto when I'm feeling particularly brave) Then it's a case of $ cd buildroot $ make list-defconfigs $ make qemu_arm_versatile_defconfig (or desired config) $ make menuconfig [ select wanted target packages ] $ make view board/qemu/arm-versatile/readme.txt for running instructions. I've not compiled the Xorg in it recently, but there is the option for graphical interface. Hope that helps, Justin.