Currently, the sysv-rcs script has two issues: - The return code of each RCS script is not checked. - The output does not match the formatting of the other openrc init scripts. Modify the script in the following ways to fix both issues: - Remove the "einfo "Starting sysv rc scripts"" at the top of the start function in favor of "einfo "Starting $i" in the loop itself. - Add a "> /dev/null" to the end of $i start; this suppresses stdout while still allowing for stderr messages to print to the terminal. - add an "eend $? to both the start and stop functions, this allows for openrc to show if an RCS script returned 0 or not. The following is the startup output of OpenRC on a minimal system with S01syslogd modified to exit with a return code 1 for testing purposes: Before: * Adding static routes ... [ ok ] Starting default runlevel * Starting sysv rc scripts Starting syslogd: OK Starting klogd: OK Running sysctl: OK After: * Adding static routes ... [ ok ] Starting default runlevel * Starting /etc/init.d/S01syslogd ... [ !! ] * Starting /etc/init.d/S02klogd ... [ ok ] * Starting /etc/init.d/S02sysctl ... [ ok ] Signed-off-by: Adam Duskett <aduskett@greenlots.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> |
||
---|---|---|
arch | ||
board | ||
boot | ||
configs | ||
docs | ||
fs | ||
linux | ||
package | ||
support | ||
system | ||
toolchain | ||
utils | ||
.defconfig | ||
.flake8 | ||
.gitignore | ||
.gitlab-ci.yml | ||
.gitlab-ci.yml.in | ||
CHANGES | ||
Config.in | ||
Config.in.legacy | ||
COPYING | ||
DEVELOPERS | ||
Makefile | ||
Makefile.legacy | ||
README |
Buildroot is a simple, efficient and easy-to-use tool to generate embedded Linux systems through cross-compilation. The documentation can be found in docs/manual. You can generate a text document with 'make manual-text' and read output/docs/manual/manual.text. Online documentation can be found at http://buildroot.org/docs.html To build and use the buildroot stuff, do the following: 1) run 'make menuconfig' 2) select the target architecture and the packages you wish to compile 3) run 'make' 4) wait while it compiles 5) find the kernel, bootloader, root filesystem, etc. in output/images You do not need to be root to build or run buildroot. Have fun! Buildroot comes with a basic configuration for a number of boards. Run 'make list-defconfigs' to view the list of provided configurations. Please feed suggestions, bug reports, insults, and bribes back to the buildroot mailing list: buildroot@buildroot.org You can also find us on #buildroot on Freenode IRC. If you would like to contribute patches, please read https://buildroot.org/manual.html#submitting-patches