public
Description: Funtoo branch of Roy Marples' OpenRC
Homepage: http://roy.marples.name/projects/openrc
Clone URL: git://github.com/funtoo/openrc.git
openrc /
name age message
file .gitignore Thu Apr 30 07:05:39 -0700 2009 Go back to git [Roy Marples]
file Makefile Mon Dec 21 08:27:40 -0800 2009 openrc-0.6.0 merge (untested) Merge remote bra... [funtoo]
file Makefile.inc Mon Dec 21 07:30:17 -0800 2009 Release openrc-0.6.0 [Roy Marples]
file README Wed Dec 02 11:12:26 -0800 2009 Correct homepage. [Roy Marples]
file TODO Fri Feb 01 16:17:35 -0800 2008 Block signals to avoid fork /signal races. [Roy Marples]
directory conf.d/ Mon Dec 21 08:27:40 -0800 2009 openrc-0.6.0 merge (untested) Merge remote bra... [funtoo]
directory doc/ Mon Dec 21 01:45:03 -0800 2009 Fix comments. [Christopher Head]
directory etc/ Thu Oct 15 15:48:40 -0700 2009 Add lustre [Roy Marples]
file git-mkarchive Wed Nov 18 14:21:24 -0800 2009 new stuff to support netif.d [funtoo]
directory init.d.misc/ Tue Oct 13 00:03:45 -0700 2009 Add new utility and init script swclock that se... [Roy Marples]
directory init.d/ Mon Dec 21 08:27:40 -0800 2009 openrc-0.6.0 merge (untested) Merge remote bra... [funtoo]
directory man/ Mon Dec 21 08:27:40 -0800 2009 openrc-0.6.0 merge (untested) Merge remote bra... [funtoo]
directory mk/ Wed Nov 18 14:21:24 -0800 2009 new stuff to support netif.d [funtoo]
directory net/ Sat Dec 05 11:25:39 -0800 2009 Support phy80211, fixes #209. [Alon Bar-Lev]
directory netif.d/ Fri Nov 27 19:32:29 -0800 2009 improving bridge scripts - SLAVES no longer req... [funtoo]
directory pkgconfig/ Wed Oct 07 16:20:43 -0700 2009 Add pkg-config support, fixes #187. [Roy Marples]
directory runlevels/ Sat Oct 17 13:44:48 -0700 2009 add netif.lo to the boot runlevel [funtoo]
directory scripts/ Thu Dec 10 14:30:56 -0800 2009 Move on_ac_power to a shell script. Fixes #204 [Roy Marples]
directory sh/ Thu Nov 19 16:04:32 -0800 2009 If mounting tmpfs fails, try ramfs. This is bec... [Roy Marples]
directory src/ Mon Dec 14 00:47:48 -0800 2009 start-stop-daemon can now set process IO schedu... [Roy Marples]
directory support/ Thu May 07 02:44:50 -0700 2009 Supply a working default inittab [Roy Marples]
directory test/ Thu Jul 03 06:09:24 -0700 2008 More unit fixes. [Roy Marples]
README
OpenRC README


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

You may wish to tweak the installation with the below arguments
PROGLDFLAGS=-static
LIBNAME=lib64
DESTDIR=/tmp/openrc-image
MKPAM=pam
MKPKGCONFIG=no
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 /.

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 distrubtions.
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
-------------
If you installed OpenRC from your chosen distribution, you should report
bugs directly to them. For example, if you use Gentoo and emerged OpenRC
then you should reports bugs to http://bugs.gentoo.org.

Otherwise, you can report them directly to me at
http://roy.marples.name/projects/openrc


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 it's 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.