summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Let users modify /var/www/index.html.P. J. McDermott2014-06-054-2/+20
|
* Merge branch 'feature/init-system-improvements'.P. J. McDermott2014-06-0419-283/+332
|\
| * /etc/init.d/rc: Update copyright notice.feature/init-system-improvementsP. J. McDermott2014-06-041-2/+3
| |
| * changelog: Update.P. J. McDermott2014-06-041-0/+2
| |
| * /etc/init.d/rc.local: New service init script.P. J. McDermott2014-06-043-0/+12
| |
| * build: Support no-op "-" configs in scripts file.P. J. McDermott2014-06-041-0/+1
| |
| * /etc/rc.common: Fix tty_printf().P. J. McDermott2014-06-031-1/+3
| | | | | | | | | | | | Apparently local always returns a 0 exit status, so tty_printf() would print something (to a file named "not a tty") even if stdin was not a tty.
| * changelog: Update.P. J. McDermott2014-06-031-0/+1
| |
| * /etc/init.d/mountdevsubfs: Make more robust.P. J. McDermott2014-06-031-4/+4
| |
| * /etc/init.d/mountkernfs: Make more robust.P. J. McDermott2014-06-031-6/+14
| |
| * /etc/init.d/mdev: Make more robust.P. J. McDermott2014-06-031-7/+19
| |
| * /etc/rc.common: Make policy disable all actions.P. J. McDermott2014-06-031-1/+1
| |
| * /etc/rc.common: Fix /etc/rc.policy check.P. J. McDermott2014-06-031-2/+2
| | | | | | | | Also s/-e/-f/.
| * /etc/init.d/rc: Run logger after input loop.P. J. McDermott2014-06-031-0/+3
| | | | | | | | | | If there was no output from the service scripts after syslogd was started, the buffer wouldn't be sent to syslogd.
| * changelog: Update.P. J. McDermott2014-06-031-0/+1
| |
| * /etc/init.d/rc: Buffer output until syslogd runs.P. J. McDermott2014-06-031-1/+19
| |
| * /etc/rc.common: Better handle missing action arg.P. J. McDermott2014-06-031-1/+6
| |
| * /etc/init.d/rc: Split up /etc/rc.d/ patterns.P. J. McDermott2014-06-031-3/+8
| | | | | | | | | | | | (mini)prokit will put a service script in position S10 that will generate links in positions S20 and later. So rc needs to be able to find the new links after running the S10 link.
| * scripts: Adjust networking and mountall links.P. J. McDermott2014-06-031-2/+2
| |
| * Make core system /etc/rc.d/ links at build time.P. J. McDermott2014-06-035-15/+4
| |
| * busybox.pkg/postinst: Do scripts after net ifaces.P. J. McDermott2014-06-031-10/+10
| |
| * busybox.pkg/prerm: Fix stdin for init scripts.P. J. McDermott2014-06-031-2/+2
| |
| * busybox.pkg/postinst: Fix stdin for init scripts.P. J. McDermott2014-06-031-2/+2
| |
| * busybox.pkg/postinst: Add "\n" to /etc/rc.policy.P. J. McDermott2014-06-031-2/+2
| |
| * Make certain service scripts use PID files.P. J. McDermott2014-06-035-8/+11
| |
| * /etc/rc.common: Skip log_end() if log() not run.P. J. McDermott2014-06-031-0/+2
| | | | | | | | | | | | | | This prevents messages like the following from "enable" and "disable" actions: [ ok ] ... done.
| * /etc/rc.common: Fix K prefix in /etc/rc.d/ links.P. J. McDermott2014-06-031-1/+1
| |
| * /etc/init.d/*: Remove S and K from START and STOP.P. J. McDermott2014-06-038-15/+15
| |
| * /etc/init.d/mountall: Fix exit status.P. J. McDermott2014-06-031-1/+3
| |
| * s/-e/-f/ in maintainer scripts.P. J. McDermott2014-06-032-3/+3
| |
| * changelog: Update.P. J. McDermott2014-06-031-0/+2
| |
| * busybox.pkg/postinst: Fix network interface names.P. J. McDermott2014-06-031-1/+1
| |
| * busybox.pkg/postinst: Enable services on install.P. J. McDermott2014-06-031-1/+3
| | | | | | | | Do nothing on upgrade. Respect the user's configuration.
| * busybox.pkg/prerm: s/remove/upgrade/.P. J. McDermott2014-06-031-2/+1
| | | | | | | | | | | | busybox is Essential, so it can't be removed. Also, don't disable services. Respect the user's configuration.
| * busybox.pkg/prerm: Stop and disable services.P. J. McDermott2014-06-031-0/+6
| |
| * busybox.pkg/postinst: Start services.P. J. McDermott2014-06-031-0/+1
| |
| * changelog: Update.P. J. McDermott2014-06-021-0/+6
| |
| * build: Install /etc/rc.common.P. J. McDermott2014-06-021-0/+1
| |
| * Conditionally disable service starting.P. J. McDermott2014-06-022-0/+10
| |
| * Make most of the /etc/rc.d/ links at install time.P. J. McDermott2014-06-023-8/+17
| |
| * Add START and STOP params to most init scripts.P. J. McDermott2014-06-028-0/+23
| |
| * /etc/rc.common: Add enable and disable commands.P. J. McDermott2014-06-021-0/+22
| |
| * /etc/rc.common: Simplify command lists a bit.P. J. McDermott2014-06-021-9/+7
| |
| * Convert mount scripts to use /etc/rc.common.P. J. McDermott2014-06-024-87/+20
| |
| * /etc/init.d/rc: Don't print everything to stderr.P. J. McDermott2014-06-021-1/+1
| | | | | | | | We're printing specific messages directly to the tty now.
| * Convert some service scripts to /etc/rc.common.P. J. McDermott2014-06-027-161/+28
| |
| * /etc/rc.common: New file.P. J. McDermott2014-06-022-0/+103
|/
* changelog: Release busybox 1.21.1-4.busybox/1.21.1-4P. J. McDermott2014-05-211-1/+1
|
* Make /etc/network/ hierarchy.P. J. McDermott2014-05-193-0/+18
|
* build: Fix mode of udhcpc script.P. J. McDermott2014-05-191-1/+1
|