summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-05 10:50:25 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-05 10:50:25 -0600
commit91aed02a099b9c453db4eff2238b41079223a800 (patch)
tree501b55ff6952880d5b8bb75172c97dab98f21ae5
parenta3e328fed5759a5203f7ce631fb5f2b89dfde447 (diff)
downloadpx4-nuttx-91aed02a099b9c453db4eff2238b41079223a800.tar.gz
px4-nuttx-91aed02a099b9c453db4eff2238b41079223a800.tar.bz2
px4-nuttx-91aed02a099b9c453db4eff2238b41079223a800.zip
Fix an error in IPv6 netmask caused by a bad range in the Kconfig file
-rw-r--r--nuttx/configs/dk-tm4c129x/ipv6/defconfig2
-rw-r--r--nuttx/configs/sama5d4-ek/nsh/Make.defs2
-rwxr-xr-xnuttx/configs/sama5d4-ek/nsh/setenv.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/configs/dk-tm4c129x/ipv6/defconfig b/nuttx/configs/dk-tm4c129x/ipv6/defconfig
index 81b3becb2..b9bf29381 100644
--- a/nuttx/configs/dk-tm4c129x/ipv6/defconfig
+++ b/nuttx/configs/dk-tm4c129x/ipv6/defconfig
@@ -1007,7 +1007,7 @@ CONFIG_NSH_DRIPv6ADDR_8=0x0001
CONFIG_NSH_IPv6NETMASK_1=0xffff
CONFIG_NSH_IPv6NETMASK_2=0xffff
CONFIG_NSH_IPv6NETMASK_3=0xffff
-CONFIG_NSH_IPv6NETMASK_4=0x0000
+CONFIG_NSH_IPv6NETMASK_4=0xffff
CONFIG_NSH_IPv6NETMASK_5=0xffff
CONFIG_NSH_IPv6NETMASK_6=0xffff
CONFIG_NSH_IPv6NETMASK_7=0xffff
diff --git a/nuttx/configs/sama5d4-ek/nsh/Make.defs b/nuttx/configs/sama5d4-ek/nsh/Make.defs
index a8af35935..bce3c44a6 100644
--- a/nuttx/configs/sama5d4-ek/nsh/Make.defs
+++ b/nuttx/configs/sama5d4-ek/nsh/Make.defs
@@ -1,5 +1,5 @@
############################################################################
-# configs/sama5d4-ek/elf/Make.defs
+# configs/sama5d4-ek/nsh/Make.defs
#
# Copyright (C) 2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/sama5d4-ek/nsh/setenv.sh b/nuttx/configs/sama5d4-ek/nsh/setenv.sh
index c7a2c45a7..683adc807 100755
--- a/nuttx/configs/sama5d4-ek/nsh/setenv.sh
+++ b/nuttx/configs/sama5d4-ek/nsh/setenv.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# configs/sama5d4-ek/elf/setenv.sh
+# configs/sama5d4-ek/nsh/setenv.sh
#
# Copyright (C) 2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>