diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-21 13:21:44 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-21 13:21:44 +0000 |
commit | d1ffa06a093388fdd1fcabd0712d478757a28728 (patch) | |
tree | 0319257bb3e0816337ceb9c4858405e580565d7f /target | |
parent | 1aa33d8aab8b32b9cb21258e28666c2f4d19d809 (diff) | |
download | buildroot-novena-d1ffa06a093388fdd1fcabd0712d478757a28728.tar.gz buildroot-novena-d1ffa06a093388fdd1fcabd0712d478757a28728.zip |
- propagate IPv6 setting down to the kernel
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/Makefile.in b/target/linux/Makefile.in index d6835efd1..8123e5b09 100644 --- a/target/linux/Makefile.in +++ b/target/linux/Makefile.in @@ -121,6 +121,12 @@ ifeq ($(BR2_ARM_EABI),y) 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)\"" >> \ |