From: Philip Homburg Date: Fri, 30 Sep 2005 13:02:17 +0000 (+0000) Subject: More stack space for dp8390, floppy, and fxp X-Git-Tag: v3.1.2a~679 X-Git-Url: http://zhaoyanbai.com/repos/zlib_tech.html?a=commitdiff_plain;h=58719796573bb476bb75da6023a82eb421392600;p=minix.git More stack space for dp8390, floppy, and fxp --- diff --git a/drivers/dp8390/Makefile b/drivers/dp8390/Makefile index e633e85d4..555b97c41 100644 --- a/drivers/dp8390/Makefile +++ b/drivers/dp8390/Makefile @@ -22,7 +22,7 @@ LIBPCI = $d/libpci/pci.o $d/libpci/pci_table.o all build: $(DRIVER) $(DRIVER): $(OBJ) $(LIBPCI) $(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBPCI) $(LIBS) - install -S 256w $(DRIVER) + install -S 4096 $(DRIVER) $(LIBPCI): cd $d/libpci && $(MAKE) diff --git a/drivers/floppy/Makefile b/drivers/floppy/Makefile index b9e59b974..1b44fd0d6 100644 --- a/drivers/floppy/Makefile +++ b/drivers/floppy/Makefile @@ -23,7 +23,7 @@ LIBDRIVER = $d/libdriver/driver.o $d/libdriver/drvlib.o all build: $(DRIVER) $(DRIVER): $(OBJ) $(LIBDRIVER) $(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBDRIVER) $(LIBS) - install -S 256w $(DRIVER) + install -S 4096 $(DRIVER) $(LIBDRIVER): cd $d/libdriver && $(MAKE) diff --git a/drivers/fxp/Makefile b/drivers/fxp/Makefile index 3f9ce5157..01ca57f6f 100644 --- a/drivers/fxp/Makefile +++ b/drivers/fxp/Makefile @@ -22,7 +22,7 @@ LIBPCI = $d/libpci/pci.o $d/libpci/pci_table.o all build: $(DRIVER) $(DRIVER): $(OBJ) $(LIBPCI) $(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBPCI) $(LIBS) - install -S 256w $(DRIVER) + install -S 4096 $(DRIVER) $(LIBPCI): cd $d/libpci && $(MAKE)