#! /bin/sh /usr/share/dpatch/dpatch-run ## 09_netlink-ipv6-routing-tables.dpatch by Otto Solares ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: No description @DPATCH@ diff -ruN bird-1.1.1.orig/sysdep/linux/netlink/netlink.Y bird-1.1.1/sysdep/linux/netlink/netlink.Y --- bird-1.1.1.orig/sysdep/linux/netlink/netlink.Y 2009-06-28 01:33:51.000000000 -0600 +++ bird-1.1.1/sysdep/linux/netlink/netlink.Y 2009-08-17 11:47:45.000000000 -0600 @@ -18,13 +18,8 @@ nl_item: KERNEL TABLE expr { -#ifndef IPV6 if ($3 <= 0 || $3 >= NL_NUM_TABLES) cf_error("Kernel routing table number out of range"); -#else - if ($3 != 254) - cf_error("Linux implementation of IPv6 doesn't support multiple routing tables"); -#endif THIS_KRT->scan.table_id = $3; } ;