This package is meant to include all white-rabbit software for the switch. Part of this comes from the original white-rabbit svn repository on ohwr.org, part comes from separate repositories that I merged here. All documentation lives in doc/ , where the *.in files are the sources (one only, currently, other ones have been removed when obsoleted). The wrs-build documentation, thus, is what you actually need to build all the stuff that goes into the switch, and program to internal flash memory.
Alessandro Rubini
authored
There is a monit-related problem in commit 9bc9dd16. The commit renames /etc/init.d/lldpd.sh into /etc/init.d/lldpd.bash whle adding a single stanza. Try "git diff e61eb08 9ebc5e2" to see the difference. But monit still uses the old name. Instead of changing monit (a two-liner, but adds noise because of .bash), this renames back the file to .sh and removes the needless bashism in the new stanza. Please note that calling stuff ".bash" makes no sense (suffixes make no sense most of the time!). The only thing rcS does is checking if the name is "*.sh", to just read it in the current shell instead of executing. So anything not ".sh" is executed, we don't need to special case .bash, .py or whatever. Signed-off-by:Alessandro Rubini <rubini@gnudd.com>