Disable some code in cromwell, as you get an infinite loop on some
hardware ("ERR: drivers\usb\cromwell\uhci\uhci-hcd.c: 1060: host
controller halted. very bad during boot")
Modified: trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
_____
Modified: trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
--- trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
2005-06-17 15:47:10 UTC (rev 15986)
+++ trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
2005-06-17 15:48:15 UTC (rev 15987)
@@ -118,13 +118,13 @@
ASSERT(KeGetCurrentIrql() == PASSIVE_LEVEL);
- PsCreateSystemThread(&hThread,
+ /*PsCreateSystemThread(&hThread,
THREAD_ALL_ACCESS,
NULL,
NULL,
NULL,
(PKSTART_ROUTINE)handler,
- parm);
+ parm);*/
DPRINT1("usbcore: Created system thread %d\n", (int)hThread);
New icon from mf. same as cmd icon
Modified: trunk/reactos/subsys/csrss/win32csr/res/terminal.ico
_____
Modified: trunk/reactos/subsys/csrss/win32csr/res/terminal.ico
(Binary files differ)
Get rid of obsolete makefile.
Deleted: trunk/reactos/drivers/storage/floppy/GNUmakefile
_____
Deleted: trunk/reactos/drivers/storage/floppy/GNUmakefile
--- trunk/reactos/drivers/storage/floppy/GNUmakefile 2005-06-17
13:59:47 UTC (rev 15983)
+++ trunk/reactos/drivers/storage/floppy/GNUmakefile 2005-06-17
14:00:19 UTC (rev 15984)
@@ -1,37 +0,0 @@
-# ReactOS Floppy Driver
-# Copyright (C) 2004, Vizzini (vizzini(a)plasmic.com)
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#
-# PROJECT: ReactOS Floppy Driver
-# FILE: GNUMakefile
-# PURPOSE: Makefile for ReactOS build system
-# PROGRAMMER: Vizzini (vizzini(a)plasmic.com)
-# REVISIONS:
-# 15-Feb-2004 vizzini - Created/
-
-PATH_TO_TOP = ../../..
-TARGET_BOOTSTRAP = yes
-TARGET_TYPE = driver
-TARGET_NAME = floppy
-TARGET_CFLAGS = -Wall -Werror
-TARGET_OBJECTS = floppy.o csqrtns.o hardware.o readwrite.o ioctl.o
-TARGET_DDKLIBS = csq.a
-
-DEP_OBJECTS = $(TARGET_OBJECTS)
-
-include $(PATH_TO_TOP)/rules.mak
-include $(TOOLS_PATH)/helper.mk
-include $(TOOLS_PATH)/depend.mk