English Language flag
// Log In
// CVSweb
Project: FreeWRT
// Summary // Activity // Search // Tracker // Lists // News // SCM // Wiki

SCM Repository

ViewVC logotype

Log of /branches/common-nfo/package/base-files/files/etc/init.d/boot

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (annotate)
Sticky Revision:

Revision 3427 - (view) (download) (annotate) - [select for diffs]
Modified Wed Aug 8 11:08:41 2007 UTC (6 years, 6 months ago) by tg
File length: 580 byte(s)
Diff to previous 3265
merge in trunk rev. 3426

Revision 3265 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jul 18 12:45:43 2007 UTC (6 years, 7 months ago) by tg
File length: 569 byte(s)
Diff to previous 3235
copy trunk/freewrt r3264 into a new branch for making the nfo system
because upgrading the old adk branch would be a hell more work


Revision 3235 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jul 16 15:33:09 2007 UTC (6 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/boot
File length: 569 byte(s)
Diff to previous 3119
now that we HAVE mksh, we can use it…


Revision 3119 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jul 4 10:45:13 2007 UTC (6 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/boot
File length: 598 byte(s)
Diff to previous 2653
(untested) if shutting down, first put off the power led, so we know
ok wbx@


Revision 2653 - (view) (download) (annotate) - [select for diffs]
Modified Thu May 24 10:23:28 2007 UTC (6 years, 9 months ago) by tg
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/boot
File length: 506 byte(s)
Diff to previous 2485
• base-files/files/etc/init.d/rcK, base-files/files/etc/init.d/rcS:
  do correct shebang processing, like the BSD kernel and mksh: get
  first line of script to run if it begins with "#!", strip that and
  any leading space/tab off, then get shell name (terminates with
  space/tab/end of string) and shell argument quoting according to
  unix common proceedings; use /bin/sh as interpreter if none could
  be found
• mk/package.mk: ensure all init scripts are 0755 by default
• busybox: flesh out inetd init script, so that all init scripts in
  FreeWRT either can be found with -path \*/init.d/\* or -name \*.init
• other packages: add #!/bin/sh shebang line to init scripts¹, bump dashver

¹) change this to /bin/ash if you use ash-specific features that mksh
   can also do; never use ash-specific features that mksh cannot do (are
   there any?), change to /bin/mksh if you use mksh-specific features
   and add a run-time dependency on mksh in that case


Revision 2485 - (view) (download) (annotate) - [select for diffs]
Modified Sat May 12 22:36:00 2007 UTC (6 years, 9 months ago) by tg
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/boot
File length: 496 byte(s)
Copied from: trunk/freewrt/package/base-files/files/etc/init.d/S10boot revision 2471
Diff to previous 2355
by request of wbx@:

make it possible for users to do
| /etc/init.d/<foo> restart
instead of having to do
| /etc/init.d/S*<foo> restart
by moving the order into a magickal™ comment.

Untested.

Also remove the svn:executable properties, because rcS and rcK will
always call them with /bin/sh, and bump dashvers accordingly.


Revision 2355 - (view) (download) (annotate) - [select for diffs]
Modified Thu Apr 12 20:55:29 2007 UTC (6 years, 10 months ago) by austriancoder
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/S10boot
File length: 428 byte(s)
Diff to previous 2165
Let powerled flash from boot until system is ready - tested on wl500gp"

If there exists a better solution, let me know it.




Revision 2165 - (view) (download) (annotate) - [select for diffs]
Modified Tue Mar 13 22:52:53 2007 UTC (6 years, 11 months ago) by tg
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/S10boot
File length: 351 byte(s)
Diff to previous 837
• /etc/preinit.arch is sourced, doesn't need to be executable
  or have a shebang line
• also, whitespace cleanup and simplification
• new: /etc/init.d/rcK calls /etc/rc.shutdown¹ and then /etc/init.d/K* scripts
  just like /etc/init.d/rc.S runs /etc/init.d/S* scripts and then /etc/rc.local
  -> derived from PR#246, thanks for the input, agreed to commit wbx@
• /etc/S* and /etc/K* scripts do not need to be executable any more or
  have a shebang line, they're called from /bin/sh now
• new: /etc/init.d/K20hotplug, from PR#246
• new: /etc/init.d/K00wan, from /etc/profile (“reboot” function), ok wbx@
• remove /etc/version – even wbx@ was surprised it still exists
• /etc/S* and /etc/K* scripts, /etc/init.d/rcS and /etc/init.d/rcK
  now sanitise $PATH
• clean up /etc/profile
• /sbin/hotplug now calls its scripts from /etc/hotplug.d/ with /bin/sh
  instead of sourcing them, thus being more reliable
• simplify /sbin/hotplug

¹) just like /etc/rc.local, /etc/rc.shutdown SHALL NEVER be created by ADK.
   It's for the user to play with ONLY.


