mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-24 12:19:49 +00:00
- updated a few copyright/left file headers
- documented most of my 0.61 changes in the ChangeLog
This commit is contained in:
parent
0d833ca7fd
commit
6859d761d3
30
Changelog
30
Changelog
@ -7,7 +7,10 @@
|
||||
New Applets:
|
||||
* Erik Andersen -- Merged several applets from tinylogin,
|
||||
namely adduser, addgroup, deluser, delgroup, getty.
|
||||
|
||||
* Robert Griebl <sandman@handhelds.org>
|
||||
-- reimplemented tinylogin applets: su, login
|
||||
-- added hwclock
|
||||
-- added uncompress
|
||||
|
||||
Other Changes:
|
||||
|
||||
@ -35,7 +38,32 @@
|
||||
* Tim Riker <Tim@Rikers.org>
|
||||
-- fix and shrink uuencode
|
||||
-- allow tty* in inittab if exist, serial console is not the issue
|
||||
* Robert Griebl <sandman@handhelds.org>
|
||||
-- added suid/sgid handling with 3 modes to busybox:
|
||||
1) completly disabled
|
||||
2) tinylogin like
|
||||
3) runtime configureable via /etc/busybox.conf
|
||||
|
||||
-- modprobe: complete rewrite, supports modules.dep, parses
|
||||
modules.conf for alias and options and can be called
|
||||
from the kernel.
|
||||
-- tar: support for -z when creating archives
|
||||
-- wget: support for -Y|--proxy=on/off and --passive-ftp
|
||||
-- vi: support for ":x"
|
||||
-- date: support for -I (ISO format)
|
||||
-- find: support for -xdev
|
||||
-- mount: support for -t in list mode, parsing of /etc/filesystems
|
||||
-- ash: support for --login (bash like)
|
||||
-- route: support for -e
|
||||
-- netstat: support for -e and -r
|
||||
-- head/tail: support for old style -[0-9] options
|
||||
-- sed: support for ! and \CregexpC
|
||||
-- pidof: support for -s
|
||||
-- nslookup: support for user specified name server
|
||||
|
||||
-- logger: fixed logging of '<' characters
|
||||
-- ash: fixed crash when run in a rxvt window
|
||||
|
||||
-Erik Andersen, --not yet released--
|
||||
|
||||
|
||||
|
@ -3,6 +3,8 @@
|
||||
* Mini date implementation for busybox
|
||||
*
|
||||
* by Matthew Grant <grantma@anathoth.gen.nz>
|
||||
*
|
||||
* iso-format handling added by Robert Griebl <griebl@gmx.de>
|
||||
*
|
||||
* 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
|
||||
|
@ -1,9 +1,24 @@
|
||||
/* vi: set sw=4 ts=4: */
|
||||
/*
|
||||
* Modprobe written from scratch for BusyBox
|
||||
* copyright (c) 2002 by Robert Griebl, griebl@gmx.de
|
||||
*
|
||||
*/
|
||||
* Copyright (c) 2002 by Robert Griebl, griebl@gmx.de
|
||||
*
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/utsname.h>
|
||||
#include <getopt.h>
|
||||
|
@ -1,9 +1,24 @@
|
||||
/* vi: set sw=4 ts=4: */
|
||||
/*
|
||||
* really dumb hwclock implementation for busybox
|
||||
* Mini hwclock implementation for busybox
|
||||
*
|
||||
* Copyright (C) 2002 Robert Griebl <griebl@gmx.de>
|
||||
*
|
||||
*/
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include <sys/utsname.h>
|
||||
|
Loading…
Reference in New Issue
Block a user