Dequote Kconfig strings that may be used as components of a path
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5057 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
c18b47aafb
commit
5e08e5650f
1
Makefile
1
Makefile
@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
TOPDIR := ${shell pwd | sed -e 's/ /\\ /g'}
|
TOPDIR := ${shell pwd | sed -e 's/ /\\ /g'}
|
||||||
-include ${TOPDIR}/.config
|
-include ${TOPDIR}/.config
|
||||||
|
-include ${TOPDIR}/tools/Config.mk
|
||||||
-include ${TOPDIR}/Make.defs
|
-include ${TOPDIR}/Make.defs
|
||||||
|
|
||||||
# Default tools
|
# Default tools
|
||||||
|
@ -2101,23 +2101,10 @@ static inline int lpc17_phyinit(struct lpc17_driver_s *priv)
|
|||||||
/* Disable auto-configuration. Set the fixed speed/duplex mode.
|
/* Disable auto-configuration. Set the fixed speed/duplex mode.
|
||||||
* (probably more than little redundant).
|
* (probably more than little redundant).
|
||||||
*
|
*
|
||||||
* REVISIT: Revisit the following CONFIG_PHY_CEMENT_DISABLE work-around:
|
* REVISIT: Revisit the following CONFIG_PHY_CEMENT_DISABLE work-around.
|
||||||
*
|
* It is should not needed if CONFIG_PHY_AUTONEG is defined and is known
|
||||||
* "... I found this using a LPC1768 dev board with a DP83848I PHY. I'm
|
* cause a problem for at least one PHY (DP83848I PHY). It might be
|
||||||
* using CONFIG_PHY_DP83848C for that ... I found that a static
|
* safe just to remove this elided coded for all PHYs.
|
||||||
* configuration for the PHY gave errors. I didn't investigate why.
|
|
||||||
*
|
|
||||||
* "My problem however was that autonegotiation seemingly failed -
|
|
||||||
* however on debugging I saw the calls for autonegotation were actually
|
|
||||||
* successful. I tracked the code down to [the following logic] and
|
|
||||||
* I saw that after the negotation completes, those negotiated
|
|
||||||
* parameters are then used to set a fixed speed and duplex, "just
|
|
||||||
* in case". It was that setting of a static configuration which
|
|
||||||
* failed for me."
|
|
||||||
*
|
|
||||||
* "I'm not sure if that's required for other situations or not, so I
|
|
||||||
* added a #define to optionally elide the call to cement the
|
|
||||||
* configuration. My PHY appears to be happy with this for the moment."
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CONFIG_PHY_CEMENT_DISABLE
|
#ifndef CONFIG_PHY_CEMENT_DISABLE
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
CROSSDEV = arm-elf-
|
CROSSDEV = arm-elf-
|
||||||
CC = $(CROSSDEV)gcc
|
CC = $(CROSSDEV)gcc
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
CROSSDEV = arm-elf-
|
CROSSDEV = arm-elf-
|
||||||
CC = $(CROSSDEV)gcc
|
CC = $(CROSSDEV)gcc
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
CROSSDEV = arm-elf-
|
CROSSDEV = arm-elf-
|
||||||
CC = $(CROSSDEV)gcc
|
CC = $(CROSSDEV)gcc
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
CROSSDEV = arm-elf-
|
CROSSDEV = arm-elf-
|
||||||
CC = $(CROSSDEV)gcc
|
CC = $(CROSSDEV)gcc
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
ifeq ("${CONFIG_SERCOMM_CONSOLE}","y")
|
ifeq ("${CONFIG_SERCOMM_CONSOLE}","y")
|
||||||
OSMODIR = $(TOPDIR)/../../osmocom-bb
|
OSMODIR = $(TOPDIR)/../../osmocom-bb
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
ifeq ("${CONFIG_SERCOMM_CONSOLE}","y")
|
ifeq ("${CONFIG_SERCOMM_CONSOLE}","y")
|
||||||
OSMODIR = $(TOPDIR)/../../osmocom-bb
|
OSMODIR = $(TOPDIR)/../../osmocom-bb
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
ifeq ("${CONFIG_SERCOMM_CONSOLE}","y")
|
ifeq ("${CONFIG_SERCOMM_CONSOLE}","y")
|
||||||
OSMODIR = $(TOPDIR)/../../osmocom-bb
|
OSMODIR = $(TOPDIR)/../../osmocom-bb
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
# NuttX buildroot under Linux or Cygwin
|
# NuttX buildroot under Linux or Cygwin
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the devkitARM toolchain
|
# make -- Will build for the devkitARM toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the devkitARM toolchain
|
# make -- Will build for the devkitARM toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the devkitARM toolchain
|
# make -- Will build for the devkitARM toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the devkitARM toolchain
|
# make -- Will build for the devkitARM toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the devkitARM toolchain
|
# make -- Will build for the devkitARM toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the devkitARM toolchain
|
# make -- Will build for the devkitARM toolchain
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# These are the directories where the ZDS-II toolchain is installed
|
# These are the directories where the ZDS-II toolchain is installed
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# These are the directories where the ZDS-II toolchain is installed
|
# These are the directories where the ZDS-II toolchain is installed
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# These are the directories where the ZDS-II toolchain is installed
|
# These are the directories where the ZDS-II toolchain is installed
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# These are the directories where the ZDS-II toolchain is installed
|
# These are the directories where the ZDS-II toolchain is installed
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# These are the directories where the ZDS-II toolchain is installed
|
# These are the directories where the ZDS-II toolchain is installed
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# These are the directories where the ZDS-II toolchain is installed
|
# These are the directories where the ZDS-II toolchain is installed
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# These are the directories where the ZDS-II toolchain is installed
|
# These are the directories where the ZDS-II toolchain is installed
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
ifeq ("${CONFIG_DEBUG_SYMBOLS}","y")
|
ifeq ("${CONFIG_DEBUG_SYMBOLS}","y")
|
||||||
ARCHOPTIMIZATION = -g
|
ARCHOPTIMIZATION = -g
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the CodeSourcery toolchain
|
# make -- Will build for the CodeSourcery toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the NuttX buildroot toolchain
|
# make -- Will build for the NuttX buildroot toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the NuttX buildroot toolchain
|
# make -- Will build for the NuttX buildroot toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the NuttX buildroot toolchain
|
# make -- Will build for the NuttX buildroot toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# The default value for CROSSDEV can be overridden from the make command line:
|
# The default value for CROSSDEV can be overridden from the make command line:
|
||||||
# make -- Will build for the NuttX buildroot toolchain
|
# make -- Will build for the NuttX buildroot toolchain
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
CROSSDEV = arm-elf-
|
CROSSDEV = arm-elf-
|
||||||
CC = $(CROSSDEV)gcc
|
CC = $(CROSSDEV)gcc
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
# NuttX buildroot under Linux or Cygwin
|
# NuttX buildroot under Linux or Cygwin
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include ${TOPDIR}/.config
|
include ${TOPDIR}/.config
|
||||||
|
include ${TOPDIR}/tools/Config.mk
|
||||||
|
|
||||||
# Setup for the selected toolchain
|
# Setup for the selected toolchain
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user