From: Steven E. <ste...@ya...> - 2002-07-09 06:34:22
|
Is everyone who has been testing still getting this? If so I have a patch that I think will fix it. Steven __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: James T. <jim...@ad...> - 2002-07-09 23:52:49
|
Steven Edwards wrote: > > Is everyone who has been testing still getting this? > If so I have a patch that I think will fix it. > > Steven > Hi, Yes, it is annoying but I can live with it. If you do have a patch, go ahead and post it. Thanks, James |
From: Royce M. I. <ro...@ev...> - 2002-07-10 06:19:24
|
make -C drivers/lib/zlib install make[1]: *** No rule to make target `zlib.sym', needed by `../../../reactos/syst em32/zlib.a'. Stop. make[1]: Entering directory `C:/reactos/drivers/lib/zlib' make[1]: Leaving directory `C:/reactos/drivers/lib/zlib' C:\MINGW\BIN\MAKE.EXE: *** [zlib_install] Error 2 Apparently the SYM files are not being generated. Here is what I've done: make clean make make install << this is where the above error appears How do I get it to create the SYM file? Royce3 |
From: <we...@cw...> - 2002-07-10 09:07:43
|
Quoting Royce Mitchell III <ro...@ev...>: > make -C drivers/lib/zlib install > make[1]: *** No rule to make target `zlib.sym', needed by > `../../../reactos/syst > em32/zlib.a'. Stop. > make[1]: Entering directory `C:/reactos/drivers/lib/zlib' > make[1]: Leaving directory `C:/reactos/drivers/lib/zlib' > C:\MINGW\BIN\MAKE.EXE: *** [zlib_install] Error 2 > > Apparently the SYM files are not being generated. Here is what I've > done: > > make clean > make > make install << this is where the above error appears > > How do I get it to create the SYM file? > touch drivers/lib/zlib/zlib.sym works for me. |
From: Royce M. I. <ro...@ev...> - 2002-07-10 15:30:21
|
Is there supposed to be a "C:\Reactos\Reactos"? When I type "Make install", it creates that directory and starts putting files there :( |
From: Eric K. <ek...@rz...> - 2002-07-10 17:45:37
|
"Royce Mitchell III" <ro...@ev...> wrote: > Is there supposed to be a "C:\Reactos\Reactos"? No, it is not! > When I type "Make install", it creates that directory and starts putting > files there :( "Make install" is broken and should not be used. Use install.bat (DOS/Win) or install.sh (Linux) instead. Eric |
From: David W. <we...@cw...> - 2002-07-10 20:05:27
|
On Wed, Jul 10, 2002 at 07:49:31PM +0200, Eric Kohl wrote: > > When I type "Make install", it creates that directory and starts putting > > files there :( > > "Make install" is broken and should not be used. Use install.bat (DOS/Win) > or install.sh (Linux) instead. > 'make install' works on Linux, install.sh just copies the reactos subdirectory to the final destination. |
From: KJK::Hyperion <no...@li...> - 2002-07-10 19:45:46
|
At 08.14 10/07/2002, you wrote: [...] >How do I get it to create the SYM file? fixing the tools/helper.mk file. We don't have a rule for symbol files of static libraries. zlib just happens to be our one and only static library |
From: Steven E. <ste...@ya...> - 2002-07-10 09:02:40
|
can you send me your stdlib.h from a windows mingw install. Mine my be hosed and I want to double check before committing this patch. --- James Tabor <jim...@ad...> wrote: > Steven Edwards wrote: > > > > Is everyone who has been testing still getting > this? > > If so I have a patch that I think will fix it. > > > > Steven > > > Hi, > Yes, it is annoying but I can live with it. If you > do have > a patch, go ahead and post it. > Thanks, > James > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Stuff, things, and much much more. > http://thinkgeek.com/sf > _______________________________________________ > reactos-kernel mailing list > rea...@li... > https://lists.sourceforge.net/lists/listinfo/reactos-kernel __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Royce M. I. <ro...@ev...> - 2002-07-10 16:14:15
|
> touch drivers/lib/zlib/zlib.sym works for me. Doesn't the file have to exist before I can touch it? make -C drivers/lib/zlib install make[1]: *** No rule to make target `zlib.sym', needed by `../../../reactos/system32/zlib.a'. Stop. make[1]: Entering directory `C:/reactos/drivers/lib/zlib' make[1]: Leaving directory `C:/reactos/drivers/lib/zlib' C:\MINGW\BIN\MAKE.EXE: *** [zlib_install] Error 2 |
From: KJK::Hyperion <no...@li...> - 2002-07-10 19:45:50
|
At 18.09 10/07/2002, Royce Mitchell III wrote: > > touch drivers/lib/zlib/zlib.sym works for me. >Doesn't the file have to exist before I can touch it? nope. Touch should create it |
From: KJK::Hyperion <no...@li...> - 2002-07-10 19:45:37
|
At 08.34 09/07/2002, you wrote: >Is everyone who has been testing still getting this? why did stdlib.h define MAX_PATH, anyway? |
From: Steven E. <ste...@ya...> - 2002-07-10 20:12:41
|
This is a mingw bug....they were supposed to fix it in the current cvs as I sent them a patch but they wanted to stick it in some #ifdef wrapper for older broken mingw apps so i dunno if it was ever accepted or now. I dunno support brokeness IMHO is just wrong and it is pain....they should just make whoever fix thier code if it depends on this as it is wrong in MS_VC anyway. Feel free to voice your comments to them Steven --- "KJK::Hyperion" <no...@li...> wrote: > At 08.34 09/07/2002, you wrote: > >Is everyone who has been testing still getting > this? > > why did stdlib.h define MAX_PATH, anyway? > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Two, two, TWO treats in one. > http://thinkgeek.com/sf > _______________________________________________ > reactos-kernel mailing list > rea...@li... > https://lists.sourceforge.net/lists/listinfo/reactos-kernel __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Royce M. I. <ro...@ev...> - 2002-07-11 01:17:09
|
The continued adventures of the would-be OS hacker.. I finally got the code installed, and I've tried booting up ReactOS ( updated to today's CVS ). Unfortunately, it's crashing on me. I've dug through the source code, but I can't seem to find what's causing it... Here's what the screen says: Screen debugging enabled Starting ReactOS 0.0.19 (Build 135) Copyright (c) 1998-2002 ReactOS Team ReactOS is free software, etc.. Found 1 system processor. [256 MB Memory] Initializing system32\drivers\scsiport.sys... Initializing system32\drivers\atapi.sys... Initializing system32\drivers\class2.sys... Initializing system32\drivers\disk.sys... Page fault at high IRQL was 12 Bug detected code: 0x1D Divide Error Exception: 0(2) Processor: 0 CS:EIP 8:c00e3f98 <hal.dll: 3f98> cr2 0 cr3 272000 Proc: c02ffaa6 Pid: 1 <SYSTEM> Thrd: c03106f4 Tid: 1 DS 10 ES 10 FS 30 GS 10 EAX: 00006868 EBX: c0376c7e ECX: 00005e3f EDX: 00000170 EBP: c00800b0 ESI: 00200000 EDI: c036b000 EFLAGS: 00010212 kESP: c0080038 kernel stack base c007e000 ESP c0080038 Frames: <(garbage): 195c><p(garbage): 2511><ntoskrnl.exe: 21c5><hal.dll: 5404><ha l.dll: 5458><hal.dll: 5563><hal.dll: 557f><ntoskrnl.exe: b813><p(garbage): 1d46><ntosk rnl.exe: 2cb38><p(garbage): 19c1><ntoskrnl.exe: 29f9a><ntoskrnl.exe: 29fcb><p(garbage) : 2a51><p(garbage): 25f8><p(garbage):626(garbage): 1d5c><ntoskrnl.exe: 26532><nto skrnl.exe: 33615><ntoskrnl.exe: aa54><ntoskrnl.exe: ab51><ntoskrnl.exe: b0f0><nt oskrnl.exe: 117c> |
From: Steven E. <ste...@ya...> - 2002-07-11 04:43:18
|
what is your hard drive/partion setup? --- Royce Mitchell III <ro...@ev...> wrote: > The continued adventures of the would-be OS hacker.. > > I finally got the code installed, and I've tried > booting up ReactOS ( > updated to today's CVS ). > > Unfortunately, it's crashing on me. I've dug through > the source code, but I > can't seem to find what's causing it... > > Here's what the screen says: > > > Screen debugging enabled > > Starting ReactOS 0.0.19 (Build 135) > Copyright (c) 1998-2002 ReactOS Team > > ReactOS is free software, etc.. > > Found 1 system processor. [256 MB Memory] > > Initializing system32\drivers\scsiport.sys... > > Initializing system32\drivers\atapi.sys... > > Initializing system32\drivers\class2.sys... > > Initializing system32\drivers\disk.sys... > Page fault at high IRQL was 12 > Bug detected code: 0x1D > Divide Error Exception: 0(2) > Processor: 0 CS:EIP 8:c00e3f98 <hal.dll: 3f98> > cr2 0 cr3 272000 Proc: c02ffaa6 Pid: 1 <SYSTEM> > Thrd: c03106f4 Tid: 1 > DS 10 ES 10 FS 30 GS 10 > EAX: 00006868 EBX: c0376c7e ECX: 00005e3f > EDX: 00000170 EBP: c00800b0 ESI: 00200000 > EDI: c036b000 EFLAGS: 00010212 kESP: c0080038 > kernel stack base c007e000 > ESP c0080038 > Frames: <(garbage): 195c><p(garbage): > 2511><ntoskrnl.exe: 21c5><hal.dll: > 5404><ha > l.dll: 5458><hal.dll: 5563><hal.dll: > 557f><ntoskrnl.exe: b813><p(garbage): > 1d46><ntosk > rnl.exe: 2cb38><p(garbage): 19c1><ntoskrnl.exe: > 29f9a><ntoskrnl.exe: > 29fcb><p(garbage) > : 2a51><p(garbage): 25f8><p(garbage):626(garbage): > 1d5c><ntoskrnl.exe: > 26532><nto > skrnl.exe: 33615><ntoskrnl.exe: aa54><ntoskrnl.exe: > ab51><ntoskrnl.exe: > b0f0><nt > oskrnl.exe: 117c> > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Two, two, TWO treats in one. > http://thinkgeek.com/sf > _______________________________________________ > reactos-kernel mailing list > rea...@li... > https://lists.sourceforge.net/lists/listinfo/reactos-kernel __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Royce M. I. <ro...@ev...> - 2002-07-11 05:24:17
|
Here you go: The Non-DOS partitions are Linux. Even tho my fat32 is partition #3, it's physically the first partition on the drive. It's strange, now that you mention it, how Linux's disk druid moved my fat32 partition to the 3rd slot. Display Partition Information Current fixed disk drive: 1 Partition Status Type Volume Label Mbytes System Usage 1 Non-DOS 47 % 2 Non-DOS 2698 9% C: 3 A PRI DOS 25627 FAT32 90% 4 EXT DOS 251 1% Total disk space is 28624 Mbytes (1 Mbyte = 1048576 bytes) The Extended DOS Partition contains Logical DOS Drives. Do you want to display the logical drive information (Y/N)......?[Y] Display Logical DOS Drive Information No logical drives defined Total Extended DOS Partition size is 251 Mbytes (1 MByte = 1048576 bytes) ----- Original Message ----- From: "Steven Edwards" <ste...@ya...> To: <rea...@li...> Sent: Wednesday, July 10, 2002 11:43 PM Subject: Re: [ros-kernel] How do I fix this? > what is your hard drive/partion setup? > > > --- Royce Mitchell III <ro...@ev...> wrote: > > The continued adventures of the would-be OS hacker.. > > > > I finally got the code installed, and I've tried > > booting up ReactOS ( > > updated to today's CVS ). > > > > Unfortunately, it's crashing on me. I've dug through > > the source code, but I > > can't seem to find what's causing it... > > > > Here's what the screen says: > > > > > > Screen debugging enabled > > > > Starting ReactOS 0.0.19 (Build 135) > > Copyright (c) 1998-2002 ReactOS Team > > > > ReactOS is free software, etc.. > > > > Found 1 system processor. [256 MB Memory] > > > > Initializing system32\drivers\scsiport.sys... > > > > Initializing system32\drivers\atapi.sys... > > > > Initializing system32\drivers\class2.sys... > > > > Initializing system32\drivers\disk.sys... > > Page fault at high IRQL was 12 > > Bug detected code: 0x1D > > Divide Error Exception: 0(2) > > Processor: 0 CS:EIP 8:c00e3f98 <hal.dll: 3f98> > > cr2 0 cr3 272000 Proc: c02ffaa6 Pid: 1 <SYSTEM> > > Thrd: c03106f4 Tid: 1 > > DS 10 ES 10 FS 30 GS 10 > > EAX: 00006868 EBX: c0376c7e ECX: 00005e3f > > EDX: 00000170 EBP: c00800b0 ESI: 00200000 > > EDI: c036b000 EFLAGS: 00010212 kESP: c0080038 > > kernel stack base c007e000 > > ESP c0080038 > > Frames: <(garbage): 195c><p(garbage): > > 2511><ntoskrnl.exe: 21c5><hal.dll: > > 5404><ha > > l.dll: 5458><hal.dll: 5563><hal.dll: > > 557f><ntoskrnl.exe: b813><p(garbage): > > 1d46><ntosk > > rnl.exe: 2cb38><p(garbage): 19c1><ntoskrnl.exe: > > 29f9a><ntoskrnl.exe: > > 29fcb><p(garbage) > > : 2a51><p(garbage): 25f8><p(garbage):626(garbage): > > 1d5c><ntoskrnl.exe: > > 26532><nto > > skrnl.exe: 33615><ntoskrnl.exe: aa54><ntoskrnl.exe: > > ab51><ntoskrnl.exe: > > b0f0><nt > > oskrnl.exe: 117c> > > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Two, two, TWO treats in one. > > http://thinkgeek.com/sf > > _______________________________________________ > > reactos-kernel mailing list > > rea...@li... > > > https://lists.sourceforge.net/lists/listinfo/reactos-kernel > > > __________________________________________________ > Do You Yahoo!? > Sign up for SBC Yahoo! Dial - First Month Free > http://sbc.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > PC Mods, Computing goodies, cases & more > http://thinkgeek.com/sf > _______________________________________________ > reactos-kernel mailing list > rea...@li... > https://lists.sourceforge.net/lists/listinfo/reactos-kernel > |
From: Christer P. <cpe...@ya...> - 2002-07-11 12:20:47
|
Hello --- Royce Mitchell III <ro...@ev...> wrote: > The continued adventures of the would-be OS hacker.. > > I finally got the code installed, and I've tried booting up ReactOS > ( > updated to today's CVS ). > > Unfortunately, it's crashing on me. I've dug through the source > code, but I > can't seem to find what's causing it... > > Here's what the screen says: > > > Screen debugging enabled [CUT] I had something like that to. When i disconnected my second harddisk, everything was OK. / Christer P. __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Royce M. I. <ro...@ev...> - 2002-07-11 14:35:32
|
I've only got one hard drive, but I have a Zip, DVD & CD-RW. Hmm.. I don't really use the Zip anymore, I could try disconnecting it... Is ReactOS not designed yet to recognize second hard drives? ----- Original Message ----- From: "Christer Pettersson" <cpe...@ya...> To: <rea...@li...> Sent: Thursday, July 11, 2002 7:20 AM Subject: Re: [ros-kernel] How do I fix this? > Hello > > --- Royce Mitchell III <ro...@ev...> wrote: > > The continued adventures of the would-be OS hacker.. > > > > I finally got the code installed, and I've tried booting up ReactOS > > ( > > updated to today's CVS ). > > > > Unfortunately, it's crashing on me. I've dug through the source > > code, but I > > can't seem to find what's causing it... > > > > Here's what the screen says: > > > > > > Screen debugging enabled > [CUT] > > I had something like that to. > When i disconnected my second harddisk, everything was OK. > > / Christer P. > > __________________________________________________ > Do You Yahoo!? > Sign up for SBC Yahoo! Dial - First Month Free > http://sbc.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > PC Mods, Computing goodies, cases & more > http://thinkgeek.com/sf > _______________________________________________ > reactos-kernel mailing list > rea...@li... > https://lists.sourceforge.net/lists/listinfo/reactos-kernel > |
From: Eric K. <ek...@rz...> - 2002-07-11 14:53:40
|
"Royce Mitchell III" <ro...@ev...> wrote: > I've only got one hard drive, but I have a Zip, DVD & CD-RW. > > Hmm.. I don't really use the Zip anymore, I could try disconnecting it... > > Is ReactOS not designed yet to recognize second hard drives? The storage driver stack is designed to recognize any kind of disk drives (HD, CD, DVD and MO). I don't have a ZIP drive but it should be supported, or ignored. ;-) Eric |
From: Eric K. <ek...@rz...> - 2002-07-11 14:21:55
|
"Royce Mitchell III" <ro...@ev...> wrote: > Initializing system32\drivers\disk.sys... > Page fault at high IRQL was 12 > Bug detected code: 0x1D > Divide Error Exception: 0(2) > Processor: 0 CS:EIP 8:c00e3f98 <hal.dll: 3f98> Can you enable the debug output in disk.sys (uncomment line 36 in drivers/storage/disk/disk.c), rebuild disk.sys (type 'make disk'), install and boot it again? Eric |
From: Royce M. I. <ro...@ev...> - 2002-07-11 14:36:18
|
Absolutely, will do that this evening, if my wife doesn't have the baby first ;) ----- Original Message ----- From: "Eric Kohl" <ek...@rz...> To: <rea...@li...> Sent: Thursday, July 11, 2002 9:26 AM Subject: Re: [ros-kernel] How do I fix this? > > "Royce Mitchell III" <ro...@ev...> wrote: > > > Initializing system32\drivers\disk.sys... > > Page fault at high IRQL was 12 > > Bug detected code: 0x1D > > Divide Error Exception: 0(2) > > Processor: 0 CS:EIP 8:c00e3f98 <hal.dll: 3f98> > > Can you enable the debug output in disk.sys (uncomment line 36 in > drivers/storage/disk/disk.c), rebuild disk.sys (type 'make disk'), install > and boot it again? > > > Eric > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > PC Mods, Computing goodies, cases & more > http://thinkgeek.com/sf > _______________________________________________ > reactos-kernel mailing list > rea...@li... > https://lists.sourceforge.net/lists/listinfo/reactos-kernel > |
From: Jason F. <jas...@ya...> - 2002-07-11 17:32:24
|
Congratulations :) --- Royce Mitchell III <ro...@ev...> wrote: > Absolutely, will do that this evening, if my wife doesn't have the > baby > first ;) > > ----- Original Message ----- > From: "Eric Kohl" <ek...@rz...> > To: <rea...@li...> > Sent: Thursday, July 11, 2002 9:26 AM > Subject: Re: [ros-kernel] How do I fix this? > > > > > > "Royce Mitchell III" <ro...@ev...> wrote: > > > > > Initializing system32\drivers\disk.sys... > > > Page fault at high IRQL was 12 > > > Bug detected code: 0x1D > > > Divide Error Exception: 0(2) > > > Processor: 0 CS:EIP 8:c00e3f98 <hal.dll: 3f98> > > > > Can you enable the debug output in disk.sys (uncomment line 36 in > > drivers/storage/disk/disk.c), rebuild disk.sys (type 'make > disk'), install > > and boot it again? > > > > > > Eric > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > PC Mods, Computing goodies, cases & more > > http://thinkgeek.com/sf > > _______________________________________________ > > reactos-kernel mailing list > > rea...@li... > > https://lists.sourceforge.net/lists/listinfo/reactos-kernel > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > PC Mods, Computing goodies, cases & more > http://thinkgeek.com/sf > _______________________________________________ > reactos-kernel mailing list > rea...@li... > https://lists.sourceforge.net/lists/listinfo/reactos-kernel __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Steven E. <ste...@ya...> - 2002-07-11 18:07:33
|
Amen to that brother. Hope everything go wells Royce. --- Jason Filby <jas...@ya...> wrote: > Congratulations :) > > --- Royce Mitchell III <ro...@ev...> wrote: > > Absolutely, will do that this evening, if my wife > doesn't have the > > baby > > first ;) __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: KJK::Hyperion <no...@li...> - 2002-07-11 18:16:42
|
At 03.12 11/07/2002, you wrote: >Unfortunately, it's crashing on me. I've dug through the source code, but >I can't seem to find what's causing it... when in doubt, DPRINT it >Here's what the screen says: ok, would-be OS hacker, today's lesson: attach relevant .sym files to your crash reports, else all those addresses will have no meaning. mmmh'kay? |