Richard and I can't get the ros cvs build to boot...I get stuck on a
black screen, and he gets a freeze on ndis.sys as well as a blackscreen
if running the bootcd.
Can anyone confirm?
Best regards,
Alex Ionescu
Hi arty,
Immediately after your answer on #reactos,
I did make clean in drivers/lib/ip and drivers/net/tcpip.
The problem is still here.
I even tried doing make clean in drivers/ to be sure.
Usurp.
"You believe its the year 2004,
when in fact it's closer to 1984."
Matrix / 1984.
-----Message d'origine-----
De : art yerkes [mailto:ayerkes@speakeasy.net]
Envoyé : vendredi 8 octobre 2004 03:50
À : ReactOS Development List
Cc : jimtabor(a)adsl-64-217-116-74.dsl.hstntx.swbell.net
Objet : Re: [ros-dev] Re: [ros-cvs] CVS Update: reactos tcpip
On Fri, 08 Oct 2004 00:54:07 +0000
James Tabor <jimtabor(a)adsl-64-217-116-74.dsl.hstntx.swbell.net> wrote:
You need to make clean in drivers/lib/ip and drivers/net/tcpip. Hopefully
this will be the last time.
--
Hey, Adam Smith, keep your invisible hands to yourself!
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.com
http://reactos.com:8080/mailman/listinfo/ros-dev
----------------------------------------------------------------------------
Ce message ainsi que toutes pièces jointes (le "message") sont confidentiels
et sont exclusivement destinés à l'usage de la personne à laquelle ils sont
adressés. Tout point de vue ou toute opinion contenus dans ce message
expriment la pensée personnelle de leur auteur et ne représentent pas
nécessairement la position des sociétés du Groupe GEFCO. Si vous n'êtes pas
la personne à laquelle ce message est destiné, veuillez noter que vous avez
reçu cet e-mail par erreur et qu'il vous est strictement interdit
d'utiliser, de diffuser, de transférer, d'imprimer ou de copier ce message.
Si vous avez reçu ce message par erreur, merci de contacter la personne qui
vous l'a adressé et de l'effacer immédiatement. Les sociétés du Groupe GEFCO
déclinent toute responsabilité en cas d'altération, de modification,
d'édition, de diffusion sans autorisation de ce message ou en cas
d'affection de ce message par un virus.
This message and any attachments (the "message") are confidential and
intended solely for the use of the individual to whom they are addressed.
Any views or opinions presented are solely those of the author and do not
necessarily represent those of the GEFCO Group of Companies. If you are not
the intended recipient, be advised that you have received this email in
error and that any use, dissemination, forwarding, printing, or copying of
this message is strictly prohibited. If you have received this message in
error please contact the sender and delete the message immediately. The
GEFCO Group of Companies shall not be liable for the message if altered,
changed, falsified, edited, diffused without authorization or affected by
any virus.
----------------------------------------------------------------------------
Hello,
OpenOffice will load if you copy a working install from a Windows box
but we have some major problems in painting in the program. Is anyone
interested in looking at it?
Thanks
Steven
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail
Hello,
Arty and I played around a bit with the busybox dhcpd for Windows and I
was able to get it to run under Wine and give a address to my IP phone
and Art said that it should work under ReactOS once we implement
gethostbyname and gethostname. Does anyone want to take a stab at
implementing these? Art has said that a good deal of the functionality
is implemented in dnsapi.
Thanks
Steven
_______________________________
Do you Yahoo!?
Declare Yourself - Register online to vote today!
http://vote.yahoo.com
> From: Ge van Geldorp
>
> Log message:
> -Don't define COBJMACROS in objbase.h.
> Update the Wine sources accordingly.
I know this will cause warnings during shell32 compilation ("warning:
"COBJMACROS" redefined"), will fix this with the next Wine sync.
Gé van Geldorp.
<ion(a)cvs.reactos.com> wrote:
> CVSROOT: /CVS/ReactOS
> Module name: reactos
> Repository: reactos/ntoskrnl/mm/
> Changes by: ion(a)mok.osexperts.com 04/10/04 14:38:49
>
> Modified files:
> ./: config rules.mak
> reactos/include/ntdll/: rtl.h
> reactos/ntoskrnl/: Makefile
> reactos/ntoskrnl/include/internal/i386/: mm.h
> reactos/ntoskrnl/ke/i386/: multiboot.S
> reactos/ntoskrnl/mm/: mminit.c
>
> Log message:
> Un-hardcoded the 0xC0000000 value, and stuck the define in one single
> place both for ASM and C code. This define is 0x80000000 by default, but
> automatically sets itself to 0xC0000000 if 3GB is set to 1 in
> reactos/config. This option is turned on by default for now, because the
> Default heap is at 0xA0000000, which doesn't work on a non 3GB system.
> Lower values seem to crash Win32K but I fill figure out a solution.
I tried a NULL base address in the call to RtlCreateHeap (in
lib/ntdll/ldr/startup.c) and regedit (WIN32 app) works very well. The NULL
base address enables the default bottom-up memory allocation so the heap
will be allocated from the bootom of the process address space just like
Windows does. HEAP_BASE should have been removed ages ago.
Regards,
Eric
Is Sanos`s implementation of ndis and rtl8139 driver etc.
interesting for ReactOS developers ?
http://www.jbox.dk/sanos/index.htm
Regards, David
--
David Kredba <kredba at ibot.cas.cz>
GPG: ID 1024D/5B6B02DE
Fingerprint: F0B3312596BEDCF91DFB 0699E06AACD75B6B02DE
>From current CVS, running in whole-page alloc mode, I see a buffer
overrun in lib/rtl/acl.c early in the boot process. What I see is
a few calls to RtlpAddKnownAce which slowly overgrow the available
buffer. The following patch fixes it, but I don't know if it's
right as I'm not sure if AclSize should be adjusted. The reason
a patch like this is needed is that AclSize is checked against
the size of the Sid to be copied in, but that size never changes
so as many sids as desired could be copied in without the check
at line 136 going off, thus overrunning available space.
--
Hey, Adam Smith, keep your invisible hands to yourself!
Hi Hartmut,
Thanks for the commit, I wasn't sure how to fix those!
Best Regards,
Alex Ionescu
Hartmut Birr wrote:
>CVSROOT: /CVS/ReactOS
>Module name: reactos
>Repository: reactos/ntoskrnl/ke/i386/
>Changes by: hbirr(a)mok.osexperts.com 04/10/05 11:53:28
>
>Modified files:
> reactos/ntoskrnl/mm/i386/: page.c
> reactos/ntoskrnl/ke/i386/: multiboot.S
>
>Log message:
> - Removed some hard coded values, which depend on a kernel base of 0xc0000000.
>
>_______________________________________________
>Ros-cvs mailing list
>Ros-cvs(a)reactos.com
>http://reactos.com/mailman/listinfo/ros-cvs
>
>
>