From: Kyungmin Park Date: Wed, 24 Feb 2010 07:00:22 +0000 (+0900) Subject: Add CONFIG_XYZMODEM configuration option X-Git-Tag: JB16_20100224 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80e0327460c9d54758c2528af439432596800929;p=kernel%2Fu-boot.git Add CONFIG_XYZMODEM configuration option Signed-off-by: Kyungmin Park --- 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