Revision 837 - (view) (download) (annotate) - [select for diffs]
Modified Tue Oct 3 18:02:12 2006 UTC (7 years, 4 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/S10boot
File length: 361 byte(s)
Diff to previous 719
fix hostname, does not work with ash, thx AndyCap for reporting

Revision 719 - (view) (download) (annotate) - [select for diffs]
Modified Mon Sep 25 21:16:56 2006 UTC (7 years, 5 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/S10boot
File length: 358 byte(s)
Diff to previous 681
* add PKG_VERSION to every package in default selection
* add broadcom-scripts package as default for 1.0, it adds
  network and switch configuration scripts to base
  suggested by markus to separate these from webif package
* move ed to application and disable by default, sorry tg, but
  not everybody needs it
* be sure that if broadcom-scripts are installed, new ifup/ifdown
  network configuration is not used



Revision 681 - (view) (download) (annotate) - [select for diffs]
Modified Sat Sep 23 22:44:27 2006 UTC (7 years, 5 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/files/etc/init.d/S10boot
File length: 688 byte(s)
Diff to previous 608
move default to standard dir files

Revision 608 - (view) (download) (annotate) - [select for diffs]
Modified Sat Sep 16 17:33:16 2006 UTC (7 years, 5 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/default/etc/init.d/S10boot
File length: 688 byte(s)
Diff to previous 607
revert, tg is awake and controlling my bad commits

Revision 607 - (view) (download) (annotate) - [select for diffs]
Modified Sat Sep 16 17:18:52 2006 UTC (7 years, 5 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/default/etc/init.d/S10boot
File length: 629 byte(s)
Diff to previous 588
use a default /etc/hostname

Revision 588 - (view) (download) (annotate) - [select for diffs]
Modified Tue Sep 12 18:11:35 2006 UTC (7 years, 5 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/default/etc/init.d/S10boot
File length: 691 byte(s)
Diff to previous 276
merge wbx-target-cleanup to trunk.
- mk directory for some top level makefiles (build.mk,vars.mk)
- add a separate configfs partition to all models, 128 kb big
- add model and platform specific startup files and kernel configs
- delete target/linux/package, add all addon kernel packages to packages
- simplify target/linux/brcm-2.4/Makefile, abstraction to mk/ comes later
- add target/image directory, place where the different images are created
- default off for all extra packages, be sure that you enable all packages
  you need to get a dsl-capable router. snapshots will be created by a specific config which contains all needed stuff (iptables, pppoe, pptp, haserl, webif)



Revision 276 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jul 17 04:11:18 2006 UTC (7 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/base-files/default/etc/init.d/S10boot
File length: 696 byte(s)
Diff to previous 271
this is FreeWRT not OpenWrt


Revision 271 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jul 17 03:19:26 2006 UTC (7 years, 7 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/default/etc/init.d/S10boot
File length: 788 byte(s)
Diff to previous 25
use old S10boot

Revision 25 - (view) (download) (annotate) - [select for diffs]
Modified Sat Jun 10 08:16:49 2006 UTC (7 years, 8 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/default/etc/init.d/S10boot
File length: 570 byte(s)
Diff to previous 1
change default hostname, no need to start busybox httpd

Revision 1 - (view) (download) (annotate) - [select for diffs]
Added Sat May 27 15:00:14 2006 UTC (7 years, 9 months ago) by wbx
Original Path: trunk/freewrt/package/base-files/default/etc/init.d/S10boot
File length: 570 byte(s)
add OpenWrt trunk revision 3830. 



This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

root@freewrt.org:443
ViewVC Help
Powered by ViewVC 1.1.20