Hi All.
I put two patches for 2.4.0-test10-pre3.
The first is tgafb.c.patch. It is for resolving the problem in Alpha
Architecture TGAFB is not compilable at module.
The second is ipv6_netfilter_Config.in.patch. It is also for resolving
the problem if CONFIG_IP_NF_IPTABLES is weaker than
CONFIG_IP6_NF_TARGET_MARK, kernel is not built or modules become
unresolved.
Regards
Daiki Matsuda
--- linux/net/ipv6/netfilter/Config.in.old Mon Oct 16 17:25:17 2000
+++ linux/net/ipv6/netfilter/Config.in Mon Oct 16 17:46:07 2000
@@ -42,6 +42,13 @@
if [ "$CONFIG_IP6_NF_MANGLE" != "n" ]; then
# dep_tristate ' TOS target support' CONFIG_IP6_NF_TARGET_TOS
$CONFIG_IP_NF_MANGLE
dep_tristate ' MARK target support' CONFIG_IP6_NF_TARGET_MARK
$CONFIG_IP6_NF_MANGLE
+ if [ "$CONFIG_IP6_NF_TARGET_MARK" = "y" -a "$CONFIG_IP_NF_IPTABLES" != "y" ]; then
+ define_bool CONFIG_IP_NF_IPTABLES y
+ else
+ if [ "$CONFIG_IP6_NF_TARGET_MARK" = "m" -a "$CONFIG_IP_NF_IPTABLES" = "n" ];
+then
+ define_bool CONFIG_IP_NF_IPTABLES m
+ fi
+ fi
fi
#dep_tristate ' LOG target support' CONFIG_IP6_NF_TARGET_LOG
$CONFIG_IP6_NF_IPTABLES
fi
--- linux/drivers/video/tgafb.c.old Sat Oct 7 09:06:37 2000
+++ linux/drivers/video/tgafb.c Sat Oct 7 09:36:04 2000
@@ -294,6 +294,11 @@
static void tgafb_update_palette(void);
#endif
+#ifdef MODULE
+int init_module(void);
+void cleanup_module(void);
+#endif
+
/*
* Chipset specific functions
@@ -1010,7 +1015,8 @@
void cleanup_module(void)
{
- tgafb_cleanup(void);
+ struct fb_info *info;
+ tgafb_cleanup(info);
}
#endif /* MODULE */