summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-07-14 21:21:08 +0000
committerEric Andersen <andersen@codepoet.org>2003-07-14 21:21:08 +0000
commitcb81e6484d1f50ec2761f6294722407b14add525 (patch)
tree81fb6290ef50af3488a5ee0f97150b6503df6a3f /shell
parent74f270a3177a43b29d98b6c5b6a2c5338be8b98f (diff)
downloadbusybox-w32-cb81e6484d1f50ec2761f6294722407b14add525.tar.gz
busybox-w32-cb81e6484d1f50ec2761f6294722407b14add525.tar.bz2
busybox-w32-cb81e6484d1f50ec2761f6294722407b14add525.zip
Update a bunch of docs. Run a script to update my email addr.
Diffstat (limited to 'shell')
-rw-r--r--shell/Makefile2
-rw-r--r--shell/Makefile.in2
-rw-r--r--shell/ash.c2
-rw-r--r--shell/cmdedit.c2
-rw-r--r--shell/hush.c18
-rw-r--r--shell/lash.c3
-rw-r--r--shell/msh.c4
7 files changed, 17 insertions, 16 deletions
diff --git a/shell/Makefile b/shell/Makefile
index f3b1042e6..a08219262 100644
--- a/shell/Makefile
+++ b/shell/Makefile
@@ -1,6 +1,6 @@
1# Makefile for busybox 1# Makefile for busybox
2# 2#
3# Copyright (C) 1999-2002 Erik Andersen <andersee@debian.org> 3# Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
4# 4#
5# This program is free software; you can redistribute it and/or modify 5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by 6# it under the terms of the GNU General Public License as published by
diff --git a/shell/Makefile.in b/shell/Makefile.in
index a5778d6fd..c5be7ba79 100644
--- a/shell/Makefile.in
+++ b/shell/Makefile.in
@@ -1,6 +1,6 @@
1# Makefile for busybox 1# Makefile for busybox
2# 2#
3# Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org> 3# Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
4# 4#
5# This program is free software; you can redistribute it and/or modify 5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by 6# it under the terms of the GNU General Public License as published by
diff --git a/shell/ash.c b/shell/ash.c
index fb65c2da0..1a91f40cd 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -25,7 +25,7 @@
25 * This version of ash is adapted from the source in Debian's ash 0.3.8-5 25 * This version of ash is adapted from the source in Debian's ash 0.3.8-5
26 * package. 26 * package.
27 * 27 *
28 * Modified by Erik Andersen <andersee@debian.org> and 28 * Modified by Erik Andersen <andersen@codepoet.org> and
29 * Vladimir Oleynik <dzo@simtreas.ru> to be used in busybox 29 * Vladimir Oleynik <dzo@simtreas.ru> to be used in busybox
30 * 30 *
31 * 31 *
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index 3cbdce0ef..350c0fd86 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -9,7 +9,7 @@
9 * Adam Rogoyski <rogoyski@cs.utexas.edu> 9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com> 10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995 11 * Jakub Jelinek (c) 1995
12 * Erik Andersen <andersee@debian.org> (Majorly adjusted for busybox) 12 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
13 * 13 *
14 * This code is 'as is' with no warranty. 14 * This code is 'as is' with no warranty.
15 * 15 *
diff --git a/shell/hush.c b/shell/hush.c
index 94b29c03d..84818ffa3 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -9,14 +9,16 @@
9 * 9 *
10 * Credits: 10 * Credits:
11 * The parser routines proper are all original material, first 11 * The parser routines proper are all original material, first
12 * written Dec 2000 and Jan 2001 by Larry Doolittle. 12 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
13 * The execution engine, the builtins, and much of the underlying 13 * execution engine, the builtins, and much of the underlying
14 * support has been adapted from busybox-0.49pre's lash, 14 * support has been adapted from busybox-0.49pre's lash, which is
15 * which is Copyright (C) 2000 by Lineo, Inc., and 15 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
16 * written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>. 16 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
17 * That, in turn, is based in part on ladsh.c, by Michael K. Johnson and 17 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
18 * Erik W. Troan, which they placed in the public domain. I don't know 18 * Troan, which they placed in the public domain. I don't know
19 * how much of the Johnson/Troan code has survived the repeated rewrites. 19 * how much of the Johnson/Troan code has survived the repeated
20 * rewrites.
21 *
20 * Other credits: 22 * Other credits:
21 * simple_itoa() was lifted from boa-0.93.15 23 * simple_itoa() was lifted from boa-0.93.15
22 * b_addchr() derived from similar w_addchar function in glibc-2.2 24 * b_addchr() derived from similar w_addchar function in glibc-2.2
diff --git a/shell/lash.c b/shell/lash.c
index 8f864b355..1fcd63bdf 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -2,8 +2,7 @@
2/* 2/*
3 * lash -- the BusyBox Lame-Ass SHell 3 * lash -- the BusyBox Lame-Ass SHell
4 * 4 *
5 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen 5 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
7 * 6 *
8 * Based in part on ladsh.c by Michael K. Johnson and Erik W. Troan, which is 7 * Based in part on ladsh.c by Michael K. Johnson and Erik W. Troan, which is
9 * under the following liberal license: "We have placed this source code in the 8 * under the following liberal license: "We have placed this source code in the
diff --git a/shell/msh.c b/shell/msh.c
index aad6bbf35..a142c451a 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -3,12 +3,12 @@
3 * Minix shell port for busybox 3 * Minix shell port for busybox
4 * 4 *
5 * This version of the Minix shell was adapted for use in busybox 5 * This version of the Minix shell was adapted for use in busybox
6 * by Erik Andersen <andersee@debian.org> 6 * by Erik Andersen <andersen@codepoet.org>
7 * 7 *
8 * - backtick expansion did not work properly 8 * - backtick expansion did not work properly
9 * Jonas Holmberg <jonas.holmberg@axis.com> 9 * Jonas Holmberg <jonas.holmberg@axis.com>
10 * Robert Schwebel <r.schwebel@pengutronix.de> 10 * Robert Schwebel <r.schwebel@pengutronix.de>
11 * Erik Andersen <andersee@debian.org> 11 * Erik Andersen <andersen@codepoet.org>
12 * 12 *
13 * This program is free software; you can redistribute it and/or modify 13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by 14 * it under the terms of the GNU General Public License as published by