I think the lack of large disk support is a real problem here, people
who download and burn the Live CD for example, MUST disconnect there
large hard drives (2GB or higher), I would STRONGLY urge the
development of large disk support to fix this problem, plus it would
also get to the issue of actually installing on new machines which
have no smaller hard drives on them.
Best regards,
David W. Eckert
Hi!
fireball(a)svn.reactos.com wrote:
> Fix a few critical typos/mistakes (like interruptvector/interruptlevel), stdcall for thread's func, etc. Also added some "hacks" into hub's thread, but at least it leads to first steps to device enumeration.
> Driver (OHCI) bugchecks on my_pci_pool_allocation now (when trying to send URB).
>
>
in uhci_main.c I put this in,
// Probe device with real id now
uhci_pci_driver.probe(dev, uhci_pci_ids);
DPRINT1("SysIoBusNumA %d\n",DeviceExtension->SystemIoBusNumber);
DeviceExtension->SystemIoBusNumber = dev->bus->number;
DPRINT1("SysIoBusNumB %d\n",DeviceExtension->SystemIoBusNumber);
DPRINT1("InitLinuxWrapper() done\n");
The number is init with 0 than returns a one. So, is SystemIoBusNumer
the same as dev->bus->number? I think it is. But should the Linux
code init before we setup Pnp?
Thanks,
James
Hi!
fireball(a)svn.reactos.com wrote:
> Fix a few critical typos/mistakes (like interruptvector/interruptlevel), stdcall for thread's func, etc. Also added some "hacks" into hub's thread, but at least it leads to first steps to device enumeration.
> Driver (OHCI) bugchecks on my_pci_pool_allocation now (when trying to send URB).
>
>
> Updated files:
> trunk/reactos/drivers/usb/cromwell/core/hub.c
> trunk/reactos/drivers/usb/cromwell/host/ohci_main.c
> trunk/reactos/drivers/usb/cromwell/linux/linux_wrapper.h
> trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
>
I'm getting this now, it run on and on. But that is okay, my system is running
fine even with the debug output runing. Not a problem.
(drivers/usb/cromwell/sys/linuxwrapper.c:77) handle irqs
(drivers/usb/cromwell/uhci/uhci-hcd.c:1898) ERR: drivers/usb/cromwell/uhci/uhci-
hcd.c: 9d62c000: host system error, PCI problems?
(drivers/usb/cromwell/uhci/uhci-hcd.c:1900) ERR: drivers/usb/cromwell/uhci/uhci-
hcd.c: 9d62c000: host controller process error. something bad happened
(drivers/usb/cromwell/uhci/uhci-hcd.c:1902) ERR: drivers/usb/cromwell/uhci/uhci-
hcd.c: 9d62c000: host controller halted. very bad
(drivers/usb/cromwell/sys/linuxwrapper.c:103) do timer 0 fn 9d6156ca
(drivers/usb/cromwell/sys/linuxwrapper.c:77) handle irqs
(drivers/usb/cromwell/uhci/uhci-hcd.c:1898) ERR: drivers/usb/cromwell/uhci/uhci-
hcd.c: 9d62c000: host system error, PCI problems?
(drivers/usb/cromwell/uhci/uhci-hcd.c:1900) ERR: drivers/usb/cromwell/uhci/uhci-
hcd.c: 9d62c000: host controller process error. something bad happened
(drivers/usb/cromwell/uhci/uhci-hcd.c:1902) ERR: drivers/usb/cromwell/uhci/uhci-
hcd.c: 9d62c000: host controller halted. very bad
(drivers/usb/cromwell/core/hub.c:1022) hub_events() called
(drivers/usb/cromwell/core/hub.c:891) port 1, status 317, change 3, 1.5 Mb/s
(drivers/usb/cromwell/core/hub.c:876) debounce: port 1: delay 100ms stable 4 sta
tus 0x317
(drivers/usb/cromwell/core/hub.c:800) port 1 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 1 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 1 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 1 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 1 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:806) Cannot enable port 1. Maybe the USB cable
is bad?
(drivers/usb/cromwell/core/hub.c:891) port 2, status 317, change 3, 1.5 Mb/s
(drivers/usb/cromwell/core/hub.c:876) debounce: port 2: delay 100ms stable 4 sta
tus 0x317
(drivers/usb/cromwell/core/hub.c:800) port 2 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 2 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 2 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 2 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:800) port 2 not enabled, trying reset again...
(drivers/usb/cromwell/core/hub.c:806) Cannot enable port 2. Maybe the USB cable
is bad?
1) -j2 still doesn't work. It's giving me issues when compiling
wininet's resources. Almost as if it's trying to compile them before
parsing them or something similar:
Alex_Ionescu|DND wininet.rci.tmp:178:10: Error: Unexpected end of file
during preprocessing
Alex_Ionescu|DND make: *** [obj-i386/lib/wininet/version.coff] Error 1
Alex_Ionescu|DND make: *** Waiting for unfinished jobs....
Alex_Ionescu|DND make: *** Waiting for unfinished jobs....
Alex_Ionescu|DND lib/wininet/version.rc:31:13: Error: Cannot open file LONG
Alex_Ionescu|DND make: *** [obj-i386/lib/wininet/rsrc.coff] Error 1
Not using -j2 fixes this.
2) Can't boot ROS, whether or not dbg 1 or 0 is used.
I was reading the email on free PowerPC computers available. I wanted to
work on a port for powerpc a long time ago, but was shot down in the IRC
channel. I want to use pearpc and a native powerpc with FreeBSD or linux
in it to compile the project. Also since PowerPC and x86 and x64 have
different instruction sets, how will ReactOS implement the NT kernel on
non-intel architectures? I would imaging PPC-ata and X86-ata have
different addresses. And not all adapters work from x86 on ppc. Maybe
someone could work closely with Darwine to get some of this handled.
Hi All,
I am going to be meeting with my laywer on friday to file the paperwork for trademark name ReactOS
and the logo in the state of South Carolina. The filing cost is going to be $500 for the state
filing and I assume the same or about for the federal. I have to use another lawyer for the
federal filing. I am not soliciting donations but if you would like to contribute to the cause I
have setup a new paypal account for reactos.foundation(a)gmail.com
Thanks
Steven
__________________________________
Discover Yahoo!
Have fun online with music videos, cool games, IM and more. Check it out!
http://discover.yahoo.com/online.html
This avoids a problem with svn update where a directory is moved/renamed or deleted.
To get the old behaviour back set ROS_RBUILDFLAGS=-ps and do a 'make depends'.
Casper
> -----Original Message-----
> From: ros-svn-bounces(a)reactos.com [mailto:ros-svn-bounces@reactos.com] On Behalf Of
> chorns(a)svn.reactos.com
> Sent: 5. juni 2005 18:00
> To: ros-svn(a)reactos.com
> Subject: [ros-svn] [chorns] 15808: Generate proxy makefiles in output tree.
>
> Generate proxy makefiles in output tree.