openbcm

Git mirror of https://github.com/Broadcom-Network-Switching-Software/OpenBCM
git clone git://git.finwo.net/mirror/broadcom/openbcm
Log | Files | Refs | README

README (4089B)


      1 /*
      2  * 
      3  *
      4  * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file.
      5  * 
      6  * Copyright 2007-2019 Broadcom Inc. All rights reserved.
      7  */
      8 
      9 This package was obtained from the following location, and was modified
     10 for purposes of inclusion into the SOC diagnostics shell.
     11 
     12 Removed files:
     13 	MANIFEST Make.os9 Makefile os9.h sysos9.c testit.c unix.h
     14 
     15 Added files:
     16 	sysvxworks.c Makefile
     17 
     18 Changed functionality:
     19 	Merged unix.h into editline.h
     20 	M-P and M-N now behave like tcsh.
     21 	list_history(count) routine displays history
     22 	Commented out completion
     23 	Changed rl_complete and rl_list_possib into caller-settable
     24 		global functions
     25 	Don't ring bell on TAB if word is already complete
     26 
     27 Curt McDowell, 06/02/99
     28 
     29 ------------------------------------------------------------------------------
     30 
     31 Index of /afs/athena.mit.edu/contrib/sipb/src/editline
     32 
     33 [     ] Name                   Last modified     Size  Description
     34   ------------------------------------------------------------------------
     35 
     36  [DIR]  Parent Directory       11-May-99 03:40      -
     37  [   ]  MANIFEST               07-Jul-97 11:20     1k
     38  [   ]  Make.os9               07-Jul-97 11:20     1k
     39  [   ]  Makefile               01-Sep-97 00:34     2k
     40  [   ]  complete.c             07-Jul-97 11:20     4k
     41  [   ]  editline.3             07-Jul-97 11:20     5k
     42  [   ]  editline.c             07-Jul-97 11:20    25k
     43  [   ]  editline.h             07-Jul-97 11:20     2k
     44  [   ]  os9.h                  07-Jul-97 11:20     1k
     45  [   ]  sysos9.c               07-Jul-97 11:20     1k
     46  [   ]  sysunix.c              07-Jul-97 11:20     3k
     47  [   ]  testit.c               07-Jul-97 11:20     1k
     48  [   ]  unix.h                 07-Jul-97 11:20     1k
     49 
     50   ------------------------------------------------------------------------
     51 
     52 $Revision: 1.1 $
     53 
     54 This is a line-editing library.  It can be linked into almost any
     55 program to provide command-line editing and recall.
     56 
     57 It is call-compatible with the FSF readline library, but it is a
     58 fraction of the size (and offers fewer features).  It does not use
     59 standard I/O.  It is distributed under a "C News-like" copyright.
     60 
     61 Configuration is done in the Makefile.  Type "make testit" to get
     62 a small slow shell for testing.
     63 
     64 This contains some changes since the posting to comp.sources.misc:
     65     -   Bugfix for completion on absolute pathnames.
     66     -   Better handling of M-n versus showing raw 8bit chars.
     67     -   Better signal handling.
     68     -   Now supports termios/termio/sgttyb ioctl's.
     69     -   Add M-m command to toggle how 8bit data is displayed.
     70 The following changes, made since the last public release, come from
     71 J.G. Vons <vons@cesar.crbca1.sinet.slb.com>:
     72     -   History-searching no longer redraws the line wrong
     73     -   Added ESC-ESC as synonym for ESC-?
     74     -   SIGQUIT (normally ^\) now sends a signal, not indicating EOF.
     75     -   Fixed some typo's and unclear wording in the manpage.
     76     -   Fixed completion when all entries shared a common prefix.
     77     -   Fixed some meta-char line-redrawing bugs.
     78 
     79 Enjoy,
     80         Rich $alz
     81         <rsalz@osf.org>
     82 
     83  Copyright 1992,1993 Simmule Turner and Rich Salz.  All rights reserved.
     84 
     85  This software is not subject to any license of the American Telephone
     86  and Telegraph Company or of the Regents of the University of California.
     87 
     88  Permission is granted to anyone to use this software for any purpose on
     89  any computer system, and to alter it and redistribute it freely, subject
     90  to the following restrictions:
     91  1. The authors are not responsible for the consequences of use of this
     92     software, no matter how awful, even if they arise from flaws in it.
     93  2. The origin of this software must not be misrepresented, either by
     94     explicit claim or by omission.  Since few users ever read sources,
     95     credits must appear in the documentation.
     96  3. Altered versions must be plainly marked as such, and must not be
     97     misrepresented as being the original software.  Since few users
     98     ever read sources, credits must appear in the documentation.
     99  4. This notice may not be removed or altered.