I've noticed that the PCI bridge optimization option was
overlooked when the experimental option was added to the config
scripts. Below is a patch which fixes this oversight, along with
"make clean"'s refusal to remove bbootsect.
BTW, doesn anyone know if I can cat a kernel image (Linux
1.3.98) to a 3.5" double-density (720k) floppy yet, or must I be
forced to use LILO?
--
Arthur D. Jerijian \ The opinions expressed in this message are mine
One man, one sinner \ only, and not UCLA's.
jerijian@seas.ucla.edu \ Go Wolves! http://coke.physics.ucla.edu/
adj@ucla.edu \ laptag/VanNuys.dir/vnhs.html
--- linux/arch/i386/config.in.orig Sat May 4 18:31:30 1996
+++ linux/arch/i386/config.in Sat May 4 18:40:50 1996
@@ -26,7 +26,9 @@
bool 'Limit memory to low 16MB' CONFIG_MAX_16M
bool 'PCI bios support' CONFIG_PCI
if [ "$CONFIG_PCI" = "y" ]; then
- bool ' PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
+ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ bool ' PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
+ fi
fi
bool 'System V IPC' CONFIG_SYSVIPC
tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
--- linux/arch/alpha/config.in.orig Sat May 4 18:36:21 1996
+++ linux/arch/alpha/config.in Sat May 4 18:35:37 1996
@@ -82,7 +82,9 @@
bool 'Echo console messages on /dev/ttyS1' CONFIG_SERIAL_ECHO
if [ "$CONFIG_PCI" = "y" ]; then
bool 'TGA Console Support' CONFIG_TGA_CONSOLE
- bool 'PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
+ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ bool 'PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
+ fi
fi
bool 'Networking support' CONFIG_NET
bool 'System V IPC' CONFIG_SYSVIPC
--- linux/arch/mips/config.in.orig Sat May 4 18:36:30 1996
+++ linux/arch/mips/config.in Sat May 4 18:36:54 1996
@@ -45,7 +45,9 @@
bool 'Networking support' CONFIG_NET
#bool 'PCI bios support' CONFIG_PCI
#if [ "$CONFIG_PCI" = "y" ]; then
-# bool ' PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
+# if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+# bool ' PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
+# fi
#fi
bool 'System V IPC' CONFIG_SYSVIPC
endmenu
--- linux/arch/ppc/config.in.orig Sat May 4 18:38:47 1996
+++ linux/arch/ppc/config.in Sat May 4 18:38:31 1996
@@ -29,7 +29,9 @@
#bool 'Limit memory to low 16MB' CONFIG_MAX_16M n
bool 'PCI bios support' CONFIG_PCI y
if [ "$CONFIG_PCI" = "y" ]; then
- bool ' PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE n
+ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ bool ' PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE n
+ fi
if [ "$CONFIG_BLK_DEV_IDE" = "y" ]; then
bool ' PCI Triton IDE Bus Master DMA support' CONFIG_BLK_DEV_TRITON y
fi
--- linux/arch/i386/boot/Makefile.orig Sat Apr 20 20:05:13 1996
+++ linux/arch/i386/boot/Makefile Sat Apr 20 20:05:48 1996
@@ -90,6 +90,7 @@
clean:
rm -f bootsect setup
+ rm -f bbootsect
rm -f zImage tools/build compressed/vmlinux.out
rm -f bzImage tools/bbuild compressed/bvmlinux.out
@$(MAKE) -C compressed clean