aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
AgeCommit message (Collapse)Author
2007-08-16Add esyslog supportRoy Marples
2007-08-09Don't link to rt anymore as it makes dlopen leak - we now use nanosleeps to ↵Roy Marples
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-04Fix rc-update, #187487 and release rc2.Roy Marples
2007-08-02rc1Roy Marples
2007-07-31Wups, don't force those CFLAGSRoy Marples
2007-07-31Force some stuffRoy Marples
2007-07-31Fix building on LinuxRoy Marples
2007-07-31Link the right objects against rcRoy Marples
2007-07-31All our binaries are now mulicalls into rc, which makes our on disk sizeRoy Marples
a lot smaller.
2007-07-11Punt the dodgy ebuffer code. We now force prefixing for parallel starts ↵Roy Marples
which also reduces our variable pollution.
2007-05-16Stop using getimeofday for timeouts incase the clock changes.Roy Marples
2007-05-14Allow time for pidfiles to be created, #178274.Roy Marples
Use int instead of char for getopt, #178084 thanks to drizztbsd.
2007-04-20Added the rc-abort command, #175106 thanks to Daniel Drake.Roy Marples
2007-04-17Rationalise our colour usage a little.Roy Marples
2007-04-13Ignore and clean .dependRoy Marples
2007-04-13make sure .depend gets regenerated automaticallyMike Frysinger
2007-04-13add .depend / .PHONY supportMike Frysinger
2007-04-13use CPPFLAGS rather than CFLAGS where appropriate and make LDFLAGS/-rpath ↵Mike Frysinger
dynamic by only enabling when in .svn repo
2007-04-13revert previous commitMike Frysinger
2007-04-13dont create .so links as they arent needed for runtimeMike Frysinger
2007-04-13use ln -sf rather than ln -s incase target existsMike Frysinger
2007-04-13add a symlink for update-rc -> rc-updateMike Frysinger
2007-04-11Add new service hooks, remove pmake stuff from our Makefile and fix ↵Roy Marples
rc_services_in_state for scheduled.
2007-04-10Misc network fixes so we work on my stable server. Splash plugin removed as ↵Roy Marples
splashtuils-1.4 now ships with its own.
2007-04-09Use names instead of numbers for reporting signals and trap signals in rcRoy Marples
2007-04-08Only use some gcc flags if gcc actually supports them.Roy Marples
2007-04-08LIBDIR -> LIB. When interuppted, ensure service state is restored correctly. ↵Roy Marples
When stopping, don't uncoldplug too early.
2007-04-07Move env-update back to /sbin as everything non baselayout expects it in ↵Roy Marples
$PATH, including our documentation
2007-04-06Misc fixes, plugged a memory leak in runscript.c and use va_copy to avoid ↵Roy Marples
nasty segfaults
2007-04-05Superfluous CFLAGSRoy Marples
2007-04-05Rewrite the core parts in C. We now provide librc so other programs canRoy Marples
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.