Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv7208/include/blob
Modified Files:
Makefile.am
Added Files:
xmodem.h
Log Message:
Add xmodem download (from Christopher Hoover)
Get rid of old xmodem files
--- NEW FILE: xmodem.h ---
/*-------------------------------------------------------------------------
* Filename: xmodem.h
* Version: $Id: xmodem.h,v 1.1 2002/01/05 20:21:49 erikm Exp $
* Copyright: Copyright (C) 2001, Hewlett-Packard Corporation
* Author: Christopher Hoover <ch...@hp...>
* Description: Header file for xmodem.c
* Created at: Thu Dec 20 02:13:44 PST 2001
*-----------------------------------------------------------------------*/
/*
* xmodem.h: xmodem functionality for uploading of kernels and
* the like
*
* Copyright (C) 2001, Hewlett-Packard Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ident "$Id: xmodem.h,v 1.1 2002/01/05 20:21:49 erikm Exp $"
#ifndef BLOB_XMODEM_H
#define BLOB_XMODEM_H
int XModemReceive(char *bufBase, int bufLen);
#endif
Index: Makefile.am
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Makefile.am 2001/12/19 22:53:45 1.11
+++ Makefile.am 2002/01/05 20:21:49 1.12
@@ -39,7 +39,8 @@
time.h \
types.h \
util.h \
- uucodec.h
+ uucodec.h \
+ xmodem.h
CLEANFILES = ${srcdir}/*~
|