From 79bdfcae3d938ff5f20207e2eb17133991acf66f Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 24 Mar 2012 18:14:23 +0000 Subject: [PATCH] A few more Calypso/Compal updates git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4514 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- nuttx/ChangeLog | 8 ++++++++ nuttx/drivers/sercomm/Make.defs | 9 +++++++++ 2 files changed, 17 insertions(+) diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog index a21898f3d4..f86a29f6b5 100644 --- a/nuttx/ChangeLog +++ b/nuttx/ChangeLog @@ -2588,3 +2588,11 @@ system time with a hardware RTC. This function is called normally at power up but may also need to be called when recovering from certain low-power usage states where the system time is no longer accurate. + * arch/arm/src/calypso and arch/arm/include/calypso: Support for the TI "Calypso" + phone processor. Contributed by Denis Carilki and includes the work of Denis, + Alan Carvalho de Assis, and Stefan Richter. + * configs/compal_e88 and configs/compal_e99: Support for Compal e88 and e99 phones + Contributed by Denis Carilki and includes the work of Denis, Alan Carvalho de + Assis, and Stefan Richter. + + diff --git a/nuttx/drivers/sercomm/Make.defs b/nuttx/drivers/sercomm/Make.defs index b8ccba9570..3585f53146 100644 --- a/nuttx/drivers/sercomm/Make.defs +++ b/nuttx/drivers/sercomm/Make.defs @@ -33,8 +33,15 @@ # ############################################################################ +# File descriptor support is needed for this driver + ifneq ($(CONFIG_NFILE_DESCRIPTORS),0) +# The sercomm driver should not be build for all platforms. Only build it +# is so configured + +ifeq ($(CONFIG_SERCOMM_CONSOLE),y) + # Include serial drivers CSRCS += console.c uart.c @@ -43,4 +50,6 @@ CSRCS += console.c uart.c DEPPATH += --dep-path sercomm VPATH += :sercomm + +endif endif