From mboxrd@z Thu Jan 1 00:00:00 1970 From: aldot at uclibc.org Date: Tue, 21 Aug 2007 06:21:45 -0700 (PDT) Subject: [Buildroot] svn commit: trunk/buildroot/target/linux Message-ID: <20070821132145.C758DA48D8@busybox.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Author: aldot Date: 2007-08-21 06:21:44 -0700 (Tue, 21 Aug 2007) New Revision: 19614 Log: - propagate IPv6 setting down to the kernel Modified: trunk/buildroot/target/linux/Makefile.in Changeset: Modified: trunk/buildroot/target/linux/Makefile.in =================================================================== --- trunk/buildroot/target/linux/Makefile.in 2007-08-21 12:09:53 UTC (rev 19613) +++ trunk/buildroot/target/linux/Makefile.in 2007-08-21 13:21:44 UTC (rev 19614) @@ -121,6 +121,12 @@ else echo "# CONFIG_AEABI is not set" >> $(LINUX26_DIR)/.config endif + $(SED) '/CONFIG_IPV6/d' $(LINUX26_DIR)/.config +ifeq ($(BR2_INET_IPV6),y) + echo "CONFIG_IPV6=y" >> $(LINUX26_DIR)/.config +else + echo "# CONFIG_IPV6 is not set" >> $(LINUX26_DIR)/.config +endif ifeq ($(BR2_TARGET_ROOTFS_INITRAMFS),y) $(SED) '/CONFIG_INITRAMFS_SOURCE/d' $(LINUX26_DIR)/.config echo "CONFIG_INITRAMFS_SOURCE=\"$(INITRAMFS_TARGET)\"" >> \