Re: Linux 2.1.69..

Kirk Petersen (kirk@eidolon.speakeasy.org)
Mon, 1 Dec 1997 19:49:16 -0800 (PST)


> I made a 2.1.69 release that fixes up some of the more obvious problems
> with 2.1.68 wrt the sound driver and the fact that 68 can lock up

Can you add the following patch to the next kernel? It fixes the
"unresolved symbol" problem that many people have reported with 2.1.69.
It also makes CONFIG_UNIX default to Y on all architectures. Thanks.

Bye,
Kirk

kirk@muppetlabs.com
http://www.muppetlabs.com/~kirk/

--- cut here ---

diff -u --recursive --new-file v2.1.69/linux/arch/alpha/defconfig linux/arch/alpha/defconfig
--- v2.1.69/linux/arch/alpha/defconfig Mon Dec 1 19:02:02 1997
+++ linux/arch/alpha/defconfig Mon Dec 1 19:03:38 1997
@@ -78,6 +78,7 @@
# CONFIG_NETLINK is not set
# CONFIG_FIREWALL is not set
# CONFIG_NET_ALIAS is not set
+CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ACCT is not set
diff -u --recursive --new-file v2.1.69/linux/arch/m68k/defconfig linux/arch/m68k/defconfig
--- v2.1.69/linux/arch/m68k/defconfig Mon Dec 1 19:02:08 1997
+++ linux/arch/m68k/defconfig Mon Dec 1 19:03:52 1997
@@ -79,6 +79,7 @@
# CONFIG_NETLINK is not set
# CONFIG_FIREWALL is not set
# CONFIG_NET_ALIAS is not set
+CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ACCT is not set
diff -u --recursive --new-file v2.1.69/linux/arch/mips/defconfig linux/arch/mips/defconfig
--- v2.1.69/linux/arch/mips/defconfig Mon Dec 1 19:02:16 1997
+++ linux/arch/mips/defconfig Mon Dec 1 19:04:03 1997
@@ -81,6 +81,7 @@
# CONFIG_NETLINK is not set
# CONFIG_FIREWALL is not set
# CONFIG_NET_ALIAS is not set
+CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ACCT is not set
diff -u --recursive --new-file v2.1.69/linux/arch/ppc/defconfig linux/arch/ppc/defconfig
--- v2.1.69/linux/arch/ppc/defconfig Mon Dec 1 19:02:22 1997
+++ linux/arch/ppc/defconfig Mon Dec 1 19:04:14 1997
@@ -118,6 +118,7 @@
# CONFIG_NETLINK is not set
# CONFIG_FIREWALL is not set
# CONFIG_NET_ALIAS is not set
+CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ACCT is not set
diff -u --recursive --new-file v2.1.69/linux/arch/sparc/defconfig linux/arch/sparc/defconfig
--- v2.1.69/linux/arch/sparc/defconfig Mon Dec 1 19:02:29 1997
+++ linux/arch/sparc/defconfig Mon Dec 1 19:04:25 1997
@@ -87,6 +87,7 @@
CONFIG_FIREWALL=y
# CONFIG_NET_SECURITY is not set
CONFIG_NET_ALIAS=y
+CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_FIREWALL=y
diff -u --recursive --new-file v2.1.69/linux/arch/sparc64/defconfig linux/arch/sparc64/defconfig
--- v2.1.69/linux/arch/sparc64/defconfig Mon Dec 1 19:02:36 1997
+++ linux/arch/sparc64/defconfig Mon Dec 1 19:04:43 1997
@@ -90,6 +90,7 @@
# CONFIG_NETLINK is not set
# CONFIG_FIREWALL is not set
# CONFIG_NET_ALIAS is not set
+CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ACCT is not set
diff -u --recursive --new-file v2.1.69/linux/net/netsyms.c linux/net/netsyms.c
--- v2.1.69/linux/net/netsyms.c Mon Dec 1 01:25:34 1997
+++ linux/net/netsyms.c Mon Dec 1 01:16:50 1997
@@ -165,6 +165,10 @@
EXPORT_SYMBOL(scm_detach_fds);
#endif

+#ifdef CONFIG_UNIX_MODULE
+EXPORT_SYMBOL(csum_partial);
+#endif
+
#ifdef CONFIG_INET
/* Internet layer registration */
EXPORT_SYMBOL(inet_add_protocol);