From 80e0327460c9d54758c2528af439432596800929 Mon Sep 17 00:00:00 2001 From: Kyungmin Park Date: Wed, 24 Feb 2010 16:00:22 +0900 Subject: [PATCH] Add CONFIG_XYZMODEM configuration option Signed-off-by: Kyungmin Park --- common/Makefile | 2 +- include/config_defaults.h | 1 + include/configs/s5pc1xx_universal.h | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/common/Makefile b/common/Makefile index 8d93cb4..72c2365 100644 --- a/common/Makefile +++ b/common/Makefile @@ -39,7 +39,7 @@ COBJS-y += memsize.o COBJS-y += s_record.o COBJS-$(CONFIG_SERIAL_MULTI) += serial.o COBJS-y += stdio.o -COBJS-y += xyzModem.o +COBJS-$(CONFIG_XYZMODEM) += xyzModem.o # core command COBJS-y += cmd_boot.o diff --git a/include/config_defaults.h b/include/config_defaults.h index 19f19c7..a5da01c 100644 --- a/include/config_defaults.h +++ b/include/config_defaults.h @@ -17,5 +17,6 @@ #define CONFIG_GZIP 1 #define CONFIG_ZLIB 1 #define CONFIG_CRC16 1 +#define CONFIG_XYZMODEM 1 #endif diff --git a/include/configs/s5pc1xx_universal.h b/include/configs/s5pc1xx_universal.h index 0883f6b..0ae81ef 100644 --- a/include/configs/s5pc1xx_universal.h +++ b/include/configs/s5pc1xx_universal.h @@ -123,6 +123,7 @@ #define CONFIG_CMD_DEVICE_POWER #undef CONFIG_CRC16 +#undef CONFIG_XYZMODEM #define CONFIG_SYS_64BIT_VSPRINTF 1 -- 2.7.4