Go to file
Mike Frysinger bb34ea886a drop rc_sys funcs from removal schedule
The automagic detection isn't really problematic, and we allow people to
easily override this when detection isn't possible.  On the other hand,
if people haven't configured rc_sys in their rc.conf, the lack of auto
detection can easily lead to an unbootable system.

Further, we're attempting to have a stable shared library ABI, which
dropping funcs from is not feasible.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-05-16 18:00:18 -04:00
conf.d update documentation for windowkeys variable 2011-03-22 00:34:50 -05:00
doc change udhcpc support to busybox udhcpc 2011-04-26 15:25:08 -05:00
etc make rc_sys system specific 2011-04-18 14:42:02 -05:00
init.d add back the eend command in start/stop for local service 2011-04-21 13:02:49 -05:00
init.d.misc more whitespace cleanup 2011-01-17 04:49:12 -05:00
local.d change local to run programs 2011-01-20 12:50:29 -06:00
man clarify documentation for -timeout keyword 2011-04-08 14:08:29 -05:00
mk remove hard coded directory paths from link flags 2011-04-01 17:32:12 -05:00
net net:bonding small style change for readability 2011-05-16 14:57:46 -05:00
pkgconfig Fix for make-3.82 breakage. 2010-08-22 15:05:11 -05:00
runlevels Add staticroute to the boot runlevel 2009-10-16 09:25:08 +01:00
scripts on_ac_power needs to exit not return bug #322037 2010-07-12 22:19:56 -05:00
sh do not run services if openrc did not boot the system 2011-05-11 14:54:41 -05:00
src fix rc_service_extra_commands return value 2011-04-27 15:27:16 -05:00
support Supply a working default inittab 2009-05-07 10:44:50 +01:00
test test: You need to run "make" before "make check" will work. 2011-01-18 01:49:22 +00:00
.gitignore Go back to git 2009-04-30 15:05:39 +01:00
FEATURE-REMOVAL-SCHEDULE drop rc_sys funcs from removal schedule 2011-05-16 18:00:18 -04:00
Makefile remove unnecessary shell calls 2011-02-04 17:46:57 -06:00
Makefile.inc release openrc-0.8.2 2011-04-15 19:48:30 -05:00
README allow default rc_sys value to be set at build time 2011-03-05 00:04:06 -06:00
README.newnet Update README.net to note that it represents newnet only. 2011-02-22 01:27:31 +00:00
STYLE start a STYLE file 2011-01-17 04:23:09 -05:00
TODO Add TODO item. 2011-01-17 06:59:37 +00:00

OpenRC README


Installation
------------
make install
Yup, that simple. Works with GNU make.

You may wish to tweak the installation with the below arguments
PROGLDFLAGS=-static
LIBNAME=lib64
DESTDIR=/tmp/openrc-image
MKPAM=pam
MKPKGCONFIG=no
MKRCSYS=prefix
MKSELINUX=yes
MKTERMCAP=ncurses
MKTERMCAP=termcap
MKOLDNET=yes
PKG_PREFIX=/usr/pkg
LOCAL_PREFIX=/usr/local
PREFIX=/usr/local

We don't support building a static OpenRC with PAM.
You may need to use PROGLDFLAGS=-Wl,-Bstatic on glibc instead of just -static.
If you debug memory under valgrind, add -DDEBUG_MEMORY to your CPPFLAGS
so that all malloc memory should be freed at exit.

You can also brand OpenRC if you so wish like so
BRANDING=\"Gentoo/$(uname -s)\"

PKG_PREFIX should be set to where packages install to by default.
LOCAL_PREFIX should be set when to where user maintained packages are.
Only set LOCAL_PREFIX if different from PKG_PREFIX.
PREFIX should be set when OpenRC is not installed to /.

MKRCSYS should be set only if you need to specify a default system
subtype. The subtype should be set to match the type of environment the
file is installed into, not the virtualization the environment is
capable of handling. Here is a list of subtypes and their meanings.

jail	FreeBSD jail
lxc	Linux container
openvz	Linux OpenVZ
prefix	Linux and *BSD prefix system
uml	UsermodeLinux
vserver	Linux vserver
xen0 Linux and NetBSD xen0 Domain
xenU Linux and NetBSD xenU Domain

If any of the following files exist then we do not overwrite them
/etc/devd.conf
/etc/rc
/etc/rc.shutdown
/etc/conf.d/*

rc and rc.shutdown are the hooks from the BSD init into OpenRC.
devd.conf is modified from FreeBSD to call /etc/rc.devd which is a generic
hook into OpenRC.
inittab is the same, but for SysVInit as used by most Linux distributions.
This can be found in the support folder.
Obviously, if you're installing this onto a system that does not use OpenRC
by default then you may wish to backup the above listed files, remove them
and then install so that the OS hooks into OpenRC.

init.d.misc is not installed by default as the scripts will need
tweaking on a per distro basis. They are also non essential to the operation
of the system.


Reporting Bugs
--------------
Bugs should go to the Gentoo Bugzilla:
	http://bugs.gentoo.org/
You'll want the "Gentoo Linux" product and the "baselayout" component.


History - by Roy Marples
------------------------
I became a Gentoo/Linux developer in 2004 and wrote the modular network
scripts for the Gentoo baselayout package. baselayout is a collection of
bash scripts to bring up your computer and its services.
Then towards the end of 2005 I found myself as the primary maintainer
for baselayout.

At the start of 2007, baselayout-2 is announced to the world, re-writing the
core of baselayout in C and allowing POSIX sh init scripts instead of
forcing the use of bash. By Mid 2007 I have re-written everything, including
init scripts, and alpha and pre baselayout-2 snapshots where put into Gentoo.
Towards the end of 2007 I retired as a Gentoo developer for reasons I won't
go into here. baselayout-2 was still in the pre stage, and aside from the
fbsd users, it was masked everywhere. However, I also desired to keep the
baselayout-2 project alive, but outside of Gentoo and into other projects
such as FreeBSD.

As such, the Gentoo Council have allowed the creation of OpenRC under the
2 clause BSD license, managed by me as an external project.