From: Abraham vd M. <ab...@us...> - 2002-02-05 14:48:01
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv29649 Modified Files: ChangeLog acconfig.h configure.in Log Message: 1. Backed out my printf() function again because I realised if we don't include the C library stdarg.h there is no portable way to handle variable arguments :P If someone comes up with a hack for this, I'll add the printf() stuff again - would be useful... 2. Made UU Codec support optional. Index: ChangeLog =================================================================== RCS file: /cvsroot/blob/blob/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ChangeLog 2002/02/05 13:40:46 1.19 +++ ChangeLog 2002/02/05 14:47:54 1.20 @@ -8,8 +8,8 @@ - Added a script to automate uploading of images Abraham van der Merwe - Changed Xmodem support to be optional Abraham van der Merwe - 2d3D SA-1110 Dev Board support Abraham van der Merwe -- Added printf() support Abraham van der Merwe - First stage loader modularisation Erik Mouw +- Changed UU Codec support to be optional Abraham van der Merwe blob-2.0.5-pre2: - MD5 support Christopher Hoover Index: acconfig.h =================================================================== RCS file: /cvsroot/blob/blob/acconfig.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- acconfig.h 2002/02/04 18:02:40 1.16 +++ acconfig.h 2002/02/05 14:47:54 1.17 @@ -113,6 +113,9 @@ /* Define if Xmodem support is wanted */ #undef CONFIG_XMODEM_SUPPORT +/* Define if UU Codec support is wanted */ +#undef CONFIG_UUCODEC_SUPPORT + /* Define if JFFS2 support is wanted */ #undef CONFIG_JFFS2_SUPPORT Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- configure.in 2002/02/04 18:02:40 1.41 +++ configure.in 2002/02/05 14:47:54 1.42 @@ -332,6 +332,11 @@ [xmodem_flag=$enable_xmodem], [xmodem_flag=no]) +AC_ARG_ENABLE(uucodec, +[ --enable-uucodec Enable UU Codec support ], +[uucodec_flag=$enable_uucodec], +[uucodec_flag=no]) + AC_ARG_ENABLE(jffs2, [ --enable-jffs2 Enable support for loading kernel from jffs2], [jffs2_flag=$enable_jffs2], @@ -356,6 +361,7 @@ lcd_flag=yes md5_flag=yes xmodem_flag=yes + uucodec_flag=yes jffs2_flag=yes cramfs_flag=yes fi @@ -416,6 +422,11 @@ AC_DEFINE(CONFIG_XMODEM_SUPPORT) fi +dnl Check wether or not UU Codec support is wanted +if test "x$uucodec_flag" = "xyes"; then + AC_DEFINE(CONFIG_UUCODEC_SUPPORT) +fi + dnl Check wether or not JFFS2 support is wanted if test "x$jffs2_flag" = "xyes" ; then AC_MSG_WARN("JFFS2 support is only dummy code") @@ -537,6 +548,7 @@ echo "LCD support ${lcd_flag}" echo "MD5 support ${md5_flag}" echo "Xmodem support ${xmodem_flag}" +echo "UU Codec support ${uucodec_flag}" echo "JFFS2 support ${jffs2_flag}" echo "cramfs support ${cramfs_flag}" echo "Run-time debug information ${blob_debug_flag}" |