Roy Marples
1a6451654f
We no longer use bool in our public headers, using int instead.
2007-09-25 17:19:02 +00:00
Roy Marples
1e4e8ed27a
Initial doxygen documentation for rc.h and einfo.h. Plus some header clean ups.
2007-09-25 15:38:21 +00:00
Roy Marples
a74dd430d5
Punt rc_xcalloc as nothing uses it
2007-09-19 13:55:01 +00:00
Roy Marples
81c009e47d
Don't be an ass - don't free the 2nd list. Instead just empty it.
2007-09-18 15:43:19 +00:00
Roy Marples
9587d71df3
Clarify strlist_join behaviour
2007-09-18 14:18:22 +00:00
Roy Marples
75b5fdff29
Match the recent api change to rc_strlist_join also. We now free the 2nd list for ease of use.
2007-09-18 14:08:56 +00:00
Roy Marples
c8b03c96b7
API change! rc_config_env is renamed to rc_make_env and takes no argument.
2007-09-18 12:20:55 +00:00
Roy Marples
936dc94351
API change! rc_ls_dir, rc_get_config and rc_get_list no longer take
...
a starting list as a first argument. Instead, use rc_strlist_join
to append or prepend the new list to an existing list.
2007-09-18 12:04:51 +00:00
Roy Marples
f1bba12892
API change! rc_strlist_add and friends now take char *** instead of
...
char ** and return a pointer to the item added instead of the new
list head. This is so we can easily tell if the item was successfully
added or not instead of iterating through the list looking for it.
list = rc_strlist_add (list, item);
becomes
rc_strlist_add (&list, item);
2007-09-18 11:36:55 +00:00
Roy Marples
3950eb6eba
`config /etc/fstab' can now be used in depend() functions to show that
...
the deptree should be regenerated if /etc/fstab has changed.
2007-08-15 14:49:41 +00:00
Roy Marples
0084bc41ef
Don't link to rt anymore as it makes dlopen leak - we now use nanosleeps to achieve the same goal (a loop + timeout). No longer put / at the end of directories, instead prefix like so RC_LIBDIR "/foo" to ensure more robust code.
2007-08-09 14:33:20 +00:00
Roy Marples
a3aff5d83c
Wups, these definitions need to be in rc.h really
2007-08-03 10:14:38 +00:00
Roy Marples
c674026f9e
All our binaries are now mulicalls into rc, which makes our on disk size
...
a lot smaller.
2007-07-31 16:05:56 +00:00
Roy Marples
44e575845f
Don't use 'this' as a variable name as it confuses c++
2007-07-13 14:30:33 +00:00
Roy Marples
023d66578b
Rename variable
2007-07-10 19:14:37 +00:00
Roy Marples
05201b514b
init scripts and their extra options can now have descriptions, #184327 .
2007-07-10 19:09:41 +00:00
Roy Marples
1cda2a2036
We no longer care about numerical runlevels, #184733 .
2007-07-10 11:42:56 +00:00
Roy Marples
abfd181dde
env-update now respects COLON_SEPARATED and SPACE_SEPARATED env.d values, #176198 .
2007-04-27 11:24:05 +00:00
Roy Marples
35ee67f446
Re-work the starting and stopping of services so we always know the pid so we can kill our children without the need for process groups which we cannot use as keyboard will not work in init.
2007-04-20 18:58:42 +00:00
Roy Marples
a5ba34ec15
Fix rc-abort to notify the plugins we are aborting
2007-04-20 15:02:13 +00:00
Roy Marples
f269f1961b
Plugins now run in a forked process for extra resliance.
2007-04-20 09:39:47 +00:00
Roy Marples
67c5d8e940
Style updates
2007-04-12 13:18:52 +00:00
Roy Marples
e6674b2cae
Cuddle up to LKML C style
2007-04-11 12:44:47 +00:00
Roy Marples
64c4d3875d
Move carrier detection back into net.sh. Reserve a new hook numbers
2007-04-11 10:40:53 +00:00
Roy Marples
f754c661f5
Add new service hooks, remove pmake stuff from our Makefile and fix rc_services_in_state for scheduled.
2007-04-11 07:15:02 +00:00
Roy Marples
d3db9e9910
Fix indentation
2007-04-10 11:24:58 +00:00
Roy Marples
308042c87b
We now compile on OpenBSD (no idea if it works or not yet)
2007-04-05 15:01:09 +00:00
Roy Marples
5af58b4514
Rewrite the core parts in C. We now provide librc so other programs can
...
query runlevels, services and state without using bash. We also provide
libeinfo so other programs can easily use our informational functions.
As such, we have dropped the requirement of using bash as the init script
shell. We now use /bin/sh and have strived to make the scripts as portable
as possible. Shells that work are bash and dash. busybox works provided
you disable s-s-d. If you have WIPE_TMP set to yes in conf.d/bootmisc you
should disable find too.
zsh and ksh do not work at this time.
Networking support is currently being re-vamped also as it was heavily bash
array based. As such, a new config format is available like so
config_eth0="1.2.3.4/24 5.6.7.8/16"
or like so
config_eth0="'1.2.3.4 netmask 255.255.255.0' '5.6.7.8 netmask 255.255.0.0'"
We will still support the old bash array format provided that /bin/sh IS
a link it bash.
ChangeLog for baselayout-1 can be found in our SVN repo.
2007-04-05 11:18:42 +00:00