Re: New Hardware model emulation

2020-03-04 Thread Stefan Hajnoczi
On Wed, Mar 4, 2020, 13:04 Priyamvad Acharya wrote: > Hello, > > I tried to boot linux on qemu for RISCV(32 bit) with busybear-linux image. > When I run script containing qemu command line configuration it just hangs > with following message shown by attached image. > > How to fix it? > > I am al

Re: New Hardware model emulation

2020-03-04 Thread Priyamvad Acharya
> I have commented all the lines of other hardware models except custom device line *" common-obj-$(CONFIG_TESTPCI) += testpci.o "*. > But when I run *make* I get errors similar to error shown in file which I have shared with you in previous replies. Above custom device I am building for Qemu ARM

Re: New Hardware model emulation

2020-03-04 Thread Stefan Hajnoczi
On Wed, Mar 4, 2020 at 11:16 AM Priyamvad Acharya wrote: > I have commented all the lines of other hardware models except custom device > line " common-obj-$(CONFIG_TESTPCI) += testpci.o ". > But when I run make I get errors similar to error shown in file which I have > shared with you in previ

Re: New Hardware model emulation

2020-03-04 Thread Priyamvad Acharya
Hi, I have commented all the lines of other hardware models except custom device line *" common-obj-$(CONFIG_TESTPCI) += testpci.o "*. But when I run *make* I get errors similar to error shown in file which I have shared with you in previous replies. Thanks, Priyamvad On Wed, 4 Mar 2020 at 02:05

Re: New Hardware model emulation

2020-03-03 Thread Stefan Hajnoczi
On Tue, Mar 3, 2020 at 5:12 PM Priyamvad Acharya wrote: > > These errors are probably due to the Makefile.objs changes in your commit: > > If I am not wrong, we need to add a rule i.e " common-obj-$(CONFIG_TESTPCI) > += testpci.o " in Makefile.objs to compile custom device in Qemu. > Shall I shou

Re: New Hardware model emulation

2020-03-03 Thread Priyamvad Acharya
> These errors are probably due to the Makefile.objs changes in your commit: If I am not wrong, we need to add a rule i.e *" common-obj-$(CONFIG_TESTPCI) += testpci.o "* in Makefile.objs to compile custom device in Qemu. Shall I should remove that rule to remove the errors? On Tue, 3 Mar 2020 at

Re: New Hardware model emulation

2020-03-03 Thread Stefan Hajnoczi
On Tue, Mar 3, 2020 at 12:45 PM Priyamvad Acharya wrote: > Thanks Stefan for explaining the method. > After following above method when I run below command to compile my custom > device in Qemu source code , I get the output on terminal which is attached > in a file for your reference. > > Comma

Re: New Hardware model emulation

2020-03-03 Thread Stefan Hajnoczi
On Tue, Mar 3, 2020 at 12:53 PM Priyamvad Acharya wrote: > > >. Using git-log(1) can be helpful because it shows how new devices were > >introduced. > > What is git-log(1) ? > How to use git-log(1) in Qemu? It's the git command that shows commit history: https://git-scm.com/docs/git-log Stefan

Re: New Hardware model emulation

2020-03-03 Thread Priyamvad Acharya
>.* Using git-log(1) can be helpful because it shows how new devices were introduced.* What is git-log(1) ? How to use git-log(1) in Qemu? On Tue, 3 Mar 2020 at 18:15, Priyamvad Acharya wrote: > Thanks Stefan for explaining the method. > After following above method when I run below command to

Re: New Hardware model emulation

2020-03-03 Thread Priyamvad Acharya
Thanks Stefan for explaining the method. After following above method when I run below command to compile my custom device in Qemu source code , I get the output on terminal which is attached in a file for your reference. Command:- make -j8 -C build Most of the lines in attached file indicate tha

Re: New Hardware model emulation

2020-03-03 Thread Stefan Hajnoczi
On Tue, Mar 3, 2020 at 7:45 AM Priyamvad Acharya wrote: Please use Reply-All when replying to mailing list emails so that qemu-devel@nongnu.org is included in the CC list. That way the discussion stays on the mailing list. > Hi, > I have written code to emulate a custom PCI device. > Now I want

Re: New Hardware model emulation

2020-03-02 Thread Stefan Hajnoczi
On Mon, Feb 24, 2020 at 05:27:44PM +0530, Priyamvad Acharya wrote: > I have created a virtual device in Qemu. > Now I want to run Qemu with the virtual device,so how to do it ? Hi, It's unclear what you mean. Please provide a bit more background on what you are trying to accomplish. For example,

New Hardware model emulation

2020-02-24 Thread Priyamvad Acharya
Hello Qemu development community members, I have created a virtual device in Qemu. Now I want to run Qemu with the virtual device,so how to do it ? Thanks, Priyamvad Acharya