From 3f78ddb2fa1c6dc4a6342efe9a86e99c0d47584b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 27 Jun 2014 07:07:59 -0600 Subject: [PATCH 1/5] Fix Kconfig typo --- configs/sama5d4-ek/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/sama5d4-ek/Kconfig b/configs/sama5d4-ek/Kconfig index 0b45ed29aba..de0141c8a48 100644 --- a/configs/sama5d4-ek/Kconfig +++ b/configs/sama5d4-ek/Kconfig @@ -50,7 +50,7 @@ config SAMA5D4EK_DRAM_MAIN by SAMA5D4EK_DRAM_START. NOTE: If you use this boot loader, then your program must be built at - origin 0x2000:0000, not at 0x2100:0000 as is customary with U-Boot. + origin 0x2000:0000, not at 0x2000:8000 as is customary with U-Boot. config SAMA5D4EK_DRAM_START bool "Start DRAM program" @@ -71,7 +71,7 @@ config SAMA5D4EK_DRAM_BOOT Select this option if you are going to boot using the sdram_main bootloader (created with SAMA5D4EK_DRAM_MAIN=y). This selection will simply origin your program at 0x2000:0000 as required by the - sdram_main bootloader (vs. 0x2100:0000 as required by U-Boot). + sdram_main bootloader (vs. 0x2000:8000 as required by U-Boot). config SAMA5D4EK_NAND_AUTOMOUNT bool "NAND FLASH auto-mount" From 33121dd0d03cd000e7218e2f560c663fca8b2152 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 27 Jun 2014 08:14:07 -0600 Subject: [PATCH 2/5] Various changes associated with symbol tables. Most from Pelle Windestam --- Documentation/NuttXNxFlat.html | 7 ++- configs/README.txt | 2 +- include/cxx/cunistd | 2 +- include/inttypes.h | 15 +++--- include/nuttx/math.h | 8 ++++ include/unistd.h | 4 +- libc/README.txt | 2 +- libc/fixedmath/Make.defs | 2 +- libc/{lib.csv => libc.csv} | 5 +- libc/math.csv | 73 +++++++++++++++++++++++++++++ libc/math/Make.defs | 2 +- libc/{fixedmath => math}/lib_rint.c | 2 + tools/README.txt | 2 +- tools/mksymtab.c | 1 + 14 files changed, 107 insertions(+), 20 deletions(-) rename libc/{lib.csv => libc.csv} (99%) create mode 100644 libc/math.csv rename libc/{fixedmath => math}/lib_rint.c (99%) diff --git a/Documentation/NuttXNxFlat.html b/Documentation/NuttXNxFlat.html index 41b2a19ee9f..89b415041b5 100644 --- a/Documentation/NuttXNxFlat.html +++ b/Documentation/NuttXNxFlat.html @@ -407,7 +407,10 @@ any following arguments. nuttx/syscall/syscall.csv that describes the NuttX RTOS interface, and
  • - nuttx/libc/lib.csv that describes the NuttX C library interface. + nuttx/libc/libc.csv that describes the NuttX C library interface. +
  • +
  • + nuttx/libc/math.cvs that descirbes any math library.