Hi Ali Saidi, with refering to the topic on "Error creating a disk image using PTXDIST, it means that now i'm writing a C++ source code to model a GPU and also some python files to create a new GPU module for the M5 simulator, and I only need to try to build all my source code together with the existing M5 simulator source code ??
I m creating a disk image with a linux kernel because i'm not sure the existing linux kernel provided include the GPU driver for Voodoo 3 GPU or not. Regards Wen Jian On Thu, Oct 21, 2010 at 12:00 AM, <[email protected]> wrote: > Send m5-users mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > http://m5sim.org/cgi-bin/mailman/listinfo/m5-users > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of m5-users digest..." > > > Today's Topics: > > 1. m5-users Digest, Vol 51, Issue 31 : Re: Error Creating a disk > image using PTXDIST (Ong Wen Jian) > 2. error helpme (Sudhanshu Bodawala) > 3. Re: m5-users Digest, Vol 51, Issue 31 : Re: Error Creating a > disk image using PTXDIST (Ali Saidi) > 4. Re: error helpme (Ali Saidi) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 20 Oct 2010 09:02:42 +0800 > From: Ong Wen Jian <[email protected]> > To: [email protected] > Subject: [m5-users] m5-users Digest, Vol 51, Issue 31 : Re: Error > Creating a disk image using PTXDIST > Message-ID: > > <[email protected]<aqrkws6dpo%[email protected]> > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi Ali Saidi,,, > > With refering to the topic above, I also face a similar problem in creating > a disk image and linux kernel for the M5 simulator. Basically I need a new > linux kernel with some device driver on it to run my experiment on the M5 > simulator. > > Do I have any option to build my own linux kernel for M5 simulator for me > to > run some experiment on the M5 simulator ?? > > -- > ONG WEN JIAN > Student > Department of Computer and Communication Systems Engineering, > Faculty of Engineering, Universiti Putra Malaysia > 43400 UPM Serdang, Selangor Darul Ehsan > Tel : 014 - 930 2150 / 017 - 613 6231 > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://m5sim.org/cgi-bin/mailman/private/m5-users/attachments/20101020/523d2648/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Tue, 19 Oct 2010 22:10:32 -0700 > From: Sudhanshu Bodawala <[email protected]> > To: [email protected] > Subject: [m5-users] error helpme > Message-ID: > > <[email protected]<aanlktimnb%[email protected]> > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > I am totally new to the m5 simulator. When I run the command I will > get the following error. please help me to solve this problem. > > command line: *./build/ALPHA_FS/m5.debug configs/example/fs.py > *Traceback (most recent call last): > File "<string>", line 1, in ? > File "/home/sudhanshub/m5/m5/src/python/m5/main.py", line 359, in main > exec filecode in scope > File "configs/example/fs.py", line 124, in ? > test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0]) > File "/home/sudhanshub/m5/m5/configs/common/FSConfig.py", line 76, in > makeLinuxAlphaSystem > self.disk0.childImage(mdesc.disk()) > File "/home/sudhanshub/m5/m5/configs/common/Benchmarks.py", line 53, in > disk > return env.get('LINUX_IMAGE', disk('linux-latest.img')) > File "/home/sudhanshub/m5/m5/configs/common/SysPaths.py", line 37, in disk > system() > File "/home/sudhanshub/m5/m5/configs/common/SysPaths.py", line 59, in > system > raise ImportError, "Can't find a path to system files." > *ImportError: Can't find a path to system files.* > > ** > sudhanshu bodawala > * > * > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://m5sim.org/cgi-bin/mailman/private/m5-users/attachments/20101019/3a004e78/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Tue, 19 Oct 2010 23:03:57 -0700 > From: Ali Saidi <[email protected]> > To: M5 users mailing list <[email protected]> > Subject: Re: [m5-users] m5-users Digest, Vol 51, Issue 31 : Re: > Error > Creating a disk image using PTXDIST > Message-ID: <[email protected]> > Content-Type: text/plain; charset=us-ascii > > The kernel isn't on the disk image, but is instead passed to the simulator > directly. If you want to load a kernel module it needs to be on the disk > image, but you can just mount the disk image and copy your module on to it, > you don't need to create an entirely new image from scratch. > > Ali > > On Oct 19, 2010, at 6:02 PM, Ong Wen Jian wrote: > > > Hi Ali Saidi,,, > > > > With refering to the topic above, I also face a similar problem in > creating a disk image and linux kernel for the M5 simulator. Basically I > need a new linux kernel with some device driver on it to run my experiment > on the M5 simulator. > > > > Do I have any option to build my own linux kernel for M5 simulator for me > to run some experiment on the M5 simulator ?? > > > > -- > > ONG WEN JIAN > > Student > > Department of Computer and Communication Systems Engineering, > > Faculty of Engineering, Universiti Putra Malaysia > > 43400 UPM Serdang, Selangor Darul Ehsan > > Tel : 014 - 930 2150 / 017 - 613 6231 > > _______________________________________________ > > m5-users mailing list > > [email protected] > > http://m5sim.org/cgi-bin/mailman/listinfo/m5-users > > > > ------------------------------ > > Message: 4 > Date: Tue, 19 Oct 2010 23:05:47 -0700 > From: Ali Saidi <[email protected]> > To: M5 users mailing list <[email protected]> > Subject: Re: [m5-users] error helpme > Message-ID: <[email protected]> > Content-Type: text/plain; charset=us-ascii > > You need to set the M5_PATH environment variable to the directory that > contains the kernels and disk images. Please review the tutorial slides. > > Ali > > On Oct 19, 2010, at 10:10 PM, Sudhanshu Bodawala wrote: > > > Hi, > > I am totally new to the m5 simulator. When I run the command I > will get the following error. please help me to solve this problem. > > > > command line: ./build/ALPHA_FS/m5.debug configs/example/fs.py > > Traceback (most recent call last): > > File "<string>", line 1, in ? > > File "/home/sudhanshub/m5/m5/src/python/m5/main.py", line 359, in main > > exec filecode in scope > > File "configs/example/fs.py", line 124, in ? > > test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0]) > > File "/home/sudhanshub/m5/m5/configs/common/FSConfig.py", line 76, in > makeLinuxAlphaSystem > > self.disk0.childImage(mdesc.disk()) > > File "/home/sudhanshub/m5/m5/configs/common/Benchmarks.py", line 53, in > disk > > return env.get('LINUX_IMAGE', disk('linux-latest.img')) > > File "/home/sudhanshub/m5/m5/configs/common/SysPaths.py", line 37, in > disk > > system() > > File "/home/sudhanshub/m5/m5/configs/common/SysPaths.py", line 59, in > system > > raise ImportError, "Can't find a path to system files." > > ImportError: Can't find a path to system files. > > > > > > sudhanshu bodawala > > > > _______________________________________________ > > m5-users mailing list > > [email protected] > > http://m5sim.org/cgi-bin/mailman/listinfo/m5-users > > > > ------------------------------ > > _______________________________________________ > m5-users mailing list > [email protected] > http://m5sim.org/cgi-bin/mailman/listinfo/m5-users > > End of m5-users Digest, Vol 51, Issue 32 > **************************************** > -- ONG WEN JIAN Student Department of Computer and Communication Systems Engineering, Faculty of Engineering, Universiti Putra Malaysia 43400 UPM Serdang, Selangor Darul Ehsan Tel : 014 - 930 2150 / 017 - 613 6231
_______________________________________________ m5-users mailing list [email protected] http://m5sim.org/cgi-bin/mailman/listinfo/m5-users
